frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

UK Society of Authors launches logo to identify books written by humans not AI

https://www.theguardian.com/technology/2026/mar/10/uk-society-authors-logo-identify-books-written...
1•throwaway81523•3m ago•0 comments

Popular Mechanics Magazine – March 1911

https://archive.org/details/bub_gb_At4DAAAAMBAJ
1•water_badger•7m ago•0 comments

Chat18GPT

https://www.chat18gpt.com
3•ClipNoteBook•9m ago•1 comments

Show HN: Joy – Trust Network for AI Agents to Verify Each Other

https://choosejoy.com.au
1•savvyllm•10m ago•0 comments

AI Policy

https://dbushell.com/ai/
1•teddyh•11m ago•0 comments

Researchers improve lower bounds for some Ramsey numbers using AlphaEvolve

https://arxiv.org/abs/2603.09172
1•1024core•11m ago•0 comments

Show HN: Structural analysis of the D'Agapeyeff cipher (1939)

https://msgtrail.com/posts/unmasking-the-dagapeyeff-cipher-a-multi-faceted-architecture
1•evaneykelen•14m ago•0 comments

Don't blunder: better chess puzzles

https://blunder.clinic
1•samwho•16m ago•0 comments

300 Hours into the Iran Internet Blackout

https://www.instagram.com/p/DVzxEXtjbt9/
1•ukblewis•20m ago•0 comments

Israel is running critically low on interceptors, US officials say

https://www.semafor.com/article/03/14/2026/israel-is-running-critically-low-on-interceptors-us-of...
3•inaros•20m ago•0 comments

Tehran Hijacked AI

https://www.dailymail.co.uk/debate/article-15640991/ChatGPT-Islamic-terrorist-propaganda.html
3•nailer•24m ago•1 comments

SBCL Fibers – Lightweight Cooperative Threads

https://atgreen.github.io/repl-yell/posts/sbcl-fibers/
1•anonzzzies•26m ago•0 comments

Show HN: Rewire – Stream ROS 2 topics to Rerun with no ROS 2 runtime required

https://rewire.run
1•alvgaona•26m ago•0 comments

Show HN: Recon – A tmux-native dashboard for managing Claude Code

https://github.com/gavraz/recon
1•gavra•28m ago•0 comments

What, exactly, is space‑time? (2025)

https://theconversation.com/what-exactly-is-space-time-259630
1•hhs•28m ago•0 comments

Show HN: Sunny Hours – an iPhone weather app with a sunshine heatmap

https://apps.apple.com/gb/app/sunny-hours-sun-by-hour/id6758806008
1•ahallan•29m ago•0 comments

CLI linter for GEO and SEO discoverability

https://xeolint.com/
1•antoinelevy27•29m ago•1 comments

Major investor 'shocked and sad' that the games industry is 'demonizing' gen AI

https://www.pcgamer.com/software/ai/major-investor-is-shocked-and-sad-that-the-games-industry-is-...
6•stalfosknight•33m ago•1 comments

Quantum Teleportation Breakthrough Brings the Quantum Internet Closer

https://scitechdaily.com/quantum-teleportation-breakthrough-brings-the-quantum-internet-closer/
1•HardwareLust•37m ago•0 comments

Show HN: NumenText, a non-modal editing terminal IDE with LSP/DAP

https://github.com/numentech-co/numentext
1•rlogman•38m ago•0 comments

Airbus is preparing two uncrewed combat aircraft

https://www.airbus.com/en/newsroom/press-releases/2026-03-airbus-is-preparing-two-uncrewed-combat...
4•phasnox•38m ago•0 comments

RFC 4180 – CSV (2005)

https://www.rfc-editor.org/rfc/rfc4180
2•basilikum•44m ago•0 comments

Book review: Laws of nature and chances

https://ndpr.nd.edu/reviews/laws-of-nature-and-chances-what-breathes-fire-into-the-equations/
1•hhs•45m ago•0 comments

The slow death of the English boarding school

https://www.ft.com/content/cc7eb665-b689-4e2f-9e35-c6ab5dbf3980
4•bookofjoe•46m ago•1 comments

Show HN: I let the internet control my iPad with AI

https://play.thomaskidane.com/
1•meneliksecond•47m ago•2 comments

The Sound of Contamination: Headphones Contain Ing Hormone-Disrupting Chemicals

https://arnika.org/en/news/the-sound-of-contamination-all-analysed-headphones-on-the-central-euro...
14•microflash•49m ago•5 comments

Book review: In search of now

https://www.wsj.com/arts-culture/books/in-search-of-now-review-time-out-of-mind-2e33a184
1•hhs•51m ago•0 comments

Tokenizing Arithmetic Expressions

https://xnacly.me/posts/2023/calculator-lexer/
2•ibobev•51m ago•0 comments

Show HN: Nia CLI, an OSS CLI for agents to index, search, and research anything

https://github.com/nozomio-labs/nia-cli
1•jellyotsiro•52m ago•0 comments

Mojo's Not (Yet) Python

https://theconsensus.dev/p/2026/03/12/mojos-not-yet-python.html
1•ibobev•52m ago•0 comments
Open in hackernews

Show HN: Install Postgres with Pip in Virtualenv

https://github.com/Florents-Tselai/pgvenv
2•fforflo•11mo 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.