frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Apple scales out 6G ambitions with engineer job listings

https://www.sdxcentral.com/news/apple-scales-out-6g-ambitions-with-engineer-job-listings/
1•herbertl•16s ago•0 comments

World Inequality Report 2026 [pdf]

https://wir2026.wid.world/www-site/uploads/2026/04/World_Inequality_Report_2026.pdf
1•xyzal•1m ago•0 comments

Gremlin

https://en.wikipedia.org/wiki/Gremlin
1•thunderbong•3m ago•0 comments

The most dangerous place in the solar system: Not where you think

https://refractor.io/space/dangerous-solar-system/
1•breve•4m ago•0 comments

The Law of Leaky Abstractions

https://www.joelonsoftware.com/2002/11/11/the-law-of-leaky-abstractions/
1•abrbhat•5m ago•0 comments

Germany's military shuns Palantir – cyber chief

https://www.reuters.com/technology/germanys-military-shuns-palantir-now-cyber-chief-tells-handels...
1•vrganj•6m ago•0 comments

How are teams bridging the gap between company knowledge and AI agents?

1•aursalan•7m ago•0 comments

Sci-Bot

https://sci-bot.ru
1•anticensor•13m ago•0 comments

Verifying your age in a privacy preserving manner

https://adayinthelifeof.nl/2026/04/27/sd-jwt.html
1•jaytaph•15m ago•0 comments

Why Neolithic Europeans Stopped Building Megalithic Tombs 5k Years Ago

https://www.iflscience.com/neolithic-europeans-suddenly-stopped-building-megalithic-tombs-5000-ye...
1•thinkingemote•20m ago•0 comments

Convicted former Harvard scientist rebuilds brain computer lab in China

https://www.reuters.com/world/china/convicted-former-harvard-scientist-rebuilds-brain-computer-la...
1•pseudolus•21m ago•0 comments

Lessons from early access to OpenAI's agent execution layer

https://deepsense.ai/blog/early-access-to-openais-agent-execution-layer-what-it-means-for-enterpr...
1•Applied_AI•23m ago•0 comments

Ask HN: Package Registry

1•ramon156•28m ago•0 comments

Ask HN: What did you streamline with AI agents?

1•Trickery5837•29m ago•0 comments

Nubo – a platform that learns your course materials, then walks you through them

https://www.nubo.so/
1•goatedcoded•30m ago•0 comments

Revealed: British ad firm's billion-dollar greenwash of US oil industry

https://www.theguardian.com/media/2026/apr/30/revealed-british-ad-firm-billion-dollar-greenwash-o...
1•ndsipa_pomu•31m ago•0 comments

A text editor as a user interface

https://ratfactor.com/cards/text-editor-as-ui
2•ingve•34m ago•0 comments

Solar Farms in Space [video]

https://www.youtube.com/watch?v=Vf_pS0XSTyo
1•simonebrunozzi•35m ago•0 comments

Meta shares slide as plan to spend billions more on AI spooks investors

https://www.bbc.co.uk/news/articles/crkpd4r2y7eo
1•rwmj•36m ago•0 comments

DataCenter.FM – background noise app featuring the sound of the AI bubble

https://datacenter.fm/
5•louisbarclay•40m ago•0 comments

LLM 0.32a0 is a major backwards-compatible refactor

https://simonwillison.net/2026/Apr/29/llm/
2•thebeardisred•42m ago•0 comments

Coding Was Never the Hard Part: What I Wish Every Business Leader Knew About AI

https://koushikdasika.com/blog/coding-was-never-the-hard-part/
2•HalcyonicStorm•43m ago•1 comments

Mozilla's Opposition to Chrome's Prompt API

https://github.com/mozilla/standards-positions/issues/1213
4•jaffathecake•49m ago•0 comments

Show HN: Pg_column_Tetris – a pg extension for optimal column alignment

https://github.com/rogerwelin/pg_column_tetris
2•rogerw•49m ago•0 comments

Reasoning compresses. Factual knowledge doesn't

https://twitter.com/bojie_li/status/2049314403208896521
2•stared•50m ago•0 comments

Nvidia releases Nemotron 3 Nano Omni multimodal model

https://blogs.nvidia.com/blog/nemotron-3-nano-omni-multimodal-ai-agents/
3•madaxe_again•54m ago•0 comments

Bouncing Droplet "Quantum Mechanics"

https://scottlocklin.wordpress.com/2026/04/28/bouncing-droplet-quantum-mechanics/
2•tosh•55m ago•0 comments

Terminal file picker and inline editor for fast CLI workflows

https://pypi.org/project/terminal-file-picker/
2•sahedwave•55m ago•0 comments

A photon was teleported across 270 meters in quantum breakthrough

https://www.sciencedaily.com/releases/2026/04/260429102030.htm
2•geox•55m ago•0 comments

Patrick Collison Reflects on Stripe Sessions

https://twitter.com/patrickc/status/2049705418436600244
2•tosh•56m ago•0 comments
Open in hackernews

Ask HN: Anyone using AI agents for active learning sprints? Here's my setup

3•bhagyeshsp•1h ago
Hi HN,

I'm a big fan of AI's ability to provide personalized tutoring.

So, lately, I have been using my Antigravity IDE (you can use any agentic harness) for personal learning. Things that bubble up during my daily work or just things I want to learn.

---

*Setup*

  learning/
  ├── AGENT.md
  ├── CURRENT.md
  ├── linux-admin/
  │   └── README.md
  ├── mcp/
  │   └── README.md
  ├── micro-gpt/
  │   └── README.md
  ├── postgresql/
  │   ├── PROGRESS.md
  │   └── README.md
  └── rag-v2/
      └── README.md
- AGENT.md: agent's role, my learning preferences and goals, instructions about different chores: sequence of files to explore and log things to

- CURRENT.md: current topic's directory path

- README.md: topic's learning goals, concepts I want to master

- PROGRESS.md: generated and edited by the agent on the fly

---

This is ACTIVE learning. As opposed to what Karpathy's LLM Wiki or any personal knowledge base does.

The learner undergoes 15-20 minutes learning sprints, tries things hands-on, asks to take notes, goes down the rabbit hole and agent tutor keeps the learning contextual and personal.

I have had an excellent experience with this setup so far.

Anyone doing this or anything similar?

Comments

blackbrokkoli•31m ago
what is your hook into such a sprint; how do you get started? Do you just prompt "so uh teach me something about linux admin" and go from there?

I think this has been my biggest hurdle with LLM-based learning, even though I think the concept may be quite powerful...

Happy to hear more about your approach :)