ads

Saturday, May 30, 2026

Show HN: Community Ninja – Find customers searching for your product https://ift.tt/DGJFBxE

Show HN: Community Ninja – Find customers searching for your product https://ift.tt/ACT9oHX May 30, 2026 at 11:57PM

Show HN: Ego lite – why our browser agent writes JavaScript not CLI commands https://ift.tt/1a6mIBr

Show HN: Ego lite – why our browser agent writes JavaScript not CLI commands https://ift.tt/o2hd8i9 May 30, 2026 at 11:03PM

Friday, May 29, 2026

Show HN: Oort – A prompt library where every listing has a shipped project https://ift.tt/8kivAMF

Show HN: Oort – A prompt library where every listing has a shipped project https://oortstack.com May 29, 2026 at 11:06PM

Show HN: Promptloop – create, run, and improve prompt evals from the terminal https://ift.tt/ctGrXNZ

Show HN: Promptloop – create, run, and improve prompt evals from the terminal a CLI agent for prompt evaluation loopsw https://ift.tt/rge0nHZ May 29, 2026 at 11:06PM

Thursday, May 28, 2026

Show HN: Beacon CLI for self-hosted monitoring, remote access and deployments https://ift.tt/wqfHxiZ

Show HN: Beacon CLI for self-hosted monitoring, remote access and deployments I've been building a cli for my homelab/self-hosted setup. The original motivation was getting tired of stitching together deployments, monitoring, remote SSH access and random scripts. It’s a open source CLI, all-in-one tool for monitoring, secure remote accces (tunnel and terminal), log forwarding, automated deployments. No exposed ports, or endpoint, everything is configurable how the user wants it. One use case that multiple friends are interested in is replacing HomeAssistant’s Nabu Casa subscription with tunneling through BeaconInfra. The cloud/control-plane part (BeaconInfra) is optional. The agent itself is intended to stay local-first and continue functioning offline. Example CLI output: ⬡ beacon 0.5.2 ● master running uptime 29d 14h DEVICE bajszi-MINI-S amd64 Ubuntu 25.04 PROJECTS 2 healthy 0 warning 0 down ● beaconinfra 1/1 checks passing ● mestertkeresek 1/1 checks passing TUNNELS ● homeassistant connected https://ift.tt/IjKmCaq May 28, 2026 at 09:12PM

Hallucinate – Massively Multiplayer Online Rave https://ift.tt/4Guq1iF

Hallucinate – Massively Multiplayer Online Rave https://hallucinate.site May 28, 2026 at 10:50AM

Wednesday, May 27, 2026

Show HN: Hodor – a 701KB native macOS prompt launcher for AI tools https://ift.tt/usmvrHy

Show HN: Hodor – a 701KB native macOS prompt launcher for AI tools Hodor is a tiny macOS app that launches saved AI prompts into any text field — from the screen edge, keyboard shortcut, or keyword such as ;git. I work with different AI tools every day, and had prompts scattered across Raycast snippets, Apple Notes, and Notion — notes that kept getting longer and unmanageable. Raycast snippets are useful, but cumbersome to browse and edit. I wanted one local place to save and review them, and one click to paste them into whatever AI tool I'm using. The test I set was whether I could actually stop using Raycast snippets for this. I think I fulfilled my goal. Hodor has been my daily tool for 3 months now. The app is 701 KB — SwiftUI + SwiftData, no web views. Zero network requests anywhere in the code: no analytics, no telemetry, no update checks. You can verify - search the source for URLSession, it's not in code. Runs on macOS 15+, with native Liquid Glass on macOS 26+. Free and open source. GitHub: https://ift.tt/vyOGSHQ Let me know if you have any suggestions — I'd love to hear how you solved the scattered-prompts problem. https://hodor.design May 27, 2026 at 11:30PM

Show HN: Demon – open-source real-time music diffusion engine, 25Hz local GPU https://ift.tt/VOa1Qys

Show HN: Demon – open-source real-time music diffusion engine, 25Hz local GPU YO, I’m Ryan, lead author. I’ve been contributing open source generative audio stuff for a while now, audio reactive Comfy nodes, extended ACEstep support in Comfy, etc.. I just opened-sourced a new audio project that I've been working on for a few months and I want to tell y'all about it. WHAT IS IS DEMON: Diffusion Engine for Musical Orchestrated Noise This is StreamDiffusion but with audio instead of images, and ACEStep 1.5 instead of Stable Diffusion. It’s responsive enough that you can play it like an instrument, and remix in near real-time. I also distilled the ACEStep VAE: it’s faster at the expense of some quality. I also trained something like 200 lora/dora for ACEStep 1.5 and 1.5XL: I will release these in batches of 5 or 10 or something WHY IT IS Two reasons: 1) Making music is an inherently real-time activity 2) Why not bro SOME RUNTIME CAPABILITIES -Real-time remixing of songs -Denoise, structure, timbre strength adjustment -Reference track swapping -Prompt blending, parameter scheduling with curves -LoRA hotswapping, runtime strength adjustment -Latent channel (research preview) -Feedback -Vocal stem cutting/pasting with melformer (s/o u/BuffMcBigHuge) -XL support (its less stable, working out VRAM pressure issues and whatnot) -Lyrics/vocals SOON -Spectral quality SOON -Other stuff SOME LIMITATIONS -ACEStep (correctly) ‘begins’ and ‘ends’ the song. This system is optimized for remixing either an entire song, or continuously remixing a loop. The loop works fine, but this is not pure, continuous music. Autogression wins here. -Many others, for a more exhaustive list, please see the full writeup via the project page -Please let us know if you find any, I would love to try and address them if possible LINKS My YouTube (DEMON tutorial): https://youtu.be/FBv1b5gmjcE Github: https://ift.tt/NlJWkQw Project page: https://daydreamlive.github.io/DEMON LoRA: https://ift.tt/Go1tPR9 DreamVAE: https://ift.tt/gY0UWu3 Try it w/o installing: https://music.daydream.live https://daydreamlive.github.io/DEMON/ May 27, 2026 at 11:17PM

Show HN: OAuth 2.0 framework for MCP servers https://ift.tt/75FeMfW

Show HN: OAuth 2.0 framework for MCP servers https://ift.tt/Q8KRH2w May 27, 2026 at 11:35PM

Show HN: Gochan – A library of channel architectures for Go, inspired by Rust https://ift.tt/CwFkzcq

Show HN: Gochan – A library of channel architectures for Go, inspired by Rust Hi All, I felt like I was re-inventing the wheel by bolting similar channel architectures onto different Go structs repeatedly so I decided to extract some common types into into one library so that they would be easier to re-use: - oneshot - spsc - spmc - mpsc - mpmc - broadcast - watch The types are inspired by Rust channels so if you're coming from Rust they should feel familiar. So far I'm really enjoying using them but it'd be great to get some external feedback if you have time! https://ift.tt/Quix647 Andres https://ift.tt/Quix647 May 27, 2026 at 11:06PM

Tuesday, May 26, 2026

Show HN: NeuroFlow 55.8x video inference speedup for Vision Transformers PyTorch https://ift.tt/dWvnj52

Show HN: NeuroFlow 55.8x video inference speedup for Vision Transformers PyTorch https://ift.tt/bj86Mzl May 26, 2026 at 11:04PM

Show HN: WYSIWYG markdown editor for any GitHub repo https://ift.tt/JDHcmaX

Show HN: WYSIWYG markdown editor for any GitHub repo replace any github.com url with dunkdown.com https://ift.tt/Vvz5Lde https://dunkdown.com May 26, 2026 at 08:47PM

Monday, May 25, 2026