frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Boing

https://boing.greg.technology/
512•gregsadetsky•10h ago•92 comments

Show HN: Real-time system that tracks how news spreads across 200k websites

https://yandori.io/news-flow/
94•antiochIst•4d ago•25 comments

Show HN: Mitsuki, a Python web framework as fast as Node or Java

https://github.com/DavidLandup0/mitsuki
3•DavidLandup0•1h ago•0 comments

Show HN: ReadyKit – Superfast SaaS Starter with Multi-Tenant Workspaces

https://readykit.dev/
2•level09•7h ago•0 comments

Show HN: SolveMyPainPoint – A single place to post and discover real problems

https://www.solvemypainpoint.com/
2•Chrizzby•2h ago•0 comments

Show HN: Nano PDF – A CLI Tool to Edit PDFs with Gemini's Nano Banana

https://github.com/gavrielc/Nano-PDF
145•GavCo•17h ago•31 comments

Show HN: Network Monitor – a GUI to spot anomalous connections on your Linux

141•grigio•6d ago•48 comments

Show HN: Best Black Friday Deals [Mega List]

https://www.blackfridaydeals.directory
2•bfdd•2h ago•0 comments

Show HN: Explore what the browser exposes about you

https://neberej.github.io/exposedbydefault/
245•coffeecoders•5d ago•85 comments

Show HN: MTXT – Music Text Format

https://github.com/Daninet/mtxt
4•daninet•4h ago•0 comments

Show HN: Let Claude Code call other LLMs when it runs in circles

https://github.com/raine/consult-llm-mcp
3•rane•5h ago•1 comments

Show HN: Zero-power photonic language model–code

https://zenodo.org/records/17764289
14•damir00•19h ago•5 comments

Show HN: Glasses to detect smart-glasses that have cameras

https://github.com/NullPxl/banrays
496•nullpxl•2d ago•188 comments

Show HN: No Environment Setups Anymore

https://www.gitarsenal.dev/
15•rohan2003•18h ago•12 comments

Show HN: Mu – The Micro Network

https://github.com/asim/mu
61•asim•6d ago•41 comments

Show HN: Choose your own adventure style Presentation

https://github.com/Skarlso/adventure-voter
58•skarlso•1w ago•9 comments

Show HN: An LLM-Powered Tool to Catch PCB Schematic Mistakes

https://netlist.io/
50•wafflesfreak•1d ago•28 comments

Show HN: KiDoom – Running DOOM on PCB Traces

https://www.mikeayles.com/#kidoom
358•mikeayles•4d ago•49 comments

Show HN: Pulse 2.0 – Live co-listening rooms where anyone can be a DJ

https://473999.net/pulse
81•473999•1d ago•30 comments

Show HN: I built an interactive HN Simulator

https://news.ysimulator.run/news
535•johnsillings•5d ago•214 comments

Show HN: I made a free log anonymizer in the browser

https://www.getloglens.com/tools/log-sanitizer
3•wazzaaaa•16h ago•4 comments

Show HN: ClearHearAI-The Essential App for Hearing Impaired and Deaf Communities

https://clearhearai.com/
2•justinos•16h ago•0 comments

Show HN: Rust CLI validates scientific datasets for DOE's Genesis Mission

https://github.com/clay-good/genesis-preflight
2•hireclay•17h ago•0 comments

Show HN: MkSlides – Markdown to slides with a similar workflow to MkDocs

https://github.com/MartenBE/mkslides
76•MartenBE•3d ago•15 comments

Show HN: Runprompt – run .prompt files from the command line

https://github.com/chr15m/runprompt
131•chr15m•3d ago•48 comments

Show HN: Era – Open-source local sandbox for AI agents

https://github.com/BinSquare/ERA
62•gregTurri•3d ago•18 comments

Show HN: MacGlow – macOS app to sync brightness across Mac and all Monitors

https://www.lovi.sh/macglow
6•lovish888•1d ago•2 comments

Show HN: I turned algae into a bio-altimeter and put it on a weather balloon

https://radi8.dev/blog/stratospore/
140•radeeyate•1w ago•13 comments

Show HN: SyncKit – Offline-first sync engine (Rust/WASM and TypeScript)

https://github.com/Dancode-188/synckit
87•danbitengo•3d ago•36 comments

Show HN: Spikelog – A simple metrics service for scripts, cron jobs, and MVPs

https://spikelog.com
35•dsmurrell•3d ago•17 comments
Open in hackernews

Show HN: Mitsuki, a Python web framework as fast as Node or Java

https://github.com/DavidLandup0/mitsuki
3•DavidLandup0•1h ago
Hey HackerNews! Just wanted to share something slapped together recently, looking for feedback.

Context: I worked in both research and enterprise and have built a lot of services in Python and Java, and they converge to using similar patterns, regardless of how different the architectures and domains are (web apps, ML research, distributed systems, etc.)

After writing a lot of Python, I was missing a framework that strongly supported some of these patterns formally, and find that this structure lets you make assumptions that can really boost dev experience on long term projects.

Microframeworks are great. They let you get started with a single file of a few lines, but (in my opinion) lack the structure you want on long term projects, working with teams, so you end up making that structure yourself anyway. In doing so, you get a small initial boost in productivity, but at the cost of your productivity in the future.

Mitsuki tries to both allow you to start quick and easy with a single file in a few lines, but also be more friendly to you and your team through time, by giving structure to your development process.

Thus, I made an early version of a framework heavily inspired by Spring Boot. The core idea is that you can do enterprise apps without the enterprise pain, in Python, with high performance.

- Want a simple REST API? app.py with a few lines.

- Want a decent starter with auto-implemented CRUD? mitsuki init to get a starter project with domain classes, services, controllers and repositories.

- Performance? Similar to Express and Spring Boot (in Docker, on an M1 MacBook Pro, 8GB of RAM), out of the box, no configuration needed.

Lightweight

Despite the "fancy sounding" terminology, Mitsuki itself is very lightweight, and only adds a very small overhead (10%) over the components that power it (namely, Starlette and Granian). I don't want to commit to ASGI only, and a future version will likely rewrite this core logic to leverage granian further.

There is a lot of ground left to cover, lots of docs to write, examples to explore, features to expand. I'm also planning to write a few tools that leverage the structure of the framework to increase DX within enterprise teams.

But before any of that, I'm looking for feedback. Yay or nay? :)

Benchmarks

P.S. On the topic of performance and benchmarks, there are a few remarks in the repo's /benchmarks directory. (Or here: https://github.com/DavidLandup0/mitsuki/tree/main/benchmarks)

Yes, most benchmarks are arbitrary, heavily gameable, and your bottleneck is likely going to be your business logic, not the framework, anyways.

Yes, Spring Boot and Elysia will likely have higher ceilings, so running on a stronger CPU will likely change the order of the benchmark.

Yes, there's a million variables that affect these.

Yes, granian is written in Rust, not Python.

The point of the benchmark is threefold:

- This is the sort of experience you get out of the box, on your device and where you'll deploy it (Dockerized on small instance such as through K8s)

- Python web apps can stand shoulder to shoulder with JS/Java performance-wise

- Despite the seeming complexity around dependency injection, state tracking, etc., Mitsuki is pretty lightweight.