frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

We still can't predict much of anything in biology

https://blog.genesmindsmachines.com/p/we-still-cant-predict-much-of-anything
1•jryb•58s ago•0 comments

Show HN: What Are Top Invideo AI Alternative in 2025

https://www.revid.ai/blog/best-invideo-alternatives-2025
1•avinashvagh•1m ago•0 comments

Robin Williams' daughter pleads for people to stop sending AI videos of her dad

https://www.bbc.co.uk/news/articles/c0r0erqk18jo
2•dijksterhuis•3m ago•0 comments

Rewrote docs using AI by giving it access to our codebase

https://twitter.com/pbteja1998/status/1975578983589953705
1•pbteja1998•4m ago•0 comments

Anthropic and IBM announce strategic partnership

https://techcrunch.com/2025/10/07/anthropic-and-ibm-announce-strategic-partnership/
1•gslin•4m ago•0 comments

Show HN: Rethinking audit trails in Django (structured and database-free)

https://github.com/shree256/django-activity-audit
2•shree256•4m ago•0 comments

Plan Mode

https://cursor.com/blog/plan-mode
1•meetpateltech•4m ago•0 comments

Marvin Minsky and the Ultimate Tinker Toy

https://tinlizzie.org/tinkertoy/index.html
1•tacon•7m ago•0 comments

Sperm MicroRNAs: Crucial Mediators of Paternal Exercise Capacity

https://bioengineer.org/sperm-micrornas-crucial-mediators-of-paternal-exercise-capacity-transmiss...
1•gmays•9m ago•0 comments

How to Build a Better Suburb: YIMBY Lessons from Disney, Houten, Japan, Carmel

https://www.governance.fyi/p/main-street-usa-suburban-yimbyism
1•toomuchtodo•10m ago•0 comments

Seeing Like a Software Company

https://www.seangoedecke.com/seeing-like-a-software-company/
1•praptak•10m ago•0 comments

Microsoft clamping down on Windows 11 local account setup

https://www.tomshardware.com/software/windows/microsoft-clamping-down-on-windows-11-local-account...
4•layer8•14m ago•1 comments

Show HN: Sweep, AI autocomplete for JetBrains that rewrites code

https://sweep.dev
2•williamzeng0•14m ago•0 comments

Sol Lewitt and Vibe Coding

https://lewitt.rob.computer
1•benzguo•15m ago•0 comments

Show HN: Mylinux Made by Me

1•Mylinux-os•15m ago•0 comments

BigBang-Proton, Next-Word-Prediction Is Scientific Multitask Learner

https://arxiv.org/abs/2510.00129
2•SSymTech•16m ago•1 comments

The drone strategy that helped Ukraine turn the tables on Russia

https://www.theatlantic.com/international/archive/2025/10/ukraine-russia-drone-war-attrition/684419/
2•FinnLobsien•16m ago•0 comments

I open-sourced a ~200k word English dictionary

https://github.com/freetalk-fun/freetalk-dictionary-v1
1•erondpowell•18m ago•2 comments

Show HN: Arc – high-throughput time-series warehouse with DuckDB analytics

https://github.com/Basekick-Labs/arc
1•ignaciovdk•19m ago•0 comments

FCC kicks off 'Space Month' with vow to fast-track satellite licensing

https://www.theregister.com/2025/10/07/fcc_satellite_licensing/
1•rntn•20m ago•0 comments

'What Does a Scanner See?' – Keanu Monologue in a Scanner Darkly vs. PKD Book

https://firasd.substack.com/p/what-does-a-scanner-see-keanu-reeeves-scanner-darkly
3•firasd•20m ago•0 comments

Cache-Friendly B+Tree Nodes with Dynamic Fanout

https://jacobsherin.com/posts/2025-08-18-bplustree-struct-hack/
2•jasim•20m ago•0 comments

What past education tech failures can teach us about the future of AI in schools

https://theconversation.com/what-past-education-technology-failures-can-teach-us-about-the-future...
1•onychomys•21m ago•0 comments

Show HN: Contract Extraction Assistant – Local, open-source contract data tool

https://github.com/Qleric-labs/contract-extraction-assistant
1•Mo1756•21m ago•0 comments

Kicked from RubyGems, maintainers forge new home at Gem Cooperative

https://www.theregister.com/2025/10/06/gem_cooperative/
2•fork-bomber•22m ago•0 comments

Some observations concerning large programming efforts (1964)

https://dl.acm.org/doi/10.1145/1464122.1464146
1•PaulHoule•24m ago•0 comments

Going Phoneless

https://messyprogress.substack.com/p/going-phoneless
3•robotelvis•25m ago•3 comments

Ask HN: Career Burnout Looking for Options

2•ultrasounder•26m ago•3 comments

Arduino "retains its brand and mission" following acquisition by Qualcomm

https://arstechnica.com/gadgets/2025/10/arduino-retains-its-brand-and-mission-following-acquisiti...
3•anfilt•27m ago•0 comments

Show HN: netq – A script to fetch common network parameters, written in POSIX sh

https://github.com/pvonmoradi/netq
2•pooyamo•28m ago•0 comments
Open in hackernews

Show HN: FizzBee – Formal Model based autonomous testing

https://fizzbee.io/testing/
5•jayaprabhakar•2h ago
GitHub: https://github.com/fizzbee-io/fizzbee-mbt-examples Quick Start: https://fizzbee.io/testing/tutorials/quick-start/

Most developers agree testing is important. At the same time, most developers don’t enjoy writing tests. With AI generating code faster than ever, testing is becoming even more crucial. But even AI-generated tests need review and maintenance, which makes them another burden.

I'm introducing another form of autonomous testing - "model-based testing". Instead of writing test cases, you describe expected behavior in a Python-like specification language.

The FizzBee model can be: - Verified exhaustively for design bugs (like formal methods). - Mapped to your actual system, automatically generating the tests.

This gives you:

- No hand-crafted test cases - Automatic testing of concurrent as well as sequential behavior - No cascading test rewrites when behavior changes - No cluttering the SUT with tracing code

With FizzBee, you get both design validation (like in formal methods) and automatic test generation, saving time and effort.

Currently, only Go is supported. Java and Rust are next and would love to hear which language you’d want supported next.

I’d love your feedback!

Comments

jackdaniels4me•1h ago
This is neat. I've used FizzBee and TLA+ for model checking. Being able to test the implementation would be nice. How is this different from test case generation in TLA+?
jayaprabhakar•1h ago
Glad you have tried FizzBee before. Do you have any feedback on it?

With TLA+, I mostly see papers and example projects that typically implement model based trace checking solutions in TLA+.

While it works, usually, it will clutter the main code (SUT) with tracing library calls. And in some papers, you'll need to create a separate modified version of spec with the tracing spec.

MongoDB published a paper a while ago comparing model based testing and model based trace checking. I'll soon list more details.