frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Open in hackernews

Show HN: I am self-hosting a time-sorted list of top STEM, Arts and Design posts

https://limereader.com/
2•busymom0•6h ago
I built Lime Reader, a minimal site which displays time-sorted top posts from Hacker News, Tildes, Lobsters, Slashdot, Bear, and some science, tech & programming related subreddits.

You can read more about the site by clicking the slogan at the top of my site "your daily compass for the STEAMD web":

https://limereader.com/about

Previously, I have always used Rust or NodeJS for my backend and Postgres for database.

This time, I used Swift for my backend to build a Website for the first time, used SQLite for Database, used only a single third party dependency: Vapor for web server in the Swift app, and am self-hosting it all on an old Mac mini.

I really hate huge bloated sites and also hate adding third-party frameworks unless absolutely needed. Therefore, I have engineered Lime Reader to be as small in size as possible so that it loads instantly. Both PageSpeed Insights and Pingdom rate my site's performance as Excellent.

It's server side rendered, so it works even with JavaScript disabled (though enabling it gives you a few extra features like quick access to archive.org for each link). Kind of works even with CSS disabled.

The site doesn't have any ads (I hate them and have installed ad-blockers everywhere!), no trackers, or analytics. CloudFlare automatically enables Real User Monitoring (RUM) on sites. The very first thing I did was disable this thing.

I am self-hosting the site on an old Mac mini. It's a 2020 Intel model which has a 2018 chip (Intel's 3 GHz 6-core Core i5) and 32gb ram. Qwen model takes about 5.5GB of ram usage and does my headline classification in about 2 seconds each.

The Swift app talks to a locally running Qwen3 8b LLM for classifying whether a headline is political or not. This is done over a REST API by Ollama. This seems to work pretty well and far better than Apple's Foundation Models. Originally, I tried using Apple's Foundation Models for this classification. When it worked, it worked decently well. However, many headlines (and even pretty bland headlines) would somehow trigger its guardrails. I asked Stack Overflow for help on this but as usual, they closed the question for lack of details:

https://stackoverflow.com/questions/79785822/how-to-disable-...

For example, this headline:

> SEC approves Texas Stock Exchange, first new US integrated exchange in decades

Would hits the Apple's guardrails and throw an error saying `refusal: May contain sensitive content`.

Apple does provide a "permissive guardrail mode" as per:

https://developer.apple.com/documentation/foundationmodels/i...

This does end up allowing some texts to work. However, it still failed for some other ones. That's when I gave up on using Apple's foundation models and switched to the Qwen3 8b model which had no such issues. It's pretty sad how the Foundation Models have so much potential but Apple has severely neutered them.

I originally tried the apple foundation models on my newer mac with m4 chip and once I had the issue with their guardrails, I decided to just switch to Qwen model which runs on Intel and used my old Mac mini for it.

An issue I ran into was that my Swift app was intermittently crashing. Root cause were two issues:

1. First one had to do with accessing the SQLite database from multiple threads. Apparently, for multi-threading use, SQLite needed to be initialized with a `SQLITE_OPEN_FULLMUTEX` flag.

2. Second one was a "Bad file descriptor" error from the macOS operating system itself. Had to do with a possible bug in Process.run() which would cause it to crash after some time:

https://github.com/swiftlang/swift/issues/57827

Was able to fix it using the above workaround/solution of "fileHandleForReading.close()".

Lets see how long the site stays alive now without crashing :)

Feel free to ask questions.

Show HN: A subtly obvious e-paper room air monitor

https://www.nicolin-dora.ch/blog/en-epaper-room-air-monitor-part-1/
25•nomarv•16h ago•4 comments

Show HN: RowboatX – open-source Claude Code for everyday automations

https://github.com/rowboatlabs/rowboat
43•segmenta•5h ago•10 comments

Show HN: Guts – convert Golang types to TypeScript

https://github.com/coder/guts
66•emyrk•5h ago•17 comments

Show HN: Tokenflood – simulate arbitrary loads on instruction-tuned LLMs

