frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Apple's Sharp Running in the Browser via ONNX Runtime Web

https://github.com/bring-shrubbery/ml-sharp-web
52•bring-shrubbery•3h ago•5 comments

Show HN: Parrot – a fun, skeuomorphic audio recorder to hear yourself

https://www.zkhrv.com/parrot
2•zkhrv•32m ago•0 comments

Show HN: Glucera Local-first iPhone glucose app, seeking fingerstick beta tester

https://glucera.app/
2•kv0•33m ago•0 comments

Show HN: I built my site as a Windows 95 experience (2025)

https://wes.dev/
3•WesSouza•36m ago•0 comments

Show HN: Flop Map – a 3D globe of every known AI compute cluster

https://flopmap.com
3•kitwebster•47m ago•1 comments

Show HN: I built a RISC-V emulator that runs DOOM

https://github.com/lalitshankarch/rvcore
3•Flex247A•1h ago•0 comments

Show HN: State of the Art of Coding Models, According to Hacker News Commenters

https://hnup.date/hn-sota
126•yunusabd•15h ago•64 comments

Show HN: Pollen – distributed WASM runtime, no control plane, single binary

https://github.com/sambigeara/pollen
120•sambigeara•2d ago•56 comments

Show HN: DAC – open-source dashboard as code tool for agents and humans

https://github.com/bruin-data/dac
104•karakanb•3d ago•33 comments

Show HN: Enoch – Control Plane for Autonomous AI Research

https://github.com/alias8818/enoch-agentic-research-system
3•aliasocracy•5h ago•1 comments

Show HN: Mljar Studio – local AI data analyst that saves analysis as notebooks

https://mljar.com/
65•pplonski86•1d ago•10 comments

Show HN: Piruetas – A self-hosted diary app I built for my girlfriend

https://piruet.app
62•patillacode•1d ago•48 comments

Show HN: Browser-based light pollution simulator using real photometric data

https://iesna.eu/?wasm=skyglow_demo
38•holg•1d ago•12 comments

Show HN: Filling PDF forms with AI using client-side tool calling

https://copilot.simplepdf.com/?share=a7d00ad073c75a75d493228e6ff7b11eb3f2d945b6175913e87898ec96ca...
51•nip•1d ago•25 comments

Show HN: Rust library for Undo/Redo using deltas, snapshots or commands

https://github.com/mikwielgus/undoredo
20•mikolajw•18h ago•4 comments

Show HN: Large Scale Article Extract of Newspapers 1730s-1960s

https://snewpapers.com/
46•brettnbutter•1d ago•20 comments

Show HN: AI CAD Harness

https://fusion.adam.new/install
93•zachdive•1d ago•92 comments

Show HN: WhatCable, a tiny menu bar app for inspecting USB-C cables

https://github.com/darrylmorley/whatcable
539•sleepingNomad•2d ago•165 comments

Show HN: Stop playing my matchstick puzzles, start building your own in seconds

https://mathstick.github.io
34•trangram•1d ago•28 comments

Show HN: I'm running parallel Pi agents on a local sandbox

https://github.com/CelestoAI/SmolVM/
5•theaniketmaurya•10h ago•0 comments

Show HN: Site Mogging

https://sitemogging.com
67•jilles•2d ago•74 comments

Show HN: Loopsy, a way for terminals and AI agents on different machines to talk

https://github.com/leox255/loopsy
54•todience•2d ago•11 comments

Show HN: Lisa a live dynamic wavetables synth you play and program in real-time

https://github.com/dr-schlange/LISA
2•drschlange•11h ago•0 comments

Show HN: A (de)compiler and parser/engine for custom Magic: The Gathering cards

https://chiplis.com/ironsmith/
3•nicolas-siplis•12h ago•0 comments

Show HN: SimDrive – a browser racing game with your phone as the controller:D

https://simdrive.xyz/
18•1000xcat•3d ago•9 comments

Show HN: Perfect Bluetooth MIDI for Windows

104•mayerwin•2d ago•34 comments

Show HN: Agent-desktop – Native desktop automation CLI for AI agents

https://github.com/lahfir/agent-desktop
93•lahfir•1d ago•35 comments

Show HN: Rotato – Node.js proxy that rotates LLM API keys on 429 errors

https://github.com/p32929/rotato
2•heliskyr2•15h ago•0 comments

Show HN: A new benchmark for testing LLMs for deterministic outputs

https://interfaze.ai/blog/introducing-structured-output-benchmark
59•khurdula•3d ago•28 comments

Show HN: Clipmon is a macOS clipboard manager on steroids

https://github.com/c9-labs/clipmon
4•vednig•16h ago•1 comments
Open in hackernews

Show HN: Lisa a live dynamic wavetables synth you play and program in real-time

https://github.com/dr-schlange/LISA
2•drschlange•11h ago
I build a raspberry pico rp2040 synth named LISA which relies on a live dynamic wavetables approach to build a sound from low-speed signals.

It has up to 6 voices, it proposes the BRAIDS macro-oscillators, exposing +40 differents sound engines, and it adds an additional experimental engine where the wavetables are created by an async brain, named Nallely. Nallely is a small modular environment coded in Python which runs on a raspberry pi and is built for exploring emergent behaviors. You program it by patching independent autonomous modules together.

How does it works? The brain generates signals which are streamed via MIDI (via pitchwheel on 4 different channels for 14bits resolution) at slow speed in 4 different circular wavetables of the synth. LISA lets you play while the wavetables are constantly rewritten in real-time. The brain execution model is a fully async hybrid actor model based on independent threads. No global clock or synchronization is enforced. Consequently, because of the CPU load, temperature, OS scheduler, network,... and message passing, the modules constantly drift unpredictibly, either lightly, or harshly depending on the topology of your patch. The signals that are produced by Nallely can be used as waveform for the wavetables, as notes sequences, or as CV equivalent, there is no distinction in what signals represent, the topology of the patch determines what will be the final piece.

In the demo video, I just built an harmonic oscillator using 2 integrators patched in feedback, which is fed to one of the wavetables. This oscillator is then connected to other modules to derive other wavetables and functions which are patched in the other wavetables and the synth parameters.

https://www.youtube.com/watch?v=fxvfnqQKWsY

LISA firmware is written in C/C++ and runs on rp2040, while Nallely is written purely in Python, and can run on a Raspberry Pi. Nallely have been successfully tested on a rpi zero2, a rpi3, and a rpi5.

You don't have to use Nallely to use LISA, it's a standalone MIDI synth, and you don't have to use LISA to use Nallely, it's a generic modular brain which happens to speak MIDI, but LISA coupled with Nallely become the Fodongo synth: a synth that lets you sculpt your wavetables in real-time.

I'm just starting to experiment with this and I try to explore what can be done with slow cv-rate signals feeding wavetables to create sounds. So far I can get a nice variety of sounds, from very pure sine if using LFOs, to very harsh drifting phasing sawtooth sound, or massive organ-like sounds.

It fits well for drone, especially using the envelope: the release can go up to 5s, emphasizing all the micro-drifts and variations in the wavetables, sounds overlap, changes, fades, etc.

LISA and Nallely are free open-source projects:

Nallely: https://github.com/dr-schlange/nallely-midi LISA: https://github.com/dr-schlange/LISA