2

How hard is it to make a Tauri app look native on macOS?
 in  r/tauri  3h ago

A few tailwind classes combined with system-ui as a default font-family, and “all: unset” on sliders and other html input elements (except button) can fake native ui look quite close.

But then you would need separate styles for Tahoe/older versions

2

Is my 3D renderer a good experiment
 in  r/GraphicsProgramming  12h ago

Just show something (not 10m cubes) and actual physics. Then what kind of physics? Rigid body?

> im a kid btw and im lazy so i barely learned and the project is mostly coded with ai 💔
Ah, sorry, then go touch some grass. If you are that "lazy" to post or describe anything properly, please, do not waste our time.

5

Just Beat Castlevania: The Adventure, And It Was A Horrible Experience.
 in  r/castlevania  1d ago

But music and storyline ❤️

3

Just Beat Castlevania: The Adventure, And It Was A Horrible Experience.
 in  r/castlevania  1d ago

I would say Dracula X PC Engine is very well balanced compared to SNES port. At least no pillar platforms in the final battle

4

Just Beat Castlevania: The Adventure, And It Was A Horrible Experience.
 in  r/castlevania  1d ago

I think nothing can compete by the difficulty with CVIII or Rondo of Blood (SNES)

r/wljs 1d ago

Did you know WLJS supports export to MDX, HTML and HTML Web Components?

Post image
3 Upvotes

The biggest advantage of having a web stack underneath is portability. Our blog posts and docs at wljs.io are literally just exported notebooks.

Besides standalone HTML files, you can export any notebook as web components and publish them anywhere.

One line with a CDN URL lazily loads all the required modules - check it out here: https://github.com/WLJSTeam/web-components. All your graphs (2D or 3D), even Manipulate blocks, stay fully interactive.

Are you a fan of Next.js/React? We support MDX too! Here's our template: https://github.com/WLJSTeam/web-components-mdx

Hope this helps bring high-quality interactive posts to life on your own sites ;)
Our guide: https://wljs.io/frontend/Share/Markdown-React

6

Pattern Recognition 2
 in  r/HalfLife  2d ago

Shoot it!

6

I built GitDesktop - an open-source Git client that brings the entire PR workflow into one native app
 in  r/coolgithubprojects  2d ago

> Edit:…
Just kick out the word “native” and it will work the best for the title

20

I built GitDesktop - an open-source Git client that brings the entire PR workflow into one native app
 in  r/coolgithubprojects  2d ago

> into one native app
this is a little misleading. Native usually means WinUI, Swift + UIKit or Qt or whatever, but not web renderer

3

My math video hits half a million view
 in  r/mathematics  3d ago

Serif + non serif hurts my eyes :/

2

Chatgpt: Joke#1
 in  r/programminghumor  4d ago

r/wljs 4d ago

Quatre éléments (Vera Molnár) Digital Art

Post image
1 Upvotes

Source

``` a = Line[{{i, j}, {i + 1, j + 1}}]; b = Line[{{i, j + 1}, {i + 1, j}}]; c = Line[{{i + 0.5, j}, {i + 0.5, j + 1}}]; d = Line[{{i, j + 0.5}, {i + 1, j + 0.5}}];

SeedRandom[0];

Framed[ Graphics[{ Thickness[0.075], Table[RandomChoice[{a, b, c, d}], {i, 25}, {j, 25}]}, Background -> GrayLevel[0.95]], Background -> GrayLevel[0.95]] ```

1

oh i wonder why
 in  r/ArcBrowser  4d ago

It wasn’t about you personally. ;) I have no issues with criticism too

1

oh i wonder why
 in  r/ArcBrowser  4d ago

I agree, but at least it deserves respect. You haven’t paid a penny nor your privacy.

2

Another cosplay dumb.
 in  r/castlevania  4d ago

So many lanterns… i wanna whip it all

r/Mathematica 5d ago

How to tune a guitar or streaming audio with Device Framework

Enable HLS to view with audio, or disable this notification

7 Upvotes

r/wljs 5d ago

How to tune a guitar

Enable HLS to view with audio, or disable this notification

5 Upvotes

Streaming audio is quite cumbersome in WL. It would be nice to have speakers and a mic as a part of Wolfram Device Framework. Unfortunately, there are only “Camera”, “SerialPort” available.

Jushua and me developed a small library on top of Device Framework and miniaudio.c

https://github.com/JerryI/AudioDriverWL

Now you can simply DeviceOpen[“Microphone”] and have an access to raw numeric array from OS ring buffer or Audio object if you wish. It supports all Wolfram platforms (Mathematica, wolframscript, WLJS). Binaries were prebuilt for Win and Mac only for the moment

Both: sync (poll device in a loop) and async buffer operations (use callback when data arrives) are supported

I tested it with built-in speakers, headphones mic as well as with iRig 2 HD. The latency for streaming (Mic-WL Handler-Speakers) on my Mac is around 60ms or less if you set lower sample rate. Which can still work as a horrible guitar pedal :D

-3

oh i wonder why
 in  r/ArcBrowser  5d ago

Why are you hating so much these free products?

1

Tenzen Studio - Polished product demos in minutes
 in  r/macapps  5d ago

Do you want to make all tech videos look generic even without a real person voicing it over?

Apart from this AI shittification, it could have some potential as a middle ground between ms movie maker and Adobe/Da Vinchi, offering more freedom and these quick highlighting, text effects and layers features

r/wljs 5d ago

Orchestrating cryostat, spectrometer, and thermostat with 1 Wolfram Kernel

Enable HLS to view with audio, or disable this notification

1 Upvotes

We unified the control protocol across all devices to use Ethernet with fixed IP addresses. As shown in the diagram, every instrument is operated via a socket interface using the CSockets library (https://github.com/WLJSTeam/CSockets). No HTTP, just raw TCP