frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

Show HN: OrioleDB Beta12 Features and Benchmarks

https://www.orioledb.com/blog/orioledb-beta12-benchmarks
19•akorotkov•3d ago•2 comments

Show HN: Molab, a cloud-hosted Marimo notebook workspace

https://molab.marimo.io/notebooks
88•akshayka•11h ago•12 comments

Show HN: I built library management app for those who outgrew spreadsheets

https://www.librari.io/
69•hmkoyan•10h ago•35 comments

Show HN: Simulating autonomous drone formations

https://github.com/sushrut141/ketu
15•wanderinglight•3d ago•3 comments

Show HN: Medici, a minimal, open-source, dead-simple Splitwise alternative

https://github.com/mrkaye97/medici
2•mrkaye97•2h ago•0 comments

Show HN: Interactive Bash tutorial that runs in the browser

https://sandbox.bio/tutorials/bash-script
5•raboukhalil•6h ago•0 comments

Show HN: PlutoFilter- A single-header, zero-allocation image filter library in C

https://github.com/sammycage/plutofilter
76•sammycage•5d ago•16 comments

Show HN: Improving search ranking with chess Elo scores

https://www.zeroentropy.dev/blog/improving-rag-with-elo-scores
190•ghita_•2d ago•64 comments

Show HN: Tech docs → video explainers in seconds

https://symvol.io/
2•feliks22•7h ago•0 comments

Show HN: Numbl – A daily number puzzle inspired by Wordle and Sudoku

https://henryjburg.github.io/numbl/
2•henryjburg•7h ago•1 comments

Show HN: AI File Sorter: Organize Files and Folders with AI (Local LLMs)

https://github.com/hyperfield/ai-file-sorter
3•hyperfield•7h ago•0 comments

Show HN: Benchstreet – the stock prediction AI benchmark

https://github.com/puffinsoft/benchstreet
4•ColonelParrot•8h ago•0 comments

Show HN: 0xDEAD//TYPE – A fast-paced typing shooter with retro vibes

https://0xdeadtype.theden.sh/
112•theden•6d ago•27 comments

Show HN: RateMyPrompt – share and rate prompts with auto AI evals

https://www.josh.ing/ratemyprompt
8•jshchnz•10h ago•4 comments

Show HN: Brainfork – Create a personal RAG MCP server in seconds

https://brainfork.is
11•softwareiseasy•18h ago•1 comments

Show HN: Mock FedCM Integrations

https://mockfedcm.com/
11•portaouflop•16h ago•0 comments

Show HN: Shoggoth Mini – A soft tentacle robot powered by GPT-4o and RL

https://www.matthieulc.com/posts/shoggoth-mini
593•cataPhil•3d ago•107 comments

Show HN: I built this to talk Danish to my girlfriend – works with any language

https://menerdu.vercel.app/
204•lil_csom•5d ago•107 comments

Show HN: BloomSearch – Keyword search with hierarchical Bloom filters

https://github.com/danthegoodman1/bloomsearch
65•dangoodmanUT•5d ago•12 comments

Show HN: We made our own inference engine for Apple Silicon

https://github.com/trymirai/uzu
180•darkolorin•3d ago•46 comments

Show HN: Beyond Z²+C, Plot Any Fractal

https://www.juliascope.com/
100•akunzler•3d ago•26 comments

Show HN: A 'Choose Your Own Adventure' written in Emacs Org Mode

https://tendollaradventure.com/sample/
153•dskhatri•2d ago•25 comments

Show HN: The HTML Maze – Escape an eerie labyrinth built with HTML pages

https://htmlmaze.com/
62•kyrylo•4d ago•19 comments

Show HN: Tips for getting great Text2Cypher outputs from LLMs for Graph RAG

https://blog.kuzudb.com/post/improving-text2cypher-for-graphrag-via-schema-pruning/
4•laminarflow027•16h ago•0 comments

Show HN: Mark 1.0, a notation that unifies JSON, HTML, JSX, XML, YAML, and more

https://marknotation.org/
7•henryluo•16h ago•10 comments

Show HN: Child Affordability Index

https://childaffordabilityindex.com/
4•simplekindofman•16h ago•3 comments

Show HN: ArchGW – An intelligent edge and service proxy for agents

https://github.com/katanemo/archgw/
116•honorable_coder•6d ago•15 comments

Show HN: An MCP server that gives LLMs temporal awareness and time calculation

https://github.com/jlumbroso/passage-of-time-mcp
91•lumbroso•2d ago•53 comments

Show HN: DataRamen, a Fast SQL Explorer with Automatic Joins and Data Navigation

https://dataramen.xyz/
47•oleksandr_dem•2d ago•55 comments

Show HN: Ten years of running every day, visualized

https://nodaysoff.run
948•friggeri•1w ago•485 comments
Open in hackernews

Show HN: Self-made web media player without <video> or <audio>

https://mediabunny.dev/examples/media-player/
8•vanilagy•22h ago
Driven by Mediabunny and WebCodecs.

Comments

stagas•21h ago
Mediabunny is pretty cool! I'm actually using it in the other Show HN, VinylSpin.video to generate mp4 videos from the canvas animation so that no frames are dropped, unlike the MediaRecorder API. The output is perfect. Didn't know it could also play videos! That's awesome really.
vanilagy•21h ago
Awesome! Mediabunny started life for exactly this purpose. I wanted to build a replay renderer for my game Marble Blast Web that was as fast as the hardware allowed while giving a frame-perfect result. MediaRecorder just didn't cut it!
stagas•21h ago
Impressive. I'm glad you took that challenge and did it! The other option was vendoring ffmpeg wasm which is a few mbs. This is just a few kbs, doesn't require npm, I simply used the release .mjs file, the AI picked up its API right away and did everything for me. Perfect.
vanilagy•21h ago
Lovely! (not to mention ffmpeg.wasm is like 50x slower lol)
fragmede•21h ago
I'm out of the loop. why's the video or audio tag not desirable?
vanilagy•21h ago
Great question! <video> and <audio> are perfectly apt for simple media playing on the web, and you should use them for playing files.

They tend to break down when you want to build more complex applications on top of them (such as a video editor) that require perfect-accuracy seeking and playback, precise control over decoding patterns, and direct access to frame data. Mediabunny was built to power that kind of application, and so this demo acts as a proof of concept that you can reimplement the <video> element from scratch using that library.