frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Finding a CPU Design Bug in the Xbox 360

https://randomascii.wordpress.com/2018/01/07/finding-a-cpu-design-bug-in-the-xbox-360/
1•mariuz•23s ago•0 comments

Pingtrace – One command to ping and trace networks

https://www.npmjs.com/package/pingtrace
1•skhell•43s ago•0 comments

Improving instruction hierarchy in frontier LLMs

https://openai.com/index/instruction-hierarchy-challenge/
1•gmays•1m ago•0 comments

AI policy's new power center

https://www.axios.com/2026/03/13/ai-policy-power-center-pentagon-anthropic
1•Brajeshwar•1m ago•0 comments

IPv6 support for cloning Git repositories

https://github.com/orgs/community/discussions/10539
1•stefankuehnel•1m ago•0 comments

Computer History Museum Presents Apple at 50: Five Decades of Thinking Different [video]

https://www.youtube.com/watch?v=w8wt0LBCjXM
1•ChrisArchitect•1m ago•0 comments

How the Eon Team Produced a Virtual Embodied Fly

https://eon.systems/updates/embodied-brain-emulation
1•hmokiguess•2m ago•0 comments

Amid xAI co-founder exits, Elon Musk hires key engineers from AI startup Cursor

https://www.businesstoday.in/technology/news/story/amid-xai-co-founder-exits-elon-musk-poaches-ke...
1•Zigurd•3m ago•1 comments

Joint statement of scientists and researchers on Age Assurance [pdf]

https://csa-scientist-open-letter.org/ageverif-Feb2026
1•speckx•4m ago•0 comments

Show HN: Oxyde – Pydantic-native async ORM with a Rust core

https://github.com/mr-fatalyst/oxyde
1•mr_Fatalyst•5m ago•0 comments

I traced $2B in nonprofit grants, lobbying records for age verification bills

https://old.reddit.com/r/opensource/comments/1rsfhf0/i_traced_2_billion_in_nonprofit_grants_and_45/
1•thunderbong•6m ago•0 comments

The Formation of Star Patterns on Lake Ice (2007) [pdf]

https://www.whoi.edu/cms/files/Victor_21243.pdf
2•mooreds•6m ago•0 comments

The Gap

https://codeplusconduct.substack.com/p/the-gap
1•mooreds•7m ago•0 comments

GitHub Sudo Mode

https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/sudo-mode
1•mooreds•8m ago•0 comments

A list of tech co-ops and resources concerning worker owned co-ops

https://github.com/hng/tech-coops
1•iamnothere•9m ago•0 comments

Betrayed by My Own Blog

https://ossama.is/writing/betrayed
3•jllyhill•10m ago•1 comments

Sir-Engine Cross Language Duplicate Detection

https://github.com/lflin00/SIR-ENGINE
2•lflin00•11m ago•1 comments

Show HN: Using AI to generate accurate illustrations for physiotherapy site

https://www.healandmove.fit
2•ashmil•12m ago•0 comments

Project Nomad: Offline Knowledgebase

https://github.com/Crosstalk-Solutions/project-nomad
2•marvin-hansen•14m ago•0 comments

Mario Meets Pareto

https://www.mayerowitz.io/blog/mario-meets-pareto
2•MetallicCloud•14m ago•0 comments

Leaving a Fingerprint on the Day

https://paolog.net/posts/leaving-a-fingerprint-on-the-day/
2•paologi•14m ago•0 comments

Optimize your boiler's tap water temperature

https://practicalbetterments.com/optimize-your-boilers-tap-water-temperature/
3•surprisetalk•15m ago•0 comments

Moving to Sweden as an American

https://departure.blog/moving-to-sweden-as-an-american/
2•surprisetalk•15m ago•0 comments

Engineering Liveness

https://contraptions.venkateshrao.com/p/engineering-liveness
2•surprisetalk•15m ago•1 comments

An Atlas of the Universe (2009)

http://www.atlasoftheuniverse.com/
1•surprisetalk•15m ago•0 comments

Generative AI Vegetarianism

https://sboots.ca/2026/03/11/generative-ai-vegetarianism/
1•birdculture•17m ago•0 comments

Tell HN: Claude two rate limits don't know about each other

1•mustaphah•17m ago•0 comments

Launch HN: Spine Swarm (YC S23) – AI agents that collaborate on a visual canvas

https://www.getspine.ai/
1•a24venka•18m ago•0 comments

Decisions, extracted knowledge, handoff context: reasoning data infrastructure

https://sderosiaux.substack.com/p/ai-agents-produce-a-new-kind-of-data
1•chtefi•19m ago•0 comments

Show HN: Build Your Own OpenClaw – A step by step guide

https://github.com/czl9707/build-your-own-openclaw
2•zane__chen•19m ago•0 comments
Open in hackernews

Show HN: Install Postgres with Pip in Virtualenv

https://github.com/Florents-Tselai/pgvenv
2•fforflo•10mo ago
Hi HN,

I frequently work with Postgres & Python and toggle between multiple versions of each. In Postgres, I keep a separate installation for each project, but I don't like git submodules and don't want to ship "pg_build.sh" scripts with the source code.

So, I built pgvenv as a Python shell package that, when installed, triggers a from-source installation of Postgres and installs it at venv's prefix. Could become handy at times I think.

You can roughly use it like this.

python3.11 -m venv ./venv

source ./venv/bin/activate

PGVERSION=17.4 pip install pgvenv --force-reinstall --no-cache-dir

initdb ./pgdata

postgres -D ./pgdata

Many things can go wrong with this in production, so should probably use for development only.