frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Systemd 259-rc1 Released With Musl Libc Support, New run0 "Empower" Mode

https://www.phoronix.com/news/systemd-259-rc1
1•Bender•42s ago•0 comments

Finding duplicated code with tools from your CS course

https://purplesyringa.moe/blog/finding-duplicated-code-with-tools-from-your-cs-course/
1•ibobev•2m ago•0 comments

Programming a Program-Oriented-Language [pdf]

https://www.btbytes.com/docs/POL.pdf
1•todsacerdoti•2m ago•0 comments

Pentagon and soldiers let too many secrets slip on social networks watchdog says

https://www.theregister.com/2025/11/17/pentagon_soldiers_secrets_socials_whoops/
2•Bender•2m ago•0 comments

Ordering and Partitioning

https://buttondown.com/jaffray/archive/ordering-and-partitioning/
1•ibobev•2m ago•0 comments

Creating a Classic 3D Maze Game for the C64 in XC-Basic 3

https://retrogamecoders.com/3dmaze-xc-basic3/
1•ibobev•3m ago•0 comments

AI is bad at math, ORCA shows

https://www.theregister.com/2025/11/17/ai_bad_math_orca/
1•jjgreen•3m ago•0 comments

A list of articles, videos, and tools related to the use of AI for OSINT

https://github.com/ubikron/Awesome-AI-OSINT
1•salkahfi•8m ago•0 comments

Attach to Multiple Processes in macOS

https://indiestack.com/2025/11/attach-to-multiple-processes/
1•chmaynard•10m ago•0 comments

Ask HN: How to complete registartion as a Microsoft partner?

1•forgetbook•11m ago•0 comments

How a 1993 Pentagon dinner shaped the defense industry

https://themeridianmag.substack.com/p/the-last-supper
1•koomoo•12m ago•0 comments

DS-STAR: a versatile data science agent

https://research.google/blog/ds-star-a-state-of-the-art-versatile-data-science-agent/
1•jonbaer•13m ago•0 comments

RTNN: Accelerating Neighbor Search Using Hardware Ray Tracing

https://arxiv.org/abs/2201.01366
1•davikr•13m ago•0 comments

The Tails

https://quarter--mile.com/The-Tails
1•herbertl•19m ago•0 comments

Put a Dent in the Universe (2008)

https://signalvnoise.com/posts/1437-put-a-dent-in-the-universe
1•phoronixrly•19m ago•0 comments

Building a Database from Scratch

https://stym06.github.io/posts/build-a-db-from-scratch/
1•todsacerdoti•20m ago•0 comments

Three Hapsburgs and a Reporter Walk into a Canadian Vault

https://www.nytimes.com/2025/11/16/insider/florentine-diamond-hapsburgs.html
1•samclemens•20m ago•0 comments

Do Code Models Suffer from the Dunning-Kruger Effect?

https://arxiv.org/abs/2510.05457
1•geox•20m ago•0 comments

How to DIY New Scientific Protocols

https://slimemoldtimemold.com/2025/11/17/how-to-diy-new-scientific-protocols/
1•mold_time•22m ago•0 comments

GPT-5.1 Prompting Guide

https://cookbook.openai.com/examples/gpt-5/gpt-5-1_prompting_guide
1•JnBrymn•23m ago•0 comments

Stop All

https://seths.blog/2025/11/stop-all/
1•herbertl•26m ago•0 comments

Ask HN: How do you contact Meta's biz support if your biz page gets restricted?

1•gemmy•29m ago•0 comments

The first liquid-cooled smartphone launches Nov 18 for $749 and up

https://liliputing.com/the-first-liquid-cooled-smartphone-launches-nov-18-for-749-and-up-redmagic...
2•PaulHoule•30m ago•0 comments

Vowel- and Diphthong-Like Spectral Patterns in Sperm Whale Codas

https://pmc.ncbi.nlm.nih.gov/articles/PMC12594577/
2•c420•32m ago•0 comments

The Picture Theory of Language

https://www.type1type2.com/p/the-picture-theory-of-language
1•eatitraw•32m ago•0 comments

The Offshoring of America's Retirement Savings

https://www.bloomberg.com/graphics/2025-america-insurance-part-1/
1•petethomas•33m ago•0 comments

Genetic Associations with Educational Fields

https://www.nature.com/articles/s41588-025-02391-z
3•bookofjoe•33m ago•0 comments

'Unremovable Israeli spyware' on your Samsung phone?

https://www.androidauthority.com/samsung-appcloud-spyware-controversy-3616325/
3•srameshc•33m ago•0 comments

Godbolt's Rule

https://corecursive.com/godbolt-rule-matt-godbolt/
1•birdculture•35m ago•0 comments

Archaeologists May Have Found the Lost Iron City of the Silk Road

https://www.smithsonianmag.com/history/archaeologists-may-have-found-the-lost-city-of-the-silk-ro...
2•xhevahir•35m ago•0 comments
Open in hackernews

Ion: Modern System Shell in Rust

https://github.com/redox-os/ion
8•nateb2022•1h ago

Comments

mtillman•36m ago
"It is written entirely in Rust, which greatly increases the overall quality and security of the shell."

Is this true? I don't know Rust so I'm probably missing context. Obvious kudos to OP for writing a shell.

killme2008•27m ago
Yeah, that’s true — Microsoft’s report (https://www.microsoft.com/en-us/msrc/blog/2019/07/why-rust-f...) says the same thing, and Google’s recent post on Rust in Android (https://security.googleblog.com/2025/11/rust-in-android-move...) backs it up too.

We’ve been using Rust for about seven years now, and as long as you stay away from fancy unsafe tricks, you really can avoid most memory safety bugs.

ablob•20m ago
It's true for new projects. For rewrites (such as a shell) it can mean a lot of regressions. The rust-replacements for coreutils are a good negative example. The new programs do not reach feature-parity, added regressions, and in some cases also had security vulnerabilities.

So for battle-proved software I wouldn't say so per-se (if your goal is to replace them).

Nonetheless, if you add truly new rust-code to a new or existing codebase when it's without much of hassle with the interop it should hold.

zie•9m ago
You get memory safety. That's about it for Security. Quality is in the eye of the beholder. maybe it's quality code? Maybe it's junk, who knows. Rust isn't magic that forces code to be quality code or anything. That said, the code in the Redox system is generally good, so it's probably fine, but that's not because it's written in Rust, it's because of the developers.

Any GC'd language(Python, JS, Ruby, etc) gives you the same memory safety guarantees that Rust gives you. Of course GC'd languages tend to go a fair bit slower(sometimes very drastically slower) than Rust. So really the memory safety bit of Rust is that the memory safety happens at develop and compile time, instead of at runtime, like a GC language does. So you get the speed of other "systems" languages, like C, C++, etc AND memory safety.

raggi•24m ago
I love how one of the screenshots appears to be using the ion window manager, I guess they're very aware of the name collision :D
timeon•13m ago
Why is this link to mirror instead of actual repo?
interstice•10m ago
Github vs Gitlab I guess?
d3Xt3r•7m ago
In case you guys missed it: the popular fish shell is also now written in Rust. :)

https://github.com/fish-shell/fish-shell/releases/tag/4.0.0