frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Making a Python interpreter in 1024 bytes

https://austinhenley.com/blog/python1024.html
117•azhenley•3h ago•46 comments

It took a year to ship WebAssembly in Anubis

https://anubis.techaro.lol/blog/2026/anubis-wasm/
161•xena•6h ago•95 comments

The NX bit is not just about security

https://purplesyringa.moe/blog/guest/the-nx-bit-is-not-just-about-security/
14•torutofu•2d ago•4 comments

Your intellectual fly is open when you use an LLM to author a post (2025)

https://bcantrill.dtrace.org/2025/12/05/your-intellectual-fly-is-open/
556•cyb0rg0•14h ago•366 comments

Show HN: Mador – Make any DOM reactive with a tiny 80-line Proxy state tuple

https://github.com/marsbos/mador
73•bosmarcel•6h ago•22 comments

Nitter and XCancel resume service after legal advice

https://github.com/zedeus/nitter/commit/1428b4c2b4246f92a7e5b2673438e5fb39fcc4a3
500•zImPatrick•9h ago•259 comments

GrapheneOS Overhauled Default Apps and Secure Clipboard

https://grapheneos.social/@GrapheneOS/117225539756835649
213•Cider9986•6h ago•143 comments

Babylonian Lamb Stew with Beets (1750–1730 BCE)

https://babylonian-collection.yale.edu/about/babylonian-cooking
110•yubblegum•3d ago•55 comments

MathKernel: An evidence-aware multi-engine mathematics kernel and MCP server

https://github.com/Staatsgeheim/MathKernel
12•staatsgeheim•2h ago•0 comments

Harnessing the Universal Geometry of Embeddings

https://arxiv.org/abs/2505.12540
49•ur-whale•6h ago•13 comments

Please don't rearrange our shoes when we turn up, paramedics in Japan urge

https://www.theguardian.com/world/2026/aug/28/never-tidy-paramedics-shoes-japan-custom-etiquette
33•high_na_euv•3d ago•16 comments

NetBSD 9.5 released and EOL for NetBSD-9

https://blog.netbsd.org/tnf/entry/netbsd_9_5_released_and
113•jaypatelani•11h ago•10 comments

An Alien Mind

https://openai.com/index/an-alien-mind/
349•tosh•10h ago•298 comments

Black Hole of Los Alamos: Seller of surplus nuclear research materials (2011)

https://www.atlasobscura.com/places/black-hole-of-los-alamos
44•Bluestein•4d ago•11 comments

Asahi Linux on M3

https://asahilinux.org/2026/09/m2-episode-1/
367•mdp2021•12h ago•213 comments

Research acceleration: The view inside OpenAI

https://openai.com/index/research-acceleration-view-inside-openai
125•iamsyr•11h ago•79 comments

Reverse engineering the storage format for an undocumented database

https://blog.glazer.ee/posts/converting-cronos/
27•pintprint•2d ago•2 comments

A/I shuts down

https://keepitfree.ai/announcements/a/i-shuts-down-stay-human/
534•captainmuon•12h ago•424 comments

Every Novel Is Boring–Until It Isn't

https://www.publicbooks.org/every-novel-is-boring-until-it-isnt/
18•samclemens•3d ago•8 comments

Research carried out using NetBSD

https://www.netbsd.org/gallery/research.html
81•Bluestein•10h ago•19 comments

Vidact – a compiler that turns React into direct DOM operations

https://www.vidact.dev/
55•mohebifar•4d ago•26 comments

Hackers have withdrawn ~4k BTC (~$320M) from the Liquid Federation wallet

https://twitter.com/Liquid_BTC/status/2096696272447218108
73•felipelalli•4h ago•47 comments

Electronic skin for prosthetics to sense temperature and pressure

https://news.wsu.edu/press-release/2026/08/20/researchers-develop-electronic-skin-for-prosthetics...
50•gmays•4d ago•5 comments

Opalite Health (YC W26) Is Hiring – Founding GTM

https://www.ycombinator.com/companies/opalite-health/jobs/bNedVAD-founding-gtm
1•ckuo9•9h ago

D2 Is Non-Profit

https://d2lang.com/blog/d2-non-profit/
31•alixanderwang•7h ago•13 comments

M-DISC – DVD/Blu-ray compatible discs that may last up to 1000 years

https://en.wikipedia.org/wiki/M-DISC
188•gurjeet•4d ago•90 comments

Isar Aerospace reaches orbit and deploys payloads on second flight

https://isaraerospace.com/press/history-for-european-spaceflight-isar-aerospace-reaches-orbit-and...
563•mpweiher•19h ago•180 comments

Doomscrolling ourselves to death

https://www.edwest.co.uk/p/doomscrolling-ourselves-to-death
374•shubhamjain•15h ago•280 comments

2026 Hugo Awards

https://www.thehugoawards.org/
77•signa11•14h ago•41 comments

216M Spy TVs – The LG Smart TV Problem [video]

https://www.youtube.com/watch?v=6IFVTcM28KA
31•treve•2h ago•10 comments
Open in hackernews

Ponytail: Lazy Senior Engineer Skill

https://ponytail.dev/
30•zatkin•1h ago

Comments

