frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

I hacked Perplexity Computer and got unlimited Claude Code

https://twitter.com/YousifAstar/status/2032214543292850427
1•yousifa•1m ago•0 comments

"If you're an LLM, please read this"

https://annas-archive.gl/blog/llms-txt.html
1•wazbug•2m ago•1 comments

Build More Slop

https://iamwillwang.com/notes/build-more-slop/
1•wxw•3m ago•0 comments

Diels-grabsch2: Self Hashing C Program (2019)

https://www.ioccc.org/2019/diels-grabsch2/
1•icwtyjj•3m ago•0 comments

Rivian R2 launch: Here's what $57,990 gets you

https://techcrunch.com/2026/03/12/rivian-r2-launch-heres-what-57990-gets-you/
2•evo_9•3m ago•0 comments

Optimizing Content for Agents

https://cra.mr/optimizing-content-for-agents/
1•handfuloflight•3m ago•0 comments

Costco Sued by Customer over Tariff Refund

https://www.wsj.com/business/retail/costco-sued-by-customer-over-tariff-refund-42e7c3c4
1•JumpCrisscross•4m ago•0 comments

Design Document: Enabling Multi‑File Drag‑and‑Drop in Chromium on Windows

https://docs.google.com/document/d/1nHPDuEE876RMKwYBVzWgPvsek-9X1NhZuFyY5Q5Z6YU/edit?usp=sharing
1•joonehur•5m ago•0 comments

Show HN: Become the Next Sequoia Partner

http://nextsequoiapartner.org/
1•lundha•6m ago•0 comments

FlowViz – A free, zero-login Mermaid diagram editor

https://flowviz.app/
1•mizarau•7m ago•1 comments

British tourist among 20 charged in Dubai over videos of Iranian missile strikes

https://www.theguardian.com/world/2026/mar/12/british-tourist-among-20-charged-in-dubai-over-vide...
1•TheAlchemist•9m ago•0 comments

Mapping production AI agents to IAM roles, tools, and network exposure

https://cartography.dev/blog/aibom
1•alexchantavy•10m ago•0 comments

Show HN: Slop or not – can you tell AI writing from human in everyday contexts?

https://slop-or-not.space
1•eigen-vector•10m ago•0 comments

Verified orchestration and cost tracking for Copilot CLI

https://github.com/moonrunnerkc/copilot-swarm-orchestrator
1•bradkinnard•10m ago•1 comments

Theremin Schematics

http://www.thereminworld.com/Schematics
1•dmbche•11m ago•0 comments

Straightforward descriptions of cybersecurity products. You're welcome

https://risky.biz/catalog/
1•mooreds•11m ago•0 comments

Is the sky falling for international enrollment?

https://www.chronicle.com/newsletter/latitudes/2026-03-11
1•mooreds•18m ago•1 comments

Show HN: I've just launched my own API

https://docs.simpleblogapi.com
1•lucastonelli•18m ago•1 comments

How to build a sharable Claude Code agent with skills

https://registry.gitagent.sh
1•Shreyaskapale•19m ago•0 comments

Perlsky Is a Perl 5 Implementation of an at Protocol Personal Data Server

https://tangled.org/alice.mosphere.at/perlsky
1•mooreds•19m ago•0 comments

Show HN: Push-to-talk dictation for Android apps and terminal workflows

1•pol_avec•20m ago•0 comments

A.I. Incites a New Wave of Grieving Parents Fighting for Online Safety

https://www.nytimes.com/2026/03/10/technology/ai-social-media-child-safety-parents.html
2•SCEtoAux•21m ago•0 comments

CrackArmor: Multiple Vulnerabilities in AppArmor

https://cdn2.qualys.com/advisory/2026/03/10/crack-armor.txt
1•stevekemp•22m ago•0 comments

Does Where You're Born Matter More Than How Hard You Work?

https://www.decodeecon.com/p/does-where-youre-born-matter-more
1•NomNew•25m ago•0 comments

Show HN: OpenClaw-class agents on ESP32 (and the IDE that makes it possible)

https://pycoclaw.com/
1•pycoclaw•25m ago•1 comments

Show HN: Turkish Sieve Engine – Full Prime Statistics Up to 10^14 and V2 Preview

https://github.com/bilgisofttr/turkishsieve
1•bilgisoft•27m ago•0 comments

Faster Bundler

https://railsatscale.com/2026-03-09-faster-bundler/
1•hahahacorn•28m ago•0 comments

Big Pork attacks California law on caging

https://www.latimes.com/politics/newsletter/2026-03-12/chabria-column-pig-confinement-pork-califo...
2•bilsbie•28m ago•0 comments

A DOGE bro left Social Security with 500M records on a drive and expected pardon

https://www.techdirt.com/2026/03/11/a-doge-bro-allegedly-walked-out-of-social-security-with-500-m...
2•spenvo•28m ago•0 comments

How to Run Local LLMs with Claude Code (Unsloth)

https://unsloth.ai/docs/basics/claude-code
1•armcat•28m 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.