Show stories

Live mirror
30 storiesupdated 0s agoView source snapshot
  1. Show HN: An e-ink frame that hears birds and draws them as 1800s illustrations(github.com/arnegiacomo ↗)
    157comments
  2. Show HN: Capsule – Single-file web apps that save their data into SQLite(withcapsule.app ↗)
    111comments
  3. Show HN: Pizza Bot – An inbox for AI agents that work in the background(github.com/pizza-bot-app ↗)
    2comments
  4. Show HN: Hacking a $20 4G wireless hotspot into a texting device(bkovac.github.io ↗)
    30comments
  5. Show HN: DeadLock OS – A Linux terminal puzzle game(crazygames.com ↗)
    discuss
  6. Show HN: HonestSky, a free iOS weather app without ads or subscriptions(apps.apple.com ↗)
    discuss
  7. Show HN: Panel – A research workspace where the agent can build its own panes(github.com/greentfrapp ↗)
    11comments
  8. Show HN: Check if your IP has appeared in a residential proxy network(haveibeenproxied.com ↗)
    30comments
  9. Show HN: Ordewell – turn one goal into an ordered plan of coding-agent tasks(github.com/ordewell ↗)
    29comments
  10. Show HN: Redis City – Explore how Redis works in an interactive 3D model(poltora.dev ↗)
    25comments
  11. Show HN: Loss. a tiny satire about AI progress(workatloss.com ↗)
    7comments
  12. Show HN: SCIP MIP solver bindings for Go, ported from russcip(github.com/egoisutolabs ↗)
    discuss
  13. Show HN: farseer.space – fly anywhere in the universe in your browser(farseer.space ↗)
    1comments
  14. Show HN: Sass – Rust and WASM(github.com/zoosky ↗)
    discuss
  15. Show HN: DaiDocs, AI memory as a plain-text file format, not a service(github.com/kerneta ↗)
    1comments
  16. Show HN: Macros with a Behringer FCB1010 MIDI Pedalboard in macOS(github.com/jamesryanatx ↗)
    21comments
  17. Show HN: Kinesis – Control your Mac with the Meta Neural Band(github.com/callbacked ↗)
    45comments
  18. Show HN: Warp – Run DeepSeek v4.1 Flash with 5 GB of RAM at 3.77 tok/s(github.com/sqliteai ↗)
    1comments
  19. Show HN: Open-source passive NFC tag that signs with ECDSA, verified on-chain(github.com/mwbpnftechnology ↗)
    discuss
  20. Show HN: Pelican-bicycle alternatives(gally.net ↗)
    45comments
  21. Show HN: Nari Qwen3-TTS and Qwen3-ASR – High accuracy, low latency and cost(narilabs.com ↗)
    31comments
  22. Show HN: AirmailAI, a BYOK LLM chat app with a browser extension backend(airmailai.net ↗)
    6comments
  23. Show HN: Let agent read files with secrets while redacting values for LLM contex(github.com/daniel-sc ↗)
    1comments
  24. Show HN: TrailVid – Cinematic Travel Animations(trailvid.com ↗)
    discuss
  25. Show HN: Omni – Open-source workplace agent, built on Postgres
    discuss
  26. Show HN: TabPFN-3.5, a Tabular Foundation Model for messy real-world tables(priorlabs.ai ↗)
    1comments
  27. Show HN: I ported COLMAP (photogrammetry) to the browser in WASM and WebGPU(offlinetools.io ↗)
    discuss
  28. Show HN: I built a tiny camera that knows where it is(mightycamera.com ↗)
    4comments
  29. Show HN: Extract original images from a PDF in the browser(imissfiles.com ↗)
    discuss
  30. Show HN: An open source safety layer for AI agent actions(github.com/ctrlrun ↗)
    1comments

Show HN: Macros with a Behringer FCB1010 MIDI Pedalboard in macOS

83 pointsby 23h agogithub.com
21 comments
21h agoHN ↗

I always thought using something like this for debugger shortcuts could be fun

21h agoHN ↗

This is dope. Would love to bring it to linux

21h agoHN ↗

