frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

AI is fueling Reddit's spam problem

https://mashable.com/tech/ai-fueling-reddit-spam-problem
2•mmarian•1m ago•0 comments

Tribute to Jiro Yamada, Automotive Artist (1960-2025) [video]

https://www.youtube.com/watch?v=rJ2gQ5Md60U
2•NaOH•1m ago•0 comments

Before You Add an MCP Server to Your IDE, Read the Config

https://medium.com/open-ai/before-you-add-an-mcp-server-to-your-ide-read-the-config-like-it-can-e...
2•sukhpinder0804•3m ago•0 comments

Donald Trump says US may take equity stakes in AI companies

https://www.ft.com/content/b1ab6106-77e6-4218-9eb4-e44bd56ca400
8•root-parent•11m ago•2 comments

AI Agents Now Generate More Web Traffic Than Humans

https://www.cnet.com/tech/services-and-software/its-official-agentic-bots-surf-the-web-more-than-...
3•Fake4d•13m ago•0 comments

OpenAI wrote a guide on how to use /goal mode. I made that guide into a skill

https://github.com/Infinite-Labs-OS/infinite-skills
1•RiverXR•13m ago•0 comments

OpenAI Codex Tech Lead Does AI-Assisted Engineering

https://newsletter.eng-leadership.com/p/how-openai-codex-tech-lead-does-ai
1•gregorojstersek•14m ago•0 comments

Voyd Programming Language v0.2.0 – Effect typing improvements, trailing closures

https://voyd.dev/docs/?p=releases
1•drew-y•15m ago•0 comments

P/E Tells You the Price. Reality Gap Tells You the Delusion

https://hstre.github.io/Reality-Gap/
2•hstrex•15m ago•0 comments

Morgan Stanley Sees SpaceX's Revenue Reaching $3.4T in 2040

https://www.wsj.com/finance/banking/morgan-stanley-sees-spacexs-revenue-reaching-3-4-trillion-in-...
2•logicalfails•15m ago•2 comments

Hacker News, Sans AI

https://elijahpotter.dev/articles/hacker-news-sans-AI
2•chilipepperhott•16m ago•0 comments

We built an AI sales agent so you don't have to give every demo of your product

https://salescloser.ai/hybrid-chat-va/
1•jrda•16m ago•3 comments

Saylor's Strategy Sells Bitcoin for First Time Since 2022

https://www.wsj.com/finance/currencies/saylors-strategy-sells-bitcoin-for-first-time-since-2022-0...
1•JumpCrisscross•17m ago•0 comments

Playwright for Godot

https://github.com/mrf/godot-stagehand
1•markferree•17m ago•1 comments

Meta backs off tracking workers' keystrokes after they revolt

https://boingboing.net/2026/06/03/meta-backs-off-tracking-workers-keystrokes-after-they-revolt.html
3•DropDead•18m ago•2 comments

Scale Kubernetes deployments to zero using KEDA

https://mijndertstuij.nl/posts/scale-to-zero-keda-cron-scaler/
1•speckx•28m ago•0 comments

Open Source, Co-Ops and a History of Bias in Corporate America

https://radicaltherapy.substack.com/p/open-source-co-ops-and-a-history
2•glind72•29m ago•0 comments

Department of Energy Celebrates First Advanced Reactor Criticality

https://www.energy.gov/articles/department-energy-celebrates-first-advanced-reactor-criticality
1•geox•31m ago•0 comments

Scientists Gave Cocaine to Salmon and You Will Believe What Happened

https://www.wired.com/story/cocaine-fueled-wild-salmon-swam-twice-as-far-as-sober-ones/
1•PaulHoule•32m ago•0 comments

Granite Switch: Building AI more like software

https://research.ibm.com/blog/granite-libraries-project-switch
1•yangikan•35m ago•0 comments

Bonsai Browser: Reader-mode for every page, powered by a local LLM, Nothing Else

https://drive.google.com/drive/folders/1qDYvycW4Ki0gAppMGhvSixUCioIRXcmN
2•coolwulf•35m ago•0 comments

Show HN: OWASP VulnerableApp Modern Extensible and Scalable vulnerable app

https://github.com/SasanLabs/VulnerableApp
2•newaccount12344•35m ago•0 comments

The Anatomy of a Learning Stall

https://tagide.com/blog/llm/the-anatomy-of-a-learning-stall/
1•azhenley•35m ago•0 comments

Siddhartha (1922): Competence Porn – before it was cool

https://acxreviews.robennals.org/reviews/siddhartha-1922-by-hermann-hesse
3•Gooblebrai•35m ago•0 comments

The Man Whose Job Is Making Sure We Don't Have Blackouts This Summer

https://www.wsj.com/business/blackouts-electricity-data-centers-david-mills-pjm-d1c499fe
1•impish9208•36m ago•1 comments

I Just watched "We just launched Paxel" by narrated by Garry Tan [video]

https://www.youtube.com/shorts/ywS7Ytkx3A0
1•mockingloris•37m ago•2 comments

Do I Need to Learn the Domain? Do I Want To?

https://ianmcnaughton.net/blog/do-i-need-to-learn-the-domain/
1•wc_nomad•38m ago•0 comments

I am getting sick and tired of our AI oligarchs

https://news.ycombinator.com/from?site=eversoleken.substack.com
2•kennethops•39m ago•1 comments

The Legacy of Spam

https://siderite.dev/blog/legacy-of-spam
2•speckx•39m ago•0 comments

China builds an economic fortress as global tensions rise

https://www.nytimes.com/2026/06/05/business/china-investment-rules.html
3•leonidasrup•39m ago•0 comments
Open in hackernews

Aperio: Lightweight search engine in Rust – GBs of data in < 1ms, < 256MB RAM

https://github.com/aperio-search/aperio
2•andresribeiro•1h ago

Comments

andresribeiro•1h ago
Author here. I built Aperio because Elasticsearch and even Meilisearch felt like overkill for some projects I work on.

Features:

- Typo-Tolerant Search - Autocomplete / Suggest - Multilingual - Works out of the box and can be highly configurable

Trade-offs to flag upfront:

- Ordering: only supported by ID ASC or DESC. Relevance is not supported, documents either match the query or they don't. - Filtering: Not supported directly, but you can easily bypass this by structuring your collections. For example, if you want to search messages by a specific user, you can simply create a dedicated collection named messages:[userId].

Happy to answer questions.