frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

A walking tour of surveillance infrastructure in Seattle

https://coveillance.org/a-walking-tour-of-surveillance-infrastructure-in-seattle/
1•eustoria•41s ago•0 comments

Show HN: I built a waitlist tool with Claude as a non-technical founder

https://waitspot.io
1•trungnx2605•50s ago•0 comments

Show HN: ASys – A typed binary protocol for AI agents to operate servers(no SSH)

https://github.com/vincentping/asys
1•vincentping•51s ago•0 comments

Lost in the Middle: Why LLMs Forget What They Just Read

https://cristobalsantana.substack.com/p/lost-in-the-middle-why-llms-forget
1•csantana_ml•1m ago•0 comments

Life saving / first aid posters

1•cpu_•2m ago•0 comments

Prove Alignment, Then Let the Agent Merge

https://isaackabuika.substack.com/p/let-the-agent-merge
1•kabuika•4m ago•0 comments

Open-source AI Sales Agent with Next.js 15 and Ollama – zero API costs

https://github.com/Dvbxtreme/ai-sales-agent
1•sdev99•4m ago•0 comments

Practicing What We Preach – Validating Our AI Assistant Content

https://lyfe.ninja/news/#we-practice-what-we-preach
1•lyfeninja•4m ago•0 comments

Code.org Rebrands as CodeAI

https://code.org/en-US/codeorg-is-now-codeai
1•njoyablpnting•4m ago•0 comments

No Linux support on free version of Vivado 2026.1

https://www.amd.com/en/products/software/adaptive-socs-and-fpgas/vivado/vivado-licensing-options....
1•birdculture•6m ago•0 comments

Show HN: AERF, signed receipts for AI agent actions

https://github.com/aerf-spec/aerf
1•keertahacker•6m ago•0 comments

Detecting fraud rings: the social-graph problem in disguise

https://analytics.fixelsmith.com/posts/fraud-rings/
1•analyticsfs•8m ago•0 comments

University of California Professors Are Begging Schools to Reinstate the SAT

https://www.wsj.com/us-news/education/university-california-sat-requirement-reinstate-c3e32712
1•fortran77•9m ago•1 comments

Social Cache Busting

https://www.autodidacts.io/social-cache-busting/
1•surprisetalk•9m ago•0 comments

Expanding Project Glasswing

https://www.anthropic.com/news/expanding-project-glasswing
2•surprisetalk•9m ago•0 comments

CISA flags two-year-old Oracle flaw as actively exploited in attacks

https://www.bleepingcomputer.com/news/security/cisa-orders-feds-to-patch-actively-exploited-oracl...
1•Brajeshwar•9m ago•0 comments

Book Review: Twelve Rules for Life

https://slatestarcodex.com/2018/03/26/book-review-twelve-rules-for-life/
1•MrBuddyCasino•11m ago•0 comments

Hammers Without Handles: Linux UX Sucks

https://gardinerbryant.com/hammers-without-handles-linux-ux-sucks/
2•HotGarbage•12m ago•0 comments

Twelve Ways to Be Wrong About AI-Assisted Coding

https://third-bit.com/2026/05/20/twelve-ways-to-be-wrong/
1•tatersolid•12m ago•0 comments

State of the Fossil-Free Internet Report

https://fossilfree.greenweb.org/2026/
1•speckx•13m ago•0 comments

Turn your voice into a waveform video, in the browser

https://voicetowaveform.com/
2•lukegabriel•14m ago•0 comments

Show HN: Rustgate – Bypassing Python's event loop for token-aware rate limiting

https://github.com/MordechaiHadad/rustgate
1•MordechaiHadad•14m ago•0 comments

Plant Your Seeds in the Radicle Garden

https://radicle.dev/2026/06/02/announcing-radicle-garden
1•Tmpod•15m ago•0 comments

Show HN: Parley – code review TUI for AI code

https://parley.cloudflavor.io
1•pi-victor•17m ago•0 comments

Radxa Dragon Q8B Released:8cx Gen3 with 4xX1@3.0Ghz+4xA78@2.4Ghz

https://radxa.com/products/dragon/q8b/
1•gainsurier•17m ago•0 comments

Show HN: GridPath – AI first desktop app to work with spreadsheets

https://gridpath.dev/
1•pixelmash13•18m ago•0 comments

MilanSQL – A custom C++17 relational database engine running in the browser

https://github.com/haidari9819-lang/milansql
1•haidari9819•19m ago•0 comments

Show HN: Ariadne – reason about your codebase on a walk, run, or commute

1•Ravindhran•20m ago•0 comments

Show HN: TLD – codebase visualization and software diagramming to manage slop

https://github.com/Mertcikla/tld
1•mertcikla•20m ago•0 comments

How HN: I turned 1,063 reported purchases into a satirical online shop

https://murrells.shop/
1•mrroryflint•21m ago•1 comments
Open in hackernews

Show HN: Jørnal, a journaling app where the page is always blank

https://jornal.ink
3•tskj•1h ago
Journaling in the digital world quickly becomes editing or second-guessing what to write. Freedom is bad. So I flipped it: as a side project I've been working on a simple journaling app where the page is always blank, and what you write is immutable.

It tries super hard to always keep whatever you write and never lose your words. The editor of course always stores in local storage to guard against accidental tab closes; there's a queue that lets you write offline and drains it on the backend; idempotency guarantees uniqueness and eventual consistency. As a bonus to me the developer, having immutable entries makes cross-device synchronization trivial.

You can use it without an account, but you can sign in with Google or GitHub SSO or get emailed a magic link if you want access to your writing across devices.

Entries are slightly obfuscated at rest, but not encrypted—I've been too scared of losing the master key. I'm considering adding E2EE as an option for users who understand what they're doing, but it's a hard UX problem to communicate the risk properly (you're responsible for the key and I can't help you if you lose it).

It also supports semantic search over all your previous entries: when you hit ctrl/cmd+enter to submit, a background task runs that embeds each paragraph with Hugging Face transformers + ONNX runtime and stores the results in Postgres. Did you know Postgres has built in support for querying vectors by cosine similarity? Literally an index for that!

Then I got scope creeped because I thought it was cool, so I added the same for photos: CLIP embedding does the same thing for semantic search in visual space. (works better in English, I struggled to find models that worked for multiple languages that worked with this setup)

The embeddings run locally on my server. No AI providers or anything, nothing leaves the server ever.

The app is free, but I added a $4/month to help run the server. As mentioned, just a side project, I have but a single paid user.

(The curly twirlys turned out to be a very fun generative art project, probably spent way too much time on that part.. it's not even my style! (as a median age, median gender, median weight software developer) But I thought they fit the vibe I was going for. If anyone's interested I can share the maths and the working out.)

Comments

zkrause33•26m ago
This is a great for brainstorming. I often mind myself being influenced on previous notes I made. I do this on a daily basis so my thoughts one day may be different than the next. A forced blank slate allows for new unique ideas everytime. I like this.
tskj•18m ago
I'm glad you like it. I feel validated not being the only one!