https://github.com/twerkmeister/tokenflood
18•twerkmeister•6d ago•0 comments

Show HN: I built a synth for my daughter

https://bitsnpieces.dev/posts/a-synth-for-my-daughter/
1243•random_moonwalk•6d ago•206 comments

Show HN: Parqeye – A CLI tool to visualize and inspect Parquet files

https://github.com/kaushiksrini/parqeye
151•kaushiksrini•1d ago•34 comments

Show HN: ESPectre – Motion detection based on Wi-Fi spectre analysis

https://github.com/francescopace/espectre
199•francescopace•1d ago•49 comments

Show HN: Continuous Claude – run Claude Code in a loop

https://github.com/AnandChowdhary/continuous-claude
157•anandchowdhary•3d ago•59 comments

Show HN: Reversing a Cinema Camera's Peripherals Port

https://3nt3.de/blog/reversing-fs7-comms
46•3nt3•1w ago•2 comments

Show HN: We built a generator for Vue+Laravel that gives you a clean codebase

https://codecannon.dev/
4•codecannon•4h ago•2 comments

Show HN: Copus – Internet gem marketplace for bookmark collectors (x402-powered)

https://www.copus.network/
2•Handuo•5h ago•0 comments

Show HN: PrinceJS – 19,200 req/s Bun framework in 2.8 kB (built by a 13yo)

https://princejs.vercel.app
145•lilprince1218•1d ago•66 comments

Show HN: I am self-hosting a time-sorted list of top STEM, Arts and Design posts

https://limereader.com/
2•busymom0•6h ago•0 comments

Show HN: Kalendis – Scheduling API (keep your UI, we handle timezones/DST)

https://kalendis.dev
17•dcabal25mh•1d ago•8 comments

Show HN: My hobby OS that runs Minecraft

https://astral-os.org/posts/2025/10/31/astral-minecraft.html
14•avaliosdev•1d ago•3 comments

Show HN: Strawk – I implemented Rob Pike's forgotten Awk

4•ahalbert2•9h ago•0 comments

Show HN: Building WebSocket in Apache Iggy with Io_uring and Completion Based IO

https://iggy.apache.org/blogs/2025/11/17/websocket-io-uring/
26•spetz•1d ago•6 comments

Show HN: Bsub.io – zero-setup batch execution for command-line tools

21•wkoszek•1d ago•8 comments

Show HN: Octopii, a framework for building distributed applications in Rust

20•janicerk•1d ago•3 comments

Show HN: Agfs – Aggregated File System, a modern tribute to the spirit of Plan9

https://github.com/c4pt0r/agfs
9•c4pt0r•23h ago•0 comments

Show HN: How are Markov chains so different from tiny LLMs?

15•JPLeRouzic•1d ago•1 comments

Show HN: Unflip – a puzzle game about XOR patterns of squares

https://unflipgame.com/
177•bogdanoff_2•1w ago•51 comments

Show HN: Model-agnostic cognitive architecture for LLMs

https://github.com/scottonanski/persistent-mind-model-v1.0
4•HimTortons•23h ago•0 comments

Show HN: I have created an alternative for Miro

https://nodeland.io
7•gxara•1d ago•2 comments

Show HN: Blindfold Chess App

https://www.psochess.com/
5•psovit•18h ago•1 comments

Show HN: I build a strace clone for macOS

https://github.com/Mic92/strace-macos
8•Mic92•1d ago•0 comments

Show HN: UltraLocked – iOS file vault using Secure Enclave and PFS

https://github.com/UltraLocked/UltraLocked
6•proletarian•1d ago•2 comments

Show HN: Discussion of ICT Model – Linking Information, Consciousness and Time

https://www.academia.edu/s/8924eff666
2•DmitriiBaturo•21h ago•0 comments

Show HN: Encore – Type-safe back end framework that generates infra from code

https://github.com/encoredev/encore
76•andout_•4d ago•47 comments

Show HN: DBOS Java – Postgres-Backed Durable Workflows

https://github.com/dbos-inc/dbos-transact-java
114•KraftyOne•5d ago•57 comments