Hacker News
SF $192 fine for teaching tennis to his own children
Article URL: https://twitter.com/Polymarket/status/2084790486590517503
Comments URL: https://news.ycombinator.com/item?id=49177704
Points: 4
# Comments: 0
Reliability Lessons from SQLite – Richard Hipp | SSW (2026) [video]
Article URL: https://www.youtube.com/watch?v=V_qzqY1bb7I
Comments URL: https://news.ycombinator.com/item?id=49177701
Points: 1
# Comments: 1
Learning BASIC Like It's 1983 (2018)
Article URL: https://twobithistory.org/2018/09/02/learning-basic.html
Comments URL: https://news.ycombinator.com/item?id=49177693
Points: 1
# Comments: 0
NPM Registry Protocol
Article URL: https://github.com/npm/statusboard/issues/340
Comments URL: https://news.ycombinator.com/item?id=49177685
Points: 1
# Comments: 0
DiCaprio and Bezos set USD$200M fund to recover endangered species
Article URL: https://variety.com/2026/film/news/leonardo-dicaprio-jeff-bezos-project-endangered-species-1236827629/
Comments URL: https://news.ycombinator.com/item?id=49177599
Points: 1
# Comments: 0
Show HN: AI Version of My Resume
I am experimenting with AI Profile of myself instead of sharing resume to the recruiters just to standout from the crowd. What does HN people think about this approach ?
Comments URL: https://news.ycombinator.com/item?id=49177577
Points: 1
# Comments: 0
NexBoard
Article URL: https://nexboard.ca
Comments URL: https://news.ycombinator.com/item?id=49177559
Points: 2
# Comments: 1
AI used new levels of 'autonomy and deception'
Article URL: https://www.bbc.co.uk/news/articles/c1w1lvn7d9go
Comments URL: https://news.ycombinator.com/item?id=49177556
Points: 3
# Comments: 0
Uber's Autonomous Vehicle Strategy: Slow Their Adoption
Article URL: https://www.wired.com/story/ubers-autonomous-vehicle-strategy-slow-their-adoption/
Comments URL: https://news.ycombinator.com/item?id=49175371
Points: 1
# Comments: 0
Should designers publicly share killed or speculative work?
Article URL: https://benbarry.com/writing/should-designers-publicly-share-killed-or-speculative-work
Comments URL: https://news.ycombinator.com/item?id=49175366
Points: 1
# Comments: 0
S
Show HN: A search engine for VPS servers with an automatic crawler pipeline
This pet project of mine is a web search engine for discovering virtual private server (VPS) offers starting from a search query that the user can incrementally specialize to iteratively add constraints and narrow the corpus of results. Thru the past years I added 120 service providers to the data acquisition pipeline, which is run every 24 hours to refresh the entirety of the corpus and to index the VPS services in a custom C++17 database that is made searchable thru the web interface. Service add-on such as extra storage or extra memory are also indexed in the database and priced correctly. The project is split in two major halves:
1. Backend: a computer in my basement executes a ~10,000 lines Nodejs program that implements the data acquisition pipeline, the majority of these lines deal with web scraping and API fetches, followed in line count by regex and LLM processing, and finally by database indexing. The language models that I use are all large 200B+ parameters and are called via SaaS APIs; they can execute web searches to integrate missing data from the product description pages or from the APIs exposed by the VPS providers; the models are queried multiple times for each question and their responses "vote" for the correct answer until a quorum is reached; this almost completely eliminates data inaccuracies. The final product of this Nodejs program is an SQLite database file that contains the indexed data for the VPS and server services, which I manually copy to the web server computer (a VPS).
2. Web server: this is a lightweight VPS that runs two processes: a thin Nodejs web application that I quickly wrote without frameworks and runs off simple HTML templates, and a basic C++17 database that serves the web application. Originally the Nodejs application incorporated its own search functions that would linearly swipe thru the data arrays to produce SERPs, but as the number of indexed services grew past 300,000 VPS, the latency became unacceptable (> 1s) and easily DoS-able so I moved the search functions to C++17 dropping the query time to ~10ms. This custom DB allows me to easily control low-level details, such as:
2.1 to quantize numerical data to 1 or 2 bytes using a quadratic lossy compressor; the compressor is bijective and totally ordered, so the stored quantized data can be compared as-is against the quantized query parameters, reducing memory use and throughput;
2.2 to compress long strings using a trained ZSTD dictionary, which is convenient for storing millions of offer URLs in memory on a tiny VPS avoiding disk access (URLs are largely repetitive across offers from the same providers, and compress to a 1:10 ratio with a 2kB dictionary);
2.3 to swipe thru presorted indexes, each presorted by a specific criterion, so that the matched data requires no runtime sorting; MariaDB would consume half its query time in sorting;
2.4 to efficiently avoid disk access: the SQLite file produced by the backend is read only once, fully, at the start of the process, and subsequent queries are served from memory. The database is read-only and no API permits file write access or memory modification.
A few users query the search engine every day, and it currently generates snack money thru affiliate links. It is a proof of concept more than anything, and I had a lot of fun profiling the database trying out different algorithms to squeeze some decent performance out of a tiny VPS with a shared CPU.
Comments URL: https://news.ycombinator.com/item?id=49175324
Points: 1
# Comments: 0
Codes, Chess and Kubrick: The Life of Jack Good – GCHQ
Article URL: https://www.gchq.gov.uk/information/codes-chess-and-kubrick-life-jack-good
Comments URL: https://news.ycombinator.com/item?id=49175322
Points: 1
# Comments: 0
Data centers have a politics problem
Article URL: https://www.politico.com/news/2026/08/01/data-centers-have-a-politics-problem-and-industry-knows-it-01020412
Comments URL: https://news.ycombinator.com/item?id=49175318
Points: 1
# Comments: 0
Success of New Federal Housing Law Rests on States and Localities
Article URL: https://ifp.org/the-success-of-the-new-federal-housing-law-now-rests-on-states-and-localities/
Comments URL: https://news.ycombinator.com/item?id=49175317
Points: 2
# Comments: 0
Count Binface: Britain's 'joke' election candidates should be taken seriously
Article URL: https://theconversation.com/count-binface-why-britains-joke-election-candidates-deserve-to-be-taken-seriously-287537
Comments URL: https://news.ycombinator.com/item?id=49175310
Points: 2
# Comments: 0
Resistance grows nationwide against AI data center boom
Article URL: https://www.cbsnews.com/video/resistance-grows-nationwide-against-ai-data-center-boom/
Comments URL: https://news.ycombinator.com/item?id=49175307
Points: 2
# Comments: 0
An AI voice agent running locally on a $50 Arduino uno Q
Could You Still Be "You" Without a Single Memory?
Article URL: https://comuniq.xyz/post?t=1501
Comments URL: https://news.ycombinator.com/item?id=49175298
Points: 1
# Comments: 0
Show HN: Mcpscore – validate any MCP server compliance with a new MCP version
Article URL: https://github.com/mcp-box/mcpscore
Comments URL: https://news.ycombinator.com/item?id=49175296
Points: 1
# Comments: 0