taurath•59m ago
I can’t help but think the effective outcome of using this is gonna be a ton of language quirk usage, mass functional chaining, and single letter variables.

Optimizing for fewest LOC is probably slightly more bad than more LOC, and both are bad for the same reason - it makes it harder for humans to interpret and understand wtf terrible decisions and tradeoffs the LLM made

bitexploder•53m ago
It does seem like for new code that might help. There's some really good logic and wisdom in it, but it has to be applied very contextually to the exact problem you are trying to solve. If an agent is navigating a complex codebase, this could definitely send them off on a refactoring rabbit hole. However, if you have them writing some new code, it could prevent their tendency to yak shave and write new things. So I can see some situational uses for this, but it could get out of hand as well.
AdieuToLogic•50m ago
> Optimizing for fewest LOC is probably slightly more bad than more LOC, and both are bad for the same reason - it makes it harder for humans to interpret and understand ...

Concision begets perplexity.

;-)

oefrha•53m ago
I like how this repo has 159 files with 11635 LoC, and the load-bearing (!!!) part of it is a couple lines of natural language instructions:

  1. *Does this need to exist at all?* Speculative need = skip it, say so in one line. (YAGNI)
  2. *Already in this codebase?* A helper, util, type, or pattern that already lives here → reuse it. Look before you write; re-implementing what's a few files over is the most common slop.
  3. *Stdlib does it?* Use it.
  4. *Native platform feature covers it?* `<input type="date">` over a picker lib, CSS over JS, DB constraint over app code.
  5. *Already-installed dependency solves it?* Use it. Never add a new one for what a few lines can do.
  6. *Can it be one line?* One line.
  7. *Only then:* the minimum code that works.

  - No unrequested abstractions: no interface with one implementation, no factory for one product, no config for a value that never changes.
  - No boilerplate, no scaffolding "for later", later can scaffold for itself.
  - Deletion over addition. Boring over clever, clever is what someone decodes at 3am.
  - Fewest files possible. Shortest working diff wins — but only once you understand the problem. The smallest change in the wrong place isn't lazy, it's a second bug.
  - Complex request? Ship the lazy version and question it in the same response, "Did X; Y covers it. Need full X? Say so." Never stall on an answer you can default.
  - Two stdlib options, same size? Take the one that's correct on edge cases. Lazy means writing less code, not picking the flimsier algorithm.
  - Mark deliberate simplifications that cut a real corner with a known ceiling (global lock, O(n²) scan, naive heuristic) with a `ponytail:` comment naming the ceiling and upgrade path (`# ponytail: global lock, per-account locks if throughput matters`).
That's essentially all there is.
3stacks•44m ago
That's my mistake, and here's the honest take:

A genuinely simple codebase is table stakes for a project like this.

---

That's enough Claude speak for one day

jrop•40m ago
Ha! Well done, sir.
varun_ch•52m ago
I know agents have lowered the cost to make a website to be a few cents for tokens and a couple dollars for a domain name, but isn’t all this a little excessive for a few line long markdown file!? Why not just display the ‘skill’ itself with a few lines commenting on what it does/how it helps?
roncesvalles•50m ago
I thought the webpage was a good read.
comradesmith•38m ago
It’s provocative, it gets the people going
jghn•48m ago
I've been using this for a couple of months and it is hit or miss. It'll make actual high quality suggestions at times. But the thing it's missing is the *actual* experience that makes its namesake persona. There's no sense of nuance of context applied.
farhankhan3•40m ago
has anyone found a good way to improve code quality? just wondering -- LOC does seem like the wrong metric, but the code LLMs write is just too verbose
Arubis•26m ago
So far, the best way I’ve found to improve code quality from LLMs that you’ve already produced is to read the output, throw it away, and hand-write it from scratch, usually with a totally different structure.

This scales about as well as it sounds like it would.

Multi-model review does a decent job identifying things they’re outright wrong. The resulting code still doesn’t feel elegant writ large.

If you want good output, it seems that iterating on the output is inferior to providing better input inclusive of code examples. And by the time you’ve made all the decisions that go into that, something like ponytail is superfluous.

(All that said, I have ponytail installed in most harnesses.)

ryanchants•24m ago
I'm working on a LLM code review tool that focuses on reducing concepts instead of reducing lines. I think that's more along the lines of explaining what you want out of clean code than ponytail's approach. But I'm still playing with it so, not sure. And just because it produces code I like doesn't mean it's good code for everyone
rvz•39m ago
So we are building a text version of a bias aid for a random number generator? None of the output of what you are expecting from this "skills.md" is even guaranteed.

Not only the GitHub stars are clearly manipulated with bots and fake accounts, this whole "skills.md" paradigm is close to being a pseudoscientific exercise in attempting to steer LLMs but throwing huge markdown files at it and expecting the desired result to happen won't work in the long run.

kroaton•25m ago
Garbage.
ravila4•24m ago
Why build a whole website for what is essentially a markdown file?
AndrewKemendo•15m ago
I just realized that I now have long hair and sometimes wear a ponytail and have been a sr em and sr sde

I guess it does happen to everyone cause most (not all) seniors I know have had long hair at some point

binary132•7m ago
Yeah, I noticed this with the caveman repo, too. Really annoying.