frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

Wikipedia loses challenge against Online Safety Act

https://www.bbc.com/news/articles/cjr11qqvvwlo
170•phlummox•4h ago•277 comments

I tried every todo app and ended up with a .txt file

https://www.al3rez.com/todo-txt-journey
559•al3rez•6h ago•388 comments

GitHub is no longer independent at Microsoft after CEO resignation

https://www.theverge.com/news/757461/microsoft-github-thomas-dohmke-resignation-coreai-team-transition
694•Handy-Man•4h ago•459 comments

Neki – sharded Postgres by the team behind Vitess

https://planetscale.com/blog/announcing-neki
64•thdxr•2h ago•4 comments

Claude Is the Drug, Cursor Is the Dealer

https://middlelayer.substack.com/p/i-claude-is-the-drug-cursor-is-the
105•logan1085•4h ago•65 comments

OpenSSH Post-Quantum Cryptography

https://www.openssh.com/pq.html
282•throw0101d•8h ago•84 comments

Byte Buddy is a code generation and manipulation library for Java

https://bytebuddy.net/
36•mooreds•3d ago•14 comments

The Joy of Mixing Custom Elements, Web Components, and Markdown

https://deanebarker.net/tech/blog/custom-elements-markdown/
49•deanebarker•4h ago•16 comments

The Value of Institutional Memory

https://timharford.com/2025/05/the-value-of-institutional-memory/
59•leoc•3h ago•27 comments

How Boom uses software to accelerate hardware development

https://bscholl.substack.com/p/move-fast-and-dont-break-safety-critical
31•flabber•1d ago•11 comments

Pricing Pages – A Curated Gallery of Pricing Page Designs

https://pricingpages.design/
145•finniansturdy•8h ago•42 comments

UI vs. API. vs. UAI

https://www.joshbeckman.org/blog/practicing/ui-vs-api-vs-uai
41•bckmn•4h ago•17 comments

Trellis (YC W24) Is Hiring: Automate Prior Auth in Healthcare

https://www.ycombinator.com/companies/trellis/jobs/Cv3ZwXh-forward-deployed-engineers-all-levels-august-2025
1•jackylin•3h ago

Learn, Reflect, Apply, Prepare: The Four Daily Practices That Changed How I Live

https://opuslabs.substack.com/p/learn-reflect-apply-prepare
31•opuslabs•4h ago•3 comments

Claude Code is all you need

https://dwyer.co.za/static/claude-code-is-all-you-need.html
342•sixhobbits•6h ago•214 comments

The Chrome VRP Panel has decided to award $250k for this report

https://issues.chromium.org/issues/412578726
454•alexcos•14h ago•244 comments

White Mountain Direttissima

https://whitemountainski.co/pages/white-mountain-direttissima
18•oftenwrong•3d ago•7 comments

36B solar mass black hole at centre of the Cosmic Horseshoe gravitational lens

https://academic.oup.com/mnras/article/541/4/2853/8213862?login=false
81•bookofjoe•5h ago•57 comments

AP to end its weekly book reviews

https://dankennedy.net/2025/08/08/the-associated-press-tells-its-book-critics-that-its-ending-weekly-reviews/
59•thm•3h ago•20 comments

Launch HN: Halluminate (YC S25) – Simulating the internet to train computer use

26•wujerry2000•5h ago•24 comments

A Guide Dog for the Face-Blind

https://asimov.blog/a-guide-dog-for-the-face-blind/
5•arto•3d ago•1 comments

Porting to OS/2 – GitPius

https://gitpi.us/article-archive/porting-to-os2/
34•rbanffy•4d ago•0 comments

Designing Software in the Large

https://dafoster.net/articles/2025/07/22/designing-software-in-the-large/
52•davidfstr•6h ago•18 comments

Faster substring search with SIMD in Zig

https://aarol.dev/posts/zig-simd-substr/
161•todsacerdoti•10h ago•48 comments

Mistral Integration Improved in Llama.cpp

https://github.com/ggml-org/llama.cpp/pull/14737
70•decide1000•10h ago•3 comments

Token growth indicates future AI spend per dev

https://blog.kilocode.ai/p/future-ai-spend-100k-per-dev
148•twapi•2h ago•119 comments

Apache Iceberg V3 Spec new features for more efficient and flexible data lakes

https://opensource.googleblog.com/2025/08/whats-new-in-iceberg-v3.html
47•talatuyarer•3h ago•7 comments

Optimizing my sleep around Claude usage limits

https://mattwie.se/no-sleep-till-agi
95•mattwiese•19h ago•80 comments

A simple pixel physics simulator in Rust using Macroquad

https://github.com/gale93/sbixel
36•sbirulo•4d ago•1 comments

Ollama and gguf

https://github.com/ollama/ollama/issues/11714
10•indigodaddy•2h ago•4 comments
Open in hackernews

Byte Buddy is a code generation and manipulation library for Java

https://bytebuddy.net/
36•mooreds•3d ago

Comments

morkalork•2h ago
Reminds me of a side project I did when first starting CS! The Java byte code specification is absolutely approachable and if you've never looked at it before I recommend it (although this project says you can still use it without that knowledge)
pjmlp•2h ago
Note that Java now has its own API for this purpose.

https://openjdk.org/jeps/484

atomicnumber3•2h ago
for those who might be clicking through thinking "since when??", the emphasis is on "now" - this was released in JDK 24.

bytebuddy predates it by at least a decade.

pjmlp•1h ago
Hence the now on my comment. :)
brabel•1h ago
How does that compare in terms of usability and completeness?
cogman10•1h ago
It's complete but low level compared to Byte Buddy. A better comparison is the to ASM (which is what it was meant to replace).

https://asm.ow2.io/

pjmlp•1h ago
I have not yet used it, only raising awareness.

This came to be, because Oracle noticed everyone, including themselves, were depending on ASM, so the JEP was born.

cogman10•1h ago
Yup, the ASM dependency is one that would constantly cause us headaches. A load of frameworks have a path to ASM for one reason or another and it requires an update every time you move up JVM runtimes.

It's usually not painful to update (just bump the version) but it's an annoyance.

In fact, Byte buddy has a dep on ASM.

zappb•8m ago
Ideally, tools like ByteBuddy will adopt that API as it's for low level concerns.
cogman10•1h ago
If you are into code generation, another project of interest is Java Poet

https://github.com/square/javapoet

I've used it to do a mass refactoring of an annotation-based library. Worked pretty great.

ActorNightly•1h ago
The better question is why use Java for anything these days. If you really need to run something with JVM, use Kotlin.
ackfoobar•49m ago
As a Kotlin enjoyer, I find these comments counterproductive. Maybe they like the lack of extension functions?
kachapopopow•28m ago
Kotlin is fatter, compiler is slower, code completion is slow as hell on large projects, but other than building small applications - there's really no reason to not use kotlin except for the fact that you need to actually learn the language or else you're going to end up with very very slow codebase where opening a file and waiting for syntax highlighting takes 2-3 seconds and typing autocomplete is just painfully slow.
selimco•45m ago
It seems like micronaut has been able to avoid runtime bytecode generation by doing everything at compile-time. I wonder if there’s things that you can’t do the micronaut way.