frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Mr TIFF

https://inventingthefuture.ghost.io/mr-tiff/
646•speckx•12h ago•86 comments

SPy: An interpreter and compiler for a fast statically typed variant of Python

https://antocuni.eu/2025/10/29/inside-spy-part-1-motivations-and-goals/
58•og_kalu•5d ago•19 comments

Hypothesis: Property-Based Testing for Python

https://hypothesis.readthedocs.io/en/latest/
115•lwhsiao•8h ago•75 comments

RISC-V takes first step toward international ISO/IEC standardization

https://riscv.org/blog/risc-v-jtc1-pas-submitter/
156•jrepinc•5d ago•58 comments

This week in 1988, Robert Morris unleashed his eponymous worm

https://www.tomshardware.com/tech-industry/cyber-security/on-this-day-in-1988-the-morris-worm-sli...
391•canucker2016•20h ago•170 comments

Asus Announces October Availability of ProArt Display 8K PA32KCX

https://press.asus.com/news/press-releases/asus-proart-display-8k-pa32kcx-availability/
99•Roachma•1w ago•116 comments

Intervaltree with Rust Back End

https://github.com/Athe-kunal/intervaltree_rs
14•athekunal•3d ago•7 comments

Bluetui – A TUI for managing Bluetooth on Linux

https://github.com/pythops/bluetui
164•birdculture•12h ago•45 comments

Apple’s Persona technology uses Gaussian splatting to create 3D facial scans

https://www.cnet.com/tech/computing/apple-talks-to-me-about-vision-pro-personas-where-is-our-virt...
150•dmarcos•5d ago•56 comments

The Microsoft SoftCard for the Apple II: Getting two processors to share memory

https://devblogs.microsoft.com/oldnewthing/20251104-00/?p=111758
41•zdw•8h ago•11 comments

Pg_lake: Postgres with Iceberg and data lake access

https://github.com/Snowflake-Labs/pg_lake
339•plaur782•19h ago•101 comments

Grayskull: A tiny computer vision library in C for embedded systems, etc.

https://github.com/zserge/grayskull
110•gurjeet•13h ago•8 comments

UPS plane crashes near Louisville airport

https://www.cbsnews.com/news/ups-plane-crash-louisville-kentucky/
132•jnsaff2•12h ago•119 comments

Moving tables across PostgreSQL instances

https://ananthakumaran.in/2025/11/02/moving-tables-across-postgres-instances.html
16•ananthakumaran•3d ago•0 comments

The Hackers Manifesto (The Conscience of a Hacker) (1986)

https://phrack.org/issues/7/3
40•OuterVale•3h ago•17 comments

Patching 68K Software – SimpleText

https://tinkerdifferent.com/threads/patching-68k-software-simpletext.4793/
90•mmoogle•12h ago•10 comments

By the Power of Grayscale

https://zserge.com/posts/grayskull/
220•surprisetalk•4d ago•39 comments

Codemaps: Understand Code, Before You Vibe It

https://cognition.ai/blog/codemaps
268•janpio•17h ago•96 comments

Direct File won't happen in 2026, IRS tells states

https://www.nextgov.com/digital-government/2025/11/direct-file-wont-happen-2026-irs-tells-states/...
226•jhatax•9h ago•127 comments

I took all my projects off the cloud, saving thousands of dollars

https://rameerez.com/send-this-article-to-your-friend-who-still-thinks-the-cloud-is-a-good-idea/
309•sebnun•14h ago•258 comments

Whole Earth Index

https://wholeearth.info/
220•bookofjoe•1w ago•46 comments

FDD – Diskettes

https://retrocmp.de/fdd/diskette/diskette.htm
19•susam•1w ago•3 comments

Uncle Sam wants to scan your iris and collect your DNA, citizen or not

https://www.theregister.com/2025/11/04/dhs_wants_to_collect_biometric_data/
293•SanjayMehta•12h ago•182 comments

Vectorizing for Fun and Performance

https://www.ibm.com/support/pages/vectorizing-fun-and-performance
35•rinostroh•6d ago•2 comments

Preventing Kubernetes from Pulling the Pause Image from the Internet

https://kyle.cascade.family/posts/preventing-kubernetes-from-pulling-the-pause-image-from-the-int...
47•meatmanek•8h ago•32 comments

Frozen String Literals: Past, Present, Future?

https://byroot.github.io/ruby/performance/2025/10/28/string-literals.html
60•Bogdanp•1w ago•22 comments

Google Removed 749M Anna's Archive URLs from Its Search Results

https://torrentfreak.com/google-removed-749-million-annas-archive-urls-from-its-search-results/
276•gslin•12h ago•112 comments

Inside an Isotemp OCXO107-10 Oven Controlled Crystal Oscillator

https://tomverbeure.github.io/2025/10/26/Inside-an-Isotemp-OCXO107-10.html
37•zdw•1w ago•1 comments

Launch HN: Plexe (YC X25) – Build production-grade ML models from prompts

https://www.plexe.ai/
76•vaibhavdubey97•18h ago•28 comments

Singing bus horns in West Sumatra

https://www.auralarchipelago.com/auralarchipelago/kalason
81•Kaibeezy•1w ago•10 comments
Open in hackernews

Intervaltree with Rust Back End

https://github.com/Athe-kunal/intervaltree_rs
13•athekunal•3d ago

Comments

athekunal•3d ago
I built a project that implemented intervaltree in Rust and exposed PyO3 bindings as a drop-in replacement for Python's native intervaltree. It is significantly faster, and I will be adding more features, such as AVL and red-black trees for balancing.
eru•1h ago
If you want balanced trees, have a look at what Rust's standard library does with BTreeMap.
jeffparsons•1h ago
And with a little work you can even use them to map ranges of keys to values in a way that's reminiscent of interval trees — e.g. https://crates.io/crates/rangemap. (Disclosure: that's my crate.)
eru•1h ago
Nice! I was only suggesting considering BTrees because they also play nice with caches, instead of the more conventional binary tree balancing mechanisms.
stefanka•1h ago
Will you publish it as a crate too?
2Pacalypse-•26m ago
Pretty cool to have this in Rust, might be useful if/when I decide to move some functionality from TS -> Rust.

In the meantime, I have this impelemented in TypeScript in case anyone else will find it useful: https://github.com/ShieldBattery/node-interval-tree

vswaroop04•9m ago
Pretty nice to have this in Rust could come in handy if I decide to migrate some functionality from TypeScript to Rust later on.