frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Program to help AI researchers build AI safety and alignment startups

https://www.fiftyyears.com/5050/ai
1•sethbannon•4m ago•0 comments

Gauss, an Agent for Autoformalization

https://www.math.inc/gauss
1•frozenseven•6m ago•0 comments

Disposable Code Is Here to Stay, but Durable Code Is What Runs the World

https://www.honeycomb.io/blog/disposable-code-is-here-to-stay
1•mooreds•8m ago•0 comments

I Rode Honda's Uni-One 'Mobility Device.' It's Coming to the US for Lease-Only

https://insideevs.com/news/693503/honda-uni-one-scooter-mobility/
1•rawgabbit•10m ago•0 comments

iPhone 17 Air Drops Physical SIM Slot Globally, Pushing ESIM-Only Future

https://tech.yahoo.com/phones/articles/apples-move-esim-only-strengthens-191518223.html
2•m463•11m ago•0 comments

Data Colonialism Is, Unfortunately, a Thing [video]

https://www.youtube.com/watch?v=oLayDwvANyc
1•surprisetalk•12m ago•0 comments

Death of the Holocaust Industry

https://twitter.com/ChrisLynnHedges/status/1966118623136854131
3•ibobev•14m ago•0 comments

Show HN: Ainews247.org – the best, most valuable, fun, AI content, aggregated

https://ainews247.org
1•computerex•15m ago•0 comments

US Warns Hidden Radios May Be Embedded in Solar-Powered Highway Infrastructure

https://www.reuters.com/legal/government/us-warns-hidden-radios-may-be-embedded-solar-powered-hig...
5•m463•15m ago•1 comments

Lead-In to Brain-Computer Interface. How to Measure BioData

https://www.udemy.com/course/introduction-to-brain-computer-interface-how-to-measure-eeg/?couponC...
1•GaredFagsss•16m ago•1 comments

A Lightweight License Plate Recognition Method Based on YOLOv8

https://www.mdpi.com/2079-9292/14/17/3482
1•PaulHoule•17m ago•0 comments

LLM Benchmark and Optimization Explorer

https://www.bentoml.com/llm-perf/
1•tanelpoder•19m ago•0 comments

AI tool detects LLM-generated text in research papers and peer reviews

https://www.nature.com/articles/d41586-025-02936-6
1•rntn•20m ago•0 comments

What Every Programmer Should Know About Memory (2007) [pdf]

https://people.freebsd.org/~lstewart/articles/cpumemory.pdf
4•pykello•23m ago•0 comments

AI Moderation: Inconsistencies in Hate Speech Detection Across LLM-Based Systems

https://aclanthology.org/2025.findings-acl.1144/
1•giuliomagnifico•24m ago•0 comments

Randomly selecting points inside a triangle

https://www.johndcook.com/blog/2025/09/11/random-inside-triangle/
2•ibobev•25m ago•0 comments

Brazil's Supreme Court finds Bolsonaro guilty of plotting military coup

https://www.theguardian.com/world/2025/sep/11/brazil-supreme-court-bolsonaro-guilty-coup
12•CXSHNGCB•26m ago•2 comments

Introducing Quote Posts

https://blog.joinmastodon.org/2025/09/introducing-quote-posts/
3•robin_reala•29m ago•0 comments

Show HN: I created a blender tutor that answers with visual cues

https://overlayflow.com/blender_tutor
1•gpopmescu•29m ago•0 comments

Microsoft Goes Back to Basic, Open-Sources Bill Gates' Code

https://gizmodo.com/microsoft-goes-back-to-basic-open-sources-bill-gates-code-2000654010
1•ivewonyoung•32m ago•1 comments

Rethinking AI Infrastructure: The Rise of PCIe Switches

https://semiengineering.com/rethinking-ai-infrastructure-the-rise-of-pcie-switches/
2•tanelpoder•32m ago•0 comments

You Need to Be Bored. Here's Why [video]

https://www.youtube.com/watch?v=orQKfIXMiA8
1•amai•32m ago•0 comments

Show HN: Nannabanana.ai – Nanna-approved image generator

https://nannabanana.ai
1•flysonic10•32m ago•0 comments

I had the same idea for *...*

2•mockingloris•34m ago•0 comments

Ask HN: Is the market for AI Agent automations that big?

3•asdev•36m ago•0 comments

Gaza: The AI Human Laboratory

https://www.thecairoreview.com/essays/gaza-israels-ai-human-laboratory/
9•lr0•37m ago•0 comments

AI Bubble Watch

https://www.computerworld.com/article/4054928/ai-bubble-watch-openai-to-burn-through-115b-by-2029...
2•CrankyBear•37m ago•0 comments

An Interview with Dan Kim About Intel, Nvidia, and the U.S. Government

https://stratechery.com/2025/an-interview-with-dan-kim-about-intel-nvidia-and-the-u-s-government/
1•feross•38m ago•0 comments

The Pachinko Machine Plays You

https://fluxus.io/article/the-pachinko-machine-plays-you
1•dreamfactored•38m ago•0 comments

Rackspace Email Service Down

https://status.apps.rackspace.com/
1•belter•40m ago•0 comments
Open in hackernews

Show HN: Fast Isolated Postgres DB for Spring Boot Integration Tests

https://github.com/misirio/dbsandboxer
1•misirio•1h ago
I build a small Spring Boot library that makes Postgres-backed integration tests both fast and fully isolated.

How it works:

At test-suite start-up it creates a single PostgreSQL template database.

For every JUnit test it runs CREATE DATABASE … TEMPLATE … to clone that template - about 50 ms per sandbox.

It plugs right into Spring Boot, Testcontainers, Flyway, and Liquibase.

If you use text fixtures you can mess with it freely, and never worry about affecting other tests.

I introduced this approach after hitting serious test-isolation problems on a large enterprise project. The approach worked greatly and the integration tests grow to past 4 000 tests without any slowdown or cleanup scripts.

I added an example project setup including test fixtures here: https://github.com/misirio/dbsandboxer/tree/main/examples/sp...

I would love to hear your feedback and how you solve this problem in your projects.