frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Claude Code Source Code Breakdown

https://kuber.studio/blog/AI/Claude-Code%27s-Entire-Source-Code-Got-Leaked-via-a-Sourcemap-in-npm...
1•sea-gold•8m ago•0 comments

Vibe Maintainer

https://steve-yegge.medium.com/vibe-maintainer-a2273a841040
2•duggan•11m ago•0 comments

Oscar goes missing after Academy Award winner is blocked from taking on flight

https://www.bbc.com/news/articles/cz72j59znw3o
1•saikatsg•15m ago•0 comments

When Vibe Coding Fails: When to Buy versus When to Build

https://www.forbes.com/councils/forbesbusinesscouncil/2026/04/30/when-vibe-coding-fails-when-to-b...
1•sminchev•16m ago•0 comments

Canonical/Ubuntu have been under DDoS for more than 15h

https://status.canonical.com/#/incident/KNms6QK9ewuzz-7xUsPsNylV20jEt5kyKsd8A-3ptQEHpOd8VQ40ZQs-K...
2•jtlebigot•17m ago•0 comments

What Happened with Mars Sample Return?

https://mceglowski.substack.com/p/what-happened-with-mars-sample-return
1•calcifer•17m ago•0 comments

Nvidia's Jim Fan on the End Game for Robotics [video]

https://www.youtube.com/watch?v=3Y8aq_ofEVs
2•pbd•20m ago•1 comments

Show HN: WeSearch – Anonymous news aggregator with no algorithm, 700 sources

https://wesearch.press/
3•EGCstudy•20m ago•0 comments

SoftBank, Intel to develop ZAM memory – new memory designed as lower-power HBM

https://www.tomshardware.com/tech-industry/artificial-intelligence/softbank-subsidiary-working-wi...
3•rbanffy•20m ago•0 comments

Music with Lyrics Interferes with Cognitive Tasks (2023)

https://journalofcognition.org/articles/10.5334/joc.273
2•XzetaU8•26m ago•0 comments

Show HN: Git Shield – local hooks for secrets and PII

1•veke87•27m ago•0 comments

US lawmakers vote to reduce NSF funding by 20%

https://www.nature.com/articles/d41586-026-01427-6
3•warbaker•29m ago•0 comments

A more efficient implementation of Shor's algorithm

https://lwn.net/Articles/1066156/
2•signa11•32m ago•0 comments

Show HN: Global DNS record propagation visualization

https://www.tidelock.dev/dns/propagation
2•vojtechrichter•40m ago•1 comments

Special-Use Domain 'home.arpa.' (2018)

https://www.rfc-editor.org/rfc/rfc8375.html
1•rdpintqogeogsaa•41m ago•0 comments

OpenClaw Got Safer in Public

https://openclaw.ai/blog/openclaw-security-in-public
1•jacobtomlinson•45m ago•0 comments

Forget Ambition: A Case for Hopeless Creativity

https://www.youtube.com/watch?v=JdlagZ2iDgU
2•stuaxo•45m ago•0 comments

China Planted 78B New Trees Affecting Its Water Cycle

https://www.popularmechanics.com/science/environment/a71126116/china-reforesting-changes-hydrology/
3•kaptain•46m ago•0 comments

My local agentic dev setup today

https://willemvandenende.com/blog/engineering/my-local-agentic-dev-setup-today
2•ColinEberhardt•57m ago•0 comments

Exclusive eBook: Inside the stealthy startup that pitched brainless human clones

https://www.technologyreview.com/2026/04/30/1136684/exclusive-ebook-inside-the-stealthy-startup-t...
2•joozio•58m ago•0 comments

Lightweight OpenCode profile for routine dev work with focused agents

https://github.com/gc-victor/supersimple
1•gcv•1h ago•0 comments

I Built GeoGuesser but for Guns

https://gunguesser.com
2•salad-vr•1h ago•3 comments

Show HN: Parse your chat exports to find restaurants, trips, and activity ideas

https://github.com/DocSpring/chat_to_map
1•nathan_f77•1h ago•0 comments

Ubuntu / Canonical Launchpad Down

https://status.canonical.com/
2•tankenmate•1h ago•1 comments

'Completely horrible': UK job hunters share frustration with AI interviews

https://www.theguardian.com/technology/2026/may/01/uk-job-hunters-frustration-ai-interviews
5•beardyw•1h ago•4 comments

SlothDB a 5X Faster Alternative to DuckDB, ClickHouse DB

1•souravroy78•1h ago•0 comments

RLS sounds great until it isn't

https://planetscale.com/blog/rls-sounds-great-until-it-isnt
1•ksec•1h ago•0 comments

Languages: We must save dying tongues (2014)

https://www.bbc.com/future/article/20140606-why-we-must-save-dying-languages
3•downbad_•1h ago•1 comments

Ask HN: Bedrock,Vertex AI etc. Support Anthropic Models

1•nethi•1h ago•0 comments

Rats free each other from cages (2011)

https://www.nature.com/articles/nature.2011.9603
3•downbad_•1h ago•1 comments
Open in hackernews

Show HN: Kencode – Compact Kotlin serialization for URLs and labels

https://eignex.com/posts/kencode-packing-data-for-strict-limits/
3•monom•1h ago

Comments

monom•1h ago
Hi HN, I wanted to avoid database lookups by embedding small state directly into URLs and K8s labels. While Kotlin has excellent serialization libraries, they aren't built for this, often leaving you to rely on manually doing it.

To solve this, I built kencode as an extension for kotlinx.serialization. It automatically packs booleans and nullability into a single bit-header and uses ZigZag encoding to generate tight Base62 tokens. I wrote up a technical breakdown of the implementation.