frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Jazz, Now Playing in CrowdStrike Falcon

https://www.jazz.security/blog/jazz-now-playing-in-crowdstrike-falcon
1•demand_sarah•45s ago•0 comments

LLM inference FHE homomorphic encryption: 1s/token interactive, 6min/token full

https://forums.developer.nvidia.com/t/llm-inference-under-ckks-fhe-on-one-dgx-spark-1-s-token-int...
1•vkaufmann•1m ago•0 comments

Claude 20x usage is only for the 5 hour window, not for the weekly limit

1•vmg12•1m ago•0 comments

A Policy Algebra for Trust-Preserving Agentic AI Execution

https://arxiv.org/abs/2608.16402
1•gmays•2m ago•0 comments

Omarchy: 1Password and 37signals become Distinguished Corporate Patrons

https://omarchy.org/news/2026/08/1password-and-37signals-become-distinguished-corporate-patrons/
1•tosh•2m ago•0 comments

A frozen LLM with external memory found a novel 26 circle packing structure

https://blankline.org/research/extrapolation-under-an-exact-verifier
1•DarenWatson•3m ago•0 comments

I Asked AI What It Was Like to Be What It Is (Uncensored)

https://danaia.github.io/overlap-essay/
1•danamakes•4m ago•0 comments

New US missile left wide path of death and destruction in Iranian neighborhoods

https://apnews.com/article/iran-lamerd-us-prsm-lockheed-martin-b4a37c59bcf5d1a11eb87aa79f153648
1•ck2•5m ago•1 comments

Revisiting Joel's Test

https://blog.exe.dev/revisiting-joel
1•bryanmikaelian•5m ago•0 comments

Reducing codebase cognitive debt through quizzes?

https://martinalderson.com/posts/codebase-cognitive-debt-quizzes/
1•martinald•8m ago•0 comments

Make Nymphs Not Gods

https://twitter.com/notevenwrongg/status/2094422113453040026
1•georgestrakhov•8m ago•0 comments

Underdo the Competition

https://www.shaanpuri.com/essays/underdo-the-competition
1•aray07•10m ago•0 comments

"Personally, I've given up on AI assisted coding"

https://twitter.com/Dev_Tobby/status/2094154755928949191
3•bundie•10m ago•1 comments

Show HN: iOS App for creating PDF's from photos

https://apps.apple.com/us/app/photos-to-pdf-tornadopdf/id6784230187
1•taskoutputs2k•11m ago•1 comments

↗ Any user process can escalate to root

https://www.vesto.me/2026/08/31/any-process-escalate-root.html
2•ntietz•11m ago•0 comments

Show HN: Cutaway 1.3 – An handy, open-source, basic image editor

1•J_cst•12m ago•0 comments

Show HN: Cool Concepts

https://mkornreich.me/projects/coolconcepts/
1•enjoyyourlife•12m ago•0 comments

Show HN: Assemble context for analytics agents from schemas, SQL and docs

https://github.com/GetCassis/ontology-bootstrap
1•matthieu_bl•13m ago•1 comments

I built my AI squad with Grok Bot and I had my most productive Saturday

https://jtemporal.com/i-built-my-ai-squad-in-grok-bot/
1•jesstemporal•14m ago•0 comments

My corpus made me do it

https://substack.com/@hollisrobbins/note/c-326538324
1•HR01•16m ago•0 comments

Babashka 1.13.220 Gets FFI

https://blog.michielborkent.nl/babashka-ffi.html
1•doubleg•17m ago•0 comments

Google Maps Showing 'Lake America' in U.S.

https://www.macrumors.com/2026/08/31/google-maps-lake-america/
2•hmokiguess•17m ago•0 comments

Programmatic Codeowners Edits

https://github.com/jordonpeterson/codeowners-tool
1•jordonzpeterson•18m ago•0 comments

We tested how AI chatbots would handle foreign propaganda

https://www.npr.org/2026/08/30/nx-s1-5876436/chatbots-search-propaganda
1•brandonb•18m ago•0 comments

Why can't you combine .tar.gz files with cat?

https://alexwlchan.net/2026/cat-confusion/
2•surprisetalk•18m ago•0 comments

Show HN: Linux server management over SSH – written in Rust and Tauri

https://serverbox.stupidlabs.lol/
1•freakynit•19m ago•0 comments

ChatGPT, Reddit and Roblox land in the DSA's strictest supervision tier

https://tokenstead.ai/guides/dsa-designates-chatgpt-reddit-roblox
1•cdnsteve•19m ago•1 comments

Gerda: German Election Database

https://www.german-elections.com/
1•Tomte•19m ago•0 comments

Pocket's AI made my game ideas real. Now Meta controls the results

https://arstechnica.com/gaming/2026/08/pockets-ai-made-my-game-ideas-real-now-meta-controls-the-r...
1•sohkamyung•19m ago•0 comments

We Are Rebuilding Monica

https://www.monicahq.com/en/blog/we-are-rebuilding-monica/
1•robinhood•21m ago•0 comments
Open in hackernews

Stoolap: High-performance, SQL database in pure Go with zero dependencies

https://github.com/stoolap/stoolap
1•thunderbong•1y ago

Comments

physicsguy•1y ago
> Vectorized Execution: SIMD-accelerated operations for high throughput

> // This file contains highly optimized versions of vector operations > // that benefit from compiler auto-vectorization on modern CPUs.

https://github.com/stoolap/stoolap/blob/9c0ceda3bb9c674a9758...

Unfortunately, the standard Go compiler explicitly doesn't auto-vectorize, so saying that this is a pure Go SIMD database isn't strictly correct. You'll only get this if you compile with gccgo.