frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

Learn Commodore 64 Basic Programming – Type-In Text-Based Games

https://retrogamestart.com/answers/learn-commodore-64-basic-programming-type-text-based-games
1•austinallegro•1m ago•0 comments

Intel slashes 584 California jobs as CEO says company no longer a top chipmaker

https://www.sfchronicle.com/tech/article/intel-california-layoffs-crisis-20764902.php
1•akyuu•5m ago•0 comments

ARM64 LDR (load register) and STR (store register) instructions

https://www.brief-ds.com/2025/07/14/arm64-ldr-and-str.html
1•brief-ds•6m ago•0 comments

Reddit starts verifying ages of users in the UK

https://www.bbc.co.uk/news/articles/cj4ep1znk4zo
1•wodow•6m ago•0 comments

Gigabyte motherboards vulnerable to UEFI malware bypassing Secure Boot

https://www.bleepingcomputer.com/news/security/gigabyte-motherboards-vulnerable-to-uefi-malware-bypassing-secure-boot/
2•akyuu•6m ago•0 comments

Show HN: Limotein, AI-powered food tracker (voice, photo, or text input)

https://limotein.com/
1•maskar•7m ago•0 comments

An 'Etymology Nerd' Breaks Down Slang Like 'Skibidi' and 'Rizz' on Social Media

https://www.nytimes.com/2025/07/12/style/algospeak-etymology-nerd-adam-aleksic-slang.html
1•tysone•8m ago•0 comments

Clang: -Wexperimental-lifetime-safety: Experimental C++ Lifetime Safety Analysis

https://github.com/llvm/llvm-project/commit/3076794e924f
1•matt_d•10m ago•1 comments

Apple's MLX adding CUDA support

https://github.com/ml-explore/mlx/pull/1983
1•nsagent•12m ago•0 comments

Qlass: VQE on glass and other photonic quantum devices

https://github.com/unitaryfoundation/qlass
1•westurner•14m ago•1 comments

Ask HN: What are your favorite coding tools?

2•codingclaws•15m ago•4 comments

PHP License Update

https://wiki.php.net/rfc/php_license_update
3•josephwegner•15m ago•0 comments

Dog Walk: Blender Studio's official game project

https://blenderstudio.itch.io/dogwalk
3•doener•19m ago•0 comments

Coming to ISO C++ 26 Standard: An AI Acceleration Edge

https://thenewstack.io/coming-to-iso-c-26-standard-an-ai-acceleration-edge/
1•olemindgv•19m ago•1 comments

Chronic heat stress facilitates triglyceride biosynthesis in broiler chickens

https://www.nature.com/articles/s41598-025-03439-0
1•PaulHoule•20m ago•0 comments

Prominent EU politician stands up for Stop Killing Games

https://www.pcgamer.com/gaming-industry/a-game-once-sold-belongs-to-the-customer-prominent-eu-politician-stands-up-for-stop-killing-games/
1•doener•22m ago•0 comments

Browser Wars 2.0

https://twitter.com/TenZorroAI/status/1944871327195656609
1•paulo20223•23m ago•0 comments

A universal interface connecting you to today's AI models

https://tenzorro.com/en/models
1•paulo20223•23m ago•0 comments

Cavitation and How Does It Affect Ship Cruising Speed?

https://www.slashgear.com/1910963/ship-cavitation-what-is-it-how-it-affects-speed/
1•Bluestein•23m ago•0 comments

When blood hits clothes, physics takes over Researchers fired blood at fabrics

https://www.popsci.com/science/bloodstains-crime-scene-forensic/
1•Bluestein•26m ago•0 comments

Security behind decision to end DoD's satellite data sharing

https://www.theregister.com/2025/07/07/cyber_security_behind_dod_satellite_data_cutoff/
2•rbanffy•27m ago•1 comments

Intros to VC – Help

1•ronakronak•27m ago•0 comments

Masterclass on user experience for garbage collection

https://www.youtube.com/watch?v=dSLe6G3_JmE
1•seinecle•28m ago•0 comments

Seeking AI chat-driven fiction community

1•bgilroy26•28m ago•1 comments

Llmnop, a tiny Rust rewrite of LLMPerf

https://github.com/jpreagan/llmnop
1•jpreagan•32m ago•1 comments

Alternate Reality – Ubuntu with Plasma

https://www.dedoimedo.com/computers/linux-alternate-reality-ubuntu-with-plasma.html
1•fuck_AI•34m ago•0 comments

Review: Of Mice, Mechanisms, and Dementia

https://www.astralcodexten.com/p/your-review-of-mice-mechanisms-and
1•andromaton•34m ago•0 comments

Dietary Mycotoxins: An Overview with Emphasis on Aflatoxicosis in Humans

https://pmc.ncbi.nlm.nih.gov/articles/PMC11598113/
1•pera•36m ago•0 comments

Anthropic, Google, OpenAI and XAI Granted Up to $200M from Defense Department

https://www.cnbc.com/2025/07/14/anthropic-google-openai-xai-granted-up-to-200-million-from-dod.html
36•ChrisArchitect•36m ago•1 comments

A bionic knee integrated into tissue can restore natural movement

https://news.mit.edu/2025/bionic-knee-integrated-into-tissue-can-restore-natural-movement-0710
4•gmays•44m ago•0 comments
Open in hackernews

What every developer needs to know about in-process databases

https://www.graphgeeks.org/blog/what-every-developer-needs-to-know-about-in-process-dbmss
12•semihs•2mo ago

Comments

semihs•2mo ago
In-process (aka embedded/embeddable) databases are not new. In fact SQLite is the most widely deployed database in the world. However, starting with DuckDB, there is a new set of in-process database systems, such as Kuzu and Lance. As a co-developer of Kuzu, I hear several frequently asked questions (some of which are misconceptions) about in-process databases.

- What are their advantages/disadvantages compared to client-server databases? - Does in-process mean databases are in-memory/ephemeral? (NO!) - Can in-process databases handle only small amounts of data? (NO!) - What are some common use cases of in-process databases? - What if my application needs a server?

I tried to answer some of these questions in a blog post with pointers to several other resources that articulate several of these points in more detail than I get into.

I hope it's helpful to clarify some of these questions and help developers position in-process DBMSs against client-server ones.

emmanueloga_•2mo ago
The article suggests running Kuzu in a FastAPI frontend for network access. A caveat: production Python servers like Uvicorn [1] typically spawn multiple worker processes.

A simple workaround is serving HTTP through a single process language like Go or JavaScript, since Kuzu has bindings for both. Other processes could access the database directly in read-only mode for analysis [2].

For better DX, the ideal would be Kuzu implementing the Bolt protocol of Neo4J directly in the binary, handling single-writer and multi-reader coordination internally. Simpler alternative: port the code from [3] to C++ and add a `kuzu --server` option.

--

1: https://fastapi.tiangolo.com/deployment/server-workers/#mult...

2: https://docs.kuzudb.com/concurrency/#scenario-2-multiple-pro...

3: https://github.com/kuzudb/explorer/tree/master/src/server

semihs•2mo ago
Yes this makes sense and we plan to eventually do something along what you are suggesting. We also have a plan to have a built-in server/GUI, where users can directly launch a web-based explorer through our CLI by typing "kuzudb -ui".
emmanueloga_•2mo ago
That sounds great!