frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Gridscript – simplifying how you work with data

1•gridscript•2m ago•0 comments

Shopify Live Globe 2025

https://bfcm.shopify.com/
1•doppp•3m ago•0 comments

I Stopped Performing Online and Started Building Again

2•truelinux1•4m ago•0 comments

Z-Image Generation Demo

https://huggingface.co/spaces/Tongyi-MAI/Z-Image-Turbo
1•doener•9m ago•0 comments

Show HN: Burner-Query S3 logs without cold starts/egress fees(Rust+WASM)

https://github.com/burnersql/burner-agent
1•zerohero111•12m ago•0 comments

Claude 4.5 Opus vs. Gemini 3 Pro vs. GPT-5-Codex-Max: The SOTA coding model

https://composio.dev/blog/claude-4-5-opus-vs-gemini-3-pro-vs-gpt-5-codex-max-the-sota-coding-model
2•mellosouls•12m ago•0 comments

Windows drive letters are not limited to A-Z

https://www.ryanliptak.com/blog/windows-drive-letters-are-not-limited-to-a-z/
3•LorenDB•14m ago•0 comments

Norway wealth fund to vote for human rights report at Microsoft, against Nadella

https://www.cnbc.com/2025/11/30/norway-wealth-fund-to-vote-for-human-rights-report-at-microsoft-a...
4•saubeidl•14m ago•0 comments

Apple Desktop Bus Protocol (2021)

https://www.lopaciuk.eu/2021/03/26/apple-adb-protocol.html
1•dcminter•14m ago•0 comments

Bandaid: Brokered Agent Network for DNS AI Discovery

https://datatracker.ietf.org/doc/draft-mozleywilliams-dnsop-bandaid/
1•zyngaro•15m ago•0 comments

Show HN: Portal – Relay network to expose local services to public web endpoint

https://github.com/gosuda/portal
1•sjc02183•16m ago•0 comments

How to Install Yourls: Free Self-Hosted URL Shortener on Azure (Ubuntu 22.04)

https://philippdubach.com/standalone/yourls-azure-tutorial/
1•7777777phil•16m ago•0 comments

I Hate Language "Benchmarks" by GingerBill [video]

https://www.youtube.com/watch?v=2CSCBZmJ70U
1•baranul•17m ago•0 comments

AI Skills Everyone Should Learn in 2025 (Beginner-Friendly Guide)

https://dailyaiguide.substack.com/p/5-ai-skills-everyone-should-learn
1•ai_updates•18m ago•1 comments

On The Origins of Named Glassware [pdf]

https://static1.squarespace.com/static/686d9fb49c4cda307c6a05e4/t/692c2784c568261bdb32c63e/176450...
1•thunderbong•18m ago•0 comments

Design a novel protein using AI in less than 5 min

https://design-a-protein.com
1•julian_englert•23m ago•1 comments

Blackhole QuietBox, Tenstorrent's AI workstation reviewed

https://www.theregister.com/2025/11/27/tenstorrent_quietbox_review/
1•LorenDB•25m ago•0 comments

Show HN: Conversational Survey Tool

https://chattosurvey.com/
1•heshiebee•26m ago•0 comments

Show HN: Commits on Christmas – Check your holiday contribution streak

https://www.commit.holiday/
2•dohyun-ko•27m ago•0 comments

Show HN: Changelog-bot – Generate CHANGELOG.md from Git and release notes

https://github.com/nyaomaru/changelog-bot
2•nyaomaru•28m ago•0 comments

AI Is Hollowing Out Higher Education

https://www.project-syndicate.org/commentary/ai-will-not-save-higher-education-but-may-destroy-it...
1•DyslexicAtheist•29m ago•1 comments

They're Giving People $12,000 to Do Nothing in New York

https://medium.com/@anwarzaid76/theyre-giving-people-12-000-to-do-nothing-in-new-york-54c2d592b1a3
4•MindBreaker2605•32m ago•2 comments

Why Are Software Engineers (Not) Engineers?

https://brainbaking.com/post/2022/10/why-are-software-engineers-engineers/
1•BinaryIgor•33m ago•1 comments

It's Hard to Feel the AGI

https://tensorlabbet.com/2025/11/30/hard-to-feel-agi/
3•tarolangner•35m ago•0 comments

Why $30B in settlement money goes unclaimed – and how I started fixing it

https://claim.watch/
1•ma1or•36m ago•2 comments

Zig Book – An open, technical and introductory book for Zig

https://github.com/pedropark99/zig-book
3•rob•40m ago•1 comments

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

https://github.com/DavidLandup0/mitsuki
2•DavidLandup0•41m ago•0 comments

C64g.com removed from Google Search index

https://c64g.com
2•darqis•44m ago•1 comments

They Found Relatives on 23andMe–and Asked for a Cut of the Inheritance

https://www.wsj.com/personal-finance/they-found-relatives-on-23andmeand-asked-for-a-cut-of-the-in...
3•fortran77•44m ago•1 comments

Term-keys – Lossless keyboard input for Emacs

https://github.com/CyberShadow/term-keys
2•harryday•47m ago•0 comments
Open in hackernews

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

https://github.com/DavidLandup0/mitsuki
1•DavidLandup0•41m 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.