frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

•43s ago

Hit by a Truck

https://pxlnv.com/blog/hit-by-a-truck/
1•speckx•1m ago•0 comments

Larry Summers resigns from OpenAI board after release of emails with Epstein

https://www.cnbc.com/2025/11/19/larry-summers-epstein-openai.html
1•koolba•1m ago•0 comments

The U.S. Mint is auctioning the last pennies–and they could sell for millions

https://www.popsci.com/technology/last-us-penny-auction/
1•geox•1m ago•0 comments

LPLB: An early research stage MoE load balancer based on linear programming

https://github.com/deepseek-ai/LPLB
1•simonpure•2m ago•0 comments

One second to compute the largest Fibonacci number [video]

https://www.youtube.com/watch?v=KzT9I1d-LlQ
1•iampotatoman92•3m ago•0 comments

China is setting the pace in the EV race, and the West can't keep up

https://restofworld.org/2025/china-us-ev-race/
1•Brajeshwar•3m ago•0 comments

Stack Overflow for Teams Is Now Stack Internal

https://stackoverflow.blog/2025/11/18/introducing-stack-internal-powering-the-human-intelligence-...
1•nsoonhui•6m ago•0 comments

Everything Async, Nothing to Await: Automatic Concurrency in Par

https://www.youtube.com/watch?v=tpICs7uG3n8
1•birdculture•6m ago•0 comments

Axiom introduces metrics: High-cardinality without the cost

https://axiom.co/blog/metrics
1•paffdragon•7m ago•0 comments

Pope John Paul II's Secret Cardinal

https://old.reddit.com/r/UnresolvedMysteries/comments/imdlwc/other_pope_john_paul_iis_secret_card...
1•lordleft•7m ago•0 comments

Daily Updated Data Breach Repository

https://github.com/infostealers-stats/data-breach
6•rangeva•7m ago•0 comments

Show HN: I made a better Loreum Ipsum based on Paul Grahams essays

https://paulgrahamipsum.com
3•RandomDailyUrls•8m ago•0 comments

Show HN: Startup Investing Game

https://startupgambit.com
1•vire00•9m ago•0 comments

Visualizing the "Hardness" of Factoring – An Interactive Constraint Tableau

https://do-say-go.github.io/this-is-the-way/
1•keepamovin•11m ago•0 comments

I Built a DownDetector for DownDetector

https://old.reddit.com/r/ShittySysadmin/comments/1p0t3q4/i_built_a_downdetector_for_downdetector/
1•speckx•12m ago•0 comments

Accelerating Finite Element Using VarQITE

https://arxiv.org/abs/2503.13128
1•syadegari•14m ago•0 comments

Cloudflare outage traced to one oversized file

https://www.axios.com/2025/11/18/cloudflare-outage-cause-systems-down
1•fcpguru•14m ago•1 comments

Thieves are returning Android phones because they 'don't want no Samsung'

https://www.androidauthority.com/thieves-returning-android-phones-3616921/
2•fcpguru•15m ago•0 comments

Luminal.com $5.3M Seed Round

https://www.luminal.com/blog/introducing-luminal
1•fcpguru•16m ago•0 comments

Time to put cognition before engagement

https://unvoid.substack.com/p/ultra-processed-content-upc
1•0asa•17m ago•0 comments

Akxedereth

https://akxeder.eth.ac
1•KabuTheSilicon•17m ago•0 comments

I built the most accurate quiz engine

https://mystofa.com/quizes/design-test
1•assorium•18m ago•0 comments

"Not Working" – A customizable Cloudflare error page generator

https://github.com/donlon/cloudflare-error-page
1•Donlon•19m ago•0 comments

Show HN: TEQ - A Quiplash Alternative in the Browser

https://www.teqgame.com/
1•prakhar897•19m ago•0 comments

Why our Cloudflare failover failed?

https://oneuptime.com/blog/post/2025-11-19-why-our-cloudflare-failover-failed/view
1•ndhandala•22m ago•0 comments

GPU depreciation could be the next big crisis coming for AI hyperscalers

https://www.tomshardware.com/tech-industry/gpu-depreciation-could-be-the-next-big-crisis-coming-f...
2•giuliomagnifico•23m ago•0 comments

Prompet: Can an AI model teach itself to draw?

https://prompet.ai/
2•yoavfr•23m ago•0 comments

RAG Is Set Consumption, Not Ranking: A Metric Designed for RAG Evaluation

https://vectors.run/posts/a-rarity-aware-set-based-metric/
2•etoud•24m ago•1 comments

Show HN: Discord Chat Exporter – Export Discord Messages and Attachments

https://chromewebstore.google.com/detail/discord-chat-exporter-exp/pgekiegndcifcbjaoojbnpdckdcailcb
2•qwikhost•24m ago•0 comments
Open in hackernews

Phoenix Creator Argues Elixir Is AI's Best Language

https://thenewstack.io/phoenix-creator-argues-elixir-is-ais-best-language/
3•mooreds•1h ago

Comments

delaminator•50m ago
In an ironic twist, Claude tells me it is Rust because of the error messages.

Each project I have tried a different language.

It liked Racket but didn't think Typed Racket as really worth it.

Erlang worked out well.

It does pretty good at C#.

But don't take my word for it

> would you prefer erlang, rust, racket or c#

● Interesting comparison - these are very different tools. My preference would depend heavily on the problem:

For What We Just Did [polling an API]

I'd pick Erlang - and here's why this specific project validates that choice:

  1. Long-running stateful service: Needs to run 24/7 polling aircraft data
  2. Built-in state management: Mnesia for regions, rules, recent sightings
  3. Concurrent by default: Multiple aircraft being processed, periodic polling, web server - all
  concurrent without thinking about it
  4. Reliability matters: Missing aircraft alerts due to crashes would be bad; OTP supervision handles
  this
But Generally?

Rust would be my favorite overall: - Compile-time correctness catches whole classes of bugs that runtime systems miss - Performance without compromise - no GC pauses, predictable behavior - Modern ergonomics - cargo, excellent error messages, strong type inference - Growing ecosystem - tokio for async, axum for web, no longer as sparse as it was

The catch: Rust's learning curve is real, and for rapid prototyping it can be slower.

Racket is fascinating for: - Language-oriented programming - when you need to build DSLs - Exploratory work - REPL-driven development is wonderful - Education/research - the language tower concept is unique

But it's too niche for production systems most of the time.

C# I'd choose when: - Enterprise integration is critical - existing .NET infrastructure - Team familiarity - large pool of developers - Rapid development with good tooling - Visual Studio, LINQ, async/await

But it feels heavy and tied to the Microsoft ecosystem.

The Honest Answer

For systems that must not fail (telecom, distributed databases, message queues): Erlang

For performance-critical systems where correctness matters (OS components, embedded, infrastructure): Rust

For most other things (web apps, APIs, tools, scripts): I'd probably reach for something lighter like

Go or Python rather than any of these four.