Repo is 2,500loc, all-in, according to SCC. Should be really easy to point your favorite coding agent at the repo and have it one or two shot something similiar in the language of your choice.

20h agoHN ↗

I have something like this in linux using a novation launchcontrol, it's quite straightforward using aseqdump, say I use the buttons to switch desktops, I have this launched as part of my session and always in background. While developing this I just printed $line to see what aseqdump sent to figure out the regexes

    while IFS=' ' read -r line; do
      if [[ "$line" == *"client"*"Launch Control"\* ]]; then
        device=$(echo "$line" | cut -d' ' -f2)
      fi
    done < <(aconnect -i)

    aseqdump -p ${device::-1} | while IFS=' ' read -r line; do
        if [[ "$line" == *"Note on"* ]]; then
            note=$(echo "$line" | grep -o "note [0-9]*" | cut -d' ' -f2)
            if [ "$note" == "9" ]; then
                wmctrl -s 8
            fi
        elif [[ "$line" == *"Control change"*"127" ]]; then
            note=$(echo "$line" | grep -o "controller [0-9]*" | cut -d' ' -f2)
            if [ "$note" == "114" ]; then
                # some macro
            fi
        fi
    done
19h agoHN ↗

Sir, Emacs pedals came way earlier, we needed to avoid "Emacs pinky"!

19h agoHN ↗

I have one of these! And I almost made this exact thing myself! Love this thank you. PS would love a little UI for this if there isn't one already

19h agoHN ↗

Love it! Trying to use it with my nanoPAD2 and it only outputs `note_on` and `note_off` events. Can we bind on these? Example output:

22:56:38.740 note_on channel=1 note=36 velocity=89 [nanoPAD2 PAD]

19h agoHN ↗

This would be sick for video game keybinds!

16h agoHN ↗

Love this! In the photography community, we had MIDI2LR (MIDI to Lightroom) (https://rsjaffe.github.io/MIDI2LR/)

I used Behringer Xtouch Mini mapped to Lightroom. This allows tactile controls, and also lets you keep your eyes on the photo being edited, instead of the constant back and forth between the controls and the photo.

14h agoHN ↗

Darktable also supports Midi controls, I played with it with a korg nano kontrol back in the day.

16h agoHN ↗

I picked up a couple of foot pedals built to control manual transcription software from thrift stores. That was years ago and I hacked them to control music software instead. Then one day I got Nvidia's Parakeet model running locally and was sold on automatic transcription in an instant. So in an ironic twist, I started using one of my spare transcription pedals to do transcription by wiring it up to a harness for Parakeet. It's great and the setup is basically trivial to create these days on Linux with a bit of help from an agent.

15h agoHN ↗

Other than the novelty of being able to press buttons with your feet, why is this useful?

If you lack special buttons, you could also just buy a bigger keyboard (or a MIDI controller that sits on the table).

11h agoHN ↗

You can keep your hands on the keyboard. Some people find having to move them away from their usual home place breaks their flow.

Sure there are things like an Elgato StreamDeck that you can do similar things with but they still require you to move a hand from the keyboard.

I suppose it is similar to using voice control things like Alexa. Setting a timer by hand in the kitchen isn’t exactly hard but it is so much more convenient to do it by voice if your hands are covered in raw chicken juice or the like.

14h agoHN ↗

As an organ player, I sometimes dream of having a full midi pedal under my desk. Would be an easy way to get some extra exercise. The problem though is that I don't think such a thing is compatible with a comfy office chair. The polished wood of an organ bench isn't comfortable but it allows for mobility.

14h agoHN ↗

I used a usb foot pedal with three switches for playing world of warcraft - originally bought it for PTT but realised how useful it was and ended up using it for the speed boost spell and the big damage cooldown.

This takes it to the next level!

13h agoHN ↗

Remember setting up my FCB1010 for guitar effects back in the day. Using it for macOS macros is such a clever pivot!

7h agoHN ↗

Love my FCB1010. Absolute beast that's no worse for wear after 20 years and countless moves.

3h agoHN ↗

quite tempted to use this to start and stop game recordings