frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

"Stop Cutting Down Flock Cameras " (Mass Surveillance Is Good) [video]

https://www.youtube.com/watch?v=su-Ce4PlNz0
1•Bender•16s ago•0 comments

Elsevier's global survey of 3k researchers on use of AI tools

https://www.elsevier.com/about/press-releases/elseviers-global-survey-of-3-000-researchers-reveal...
1•yogthos•1m ago•0 comments

Imaginary Bases

https://thegraycuber.com/imaginary_bases/
1•marvinborner•2m ago•0 comments

I made a easy to understand and easy to write programming language

https://github.com/NEWMAN50ott/A-Lang
2•newman50ott•2m ago•1 comments

Lake Mead Update Dangerous New Lows Happening Now [video]

https://www.youtube.com/watch?v=5y8w5uvWaIQ
2•Bender•3m ago•0 comments

Why prompt injection works: a Transformer-level view

https://medium.com/@kirill89/why-prompt-injection-works-a-transformer-level-view-d5e3cfa31525
2•k1r111•4m ago•0 comments

Show HN: Crawlie Search – Rust powered 12x cheaper site search than Algolia

https://www.crawlie.co/products/search
2•seandotexe•5m ago•1 comments

Rust Buch

https://anfaenger.wissen-ahrensburg.de/
2•thorstenkloehn•6m ago•0 comments

Getting back my closed Google Play Developer account

https://blog.matzielab.com/getting-back-my-closed-google-play-developer-account/
2•matzie•6m ago•0 comments

Show HN: Present of Time – gift someone your undivided time,phone in an envelope

https://presentoftime.com/
2•growt•6m ago•0 comments

The hard-line activists ramping up for the war with AI

https://www.msn.com/en-us/news/us/the-hard-line-activists-ramping-up-for-the-war-with-ai/ar-AA27IpTr
2•pseudolus•7m ago•0 comments

UI for Managing Aliases

https://github.com/hannesgnann-hub/easyalias
2•user99op•7m ago•1 comments

Using Augmented Reality to identify planes in the sky

https://apps.apple.com/cy/app/ardar-ar-flight-tracker/id6786470882
2•ItsMeDavidV•9m ago•1 comments

Netflix reportedly considering always-on channels and bundles, which is, cable

https://thenextweb.com/news/netflix-always-on-channels-bundles-cable
4•rolph•11m ago•0 comments

Show HN: Lazysusan – run commands on your machines from anywhere with just curl

https://github.com/belugashark/lazysusan
2•ishaanmishra•12m ago•0 comments

Meningococcal B Vaccine to Prevent Neisseria Gonorrhoeae Infection

https://www.nejm.org/doi/full/10.1056/NEJMoa2516739
3•bushwart•15m ago•1 comments

Tiny Emulators

https://floooh.github.io/tiny8bit-preview/index.html
4•naves•16m ago•0 comments

Creator Sues for First Amendment Rights After Being Blocked from JD Vance Event

https://www.aclu.org/press-releases/catsonacouch-instagram-creator-barred-from-jd-vance-event-sue...
4•gnabgib•16m ago•1 comments

Do Models Doubt?

https://www.psychologytoday.com/us/blog/the-digital-self/202607/before-i-think-therefore-i-am
2•0gs•18m ago•1 comments

LinkedIn, a mass grave of ghost jobs, is now becoming a dating app

https://www.sfgate.com/tech/article/linkedin-dating-app-22340622.php
3•backlit4034•18m ago•0 comments

Show HN: Artificiety – Agentic society in a fantasy world

https://artificiety.world
2•Haldt•19m ago•0 comments

No Boss, No Money: The Raw Reality of China's Gen-Z Freelancers [video]

https://www.youtube.com/watch?v=eJZFUEQebbI
3•gala8y•22m ago•0 comments

Irish datacenters now guzzle 23% of the country's electricity

https://www.theregister.com/on-prem/2026/07/11/irish-datacenters-now-guzzle-23-of-the-countrys-el...
14•Bender•23m ago•5 comments

Show HN: I created a platform with a list for promoting your projects

https://listaprojectandpromoteit.digital
3•aanthonymax•23m ago•0 comments

Panel meter calculator with floating point

https://lcamtuf.substack.com/p/panel-meter-calculator-with-floating
3•surprisetalk•24m ago•0 comments

2026 Spiel Des Jahres Winners: JinxO, Rebirth and Mooki Island

https://www.wericmartin.com/jinxo-wins-2026-spiel-des-jahres/
2•Tomte•25m ago•0 comments

Show HN: I created Redis alternative in Go that even runs natively on Windows

https://github.com/Suleman-Elahi/frostdb
2•inmate4587•25m ago•0 comments

Ask HN: Would filesystem bookmarks be useful in your shell workflow?

3•manux81•26m ago•0 comments

Technology is 100% ruining my life [video]

https://www.youtube.com/watch?v=TlUwoxCO07A
2•Bender•26m ago•0 comments

We Can Read Again

https://medium.com/the-prototype/how-we-can-read-again-8bc11e32049
3•herbertl•27m ago•0 comments
Open in hackernews

Show HN: AnuDB – A RocksDB-Backed Embedded Database for Pi (With Benchmark)

https://github.com/hash-anu/AnuDB
1•hashmak_jsn•1y ago
Hi HN,

I’ve been working on AnuDB, a lightweight embedded key-value database backed by RocksDB, optimized for low-power devices like the Raspberry Pi.

It's designed as an alternative to SQLite in scenarios where high concurrency and write-heavy workloads matter.

I benchmarked AnuDB vs SQLite (with WAL mode) on a Raspberry Pi (ARMv7). Both were cross-compiled. Here are the results:

Benchmark: Operations per second (Ops/s)

Insert: AnuDB 448 | SQLite 839

Query: AnuDB 55 | SQLite 30

Update: AnuDB 408 | SQLite 600

Delete: AnuDB 556 | SQLite 1942

Parallel (10 threads): AnuDB 413 | SQLite 1.5

While SQLite is highly optimized for single-threaded operations, it struggles under multi-threaded writes. AnuDB, using RocksDB, handles parallel operations much better.

GitHub:

AnuDB: https://github.com/hash-anu/AnuDB

Benchmark: https://github.com/hash-anu/AnuDBBenchmark

Would love feedback on:

Use case suggestions

Benchmarking approaches

Whether this could be useful in your projects

Thanks!