frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Klein Bottles and Nuclear Fusion

https://lee-phillips.org/smiet/
1•leephillips•8m ago•0 comments

Restock Holmes

https://restlock-holmes.vercel.app/
1•thatxliner•15m ago•0 comments

How is Affinity now free? (Founder) [video]

https://www.youtube.com/watch?v=v9YR9KeCJDY
1•gotrythis•20m ago•0 comments

Study: Good management of aid projects reduces local violence

https://news.mit.edu/2025/study-good-management-aid-projects-reduces-local-violence-1103
2•fleahunter•31m ago•0 comments

Hooked on Sonics: Experimenting with Sound in 19th-Century Popular Science

https://publicdomainreview.org/essay/science-of-sound/
1•Hooke•32m ago•0 comments

Full list of Israeli startup M&As in 2025

https://www.calcalistech.com/ctechnews/article/h1k11bgtije
1•salkahfi•32m ago•1 comments

Digital Twins: the missing pieces we can solve with Machine Learning

https://quantblog.wordpress.com/2025/10/29/digital-twins-the-missing-pieces/
1•jgord•35m ago•1 comments

Show HN: Sudachi Emulator – Fast open-source Switch emulator

https://sudachiemu.org
2•clarionPilot11•43m ago•0 comments

Setting up a simple home router with OpenBSD

https://www.blog.montgomerie.net/posts/2025-10-11-setting-up-a-very-simple-but-ipv6-capable-home-...
5•todsacerdoti•47m ago•0 comments

Programming for Computations: Matlab/Octave

https://link.springer.com/book/10.1007/978-3-319-32452-4
1•teleforce•51m ago•0 comments

Coriolis Carousel: Demo [video]

https://www.youtube.com/watch?v=78Yymgk6qrM
1•Timothee•55m ago•0 comments

Tech giants announce $7B data center, Michigan's first hyperscale campus

https://apnews.com/article/openai-inc-joi-harris-data-management-and-storage-microsoft-corp-oracl...
2•1vuio0pswjnm7•59m ago•2 comments

Mistake-filled legal briefs show the limits of relying on AI tools at work

https://apnews.com/article/artificial-intelligence-tools-work-errors-skills-fddcd0a5c86c20a4748dc...
3•1vuio0pswjnm7•1h ago•0 comments

Machine Scheduler in LLVM – Part II

https://myhsu.xyz/llvm-machine-scheduler-2/
2•matt_d•1h ago•0 comments

Ask HN: How do you design an efficient transacitonal/durable task system?

1•stevefan1999•1h ago•0 comments

Site to Gather Tech News From

https://codigotecno.dev
1•ray_•1h ago•0 comments

Destiny Matrix – Free Life Path Calculator and Analysis

https://destinymatrix.cc/
2•lizbo•1h ago•0 comments

How Our Ancestors Used Moss

https://wabimoss.com/nature-immersion/practical-uses-moss/
2•thunderbong•1h ago•1 comments

Imarena Protocol: A Cryptographically-Auditable Failsafe for LLM Honesty

https://github.com/ApexSignalAndrewRusher/Truth/wiki/Imarena-Protocol
1•ApexSignalAndre•1h ago•0 comments

Writing a DOS Clone in 2019

https://medium.com/@andrewimm/writing-a-dos-clone-in-2019-70eac97ec3e1
1•shakna•1h ago•0 comments

The True Tale of Seattle's Sherlock Holmes

https://www.seattlemet.com/news-and-city-life/2025/09/real-detective-seattle-luke-may
1•rmason•1h ago•0 comments

Parall - Native Hacking for macOS Apps: Isolation and Multi-Instance Support

https://parall.app/
1•IGHOR•1h ago•1 comments

Fountain Pens Are More Popular Than Ever–and Purists Are Fuming

https://www.wsj.com/lifestyle/fountain-pens-chinese-replicas-montblanc-7f4d43d0
3•fortran77•1h ago•2 comments

LAP Coffee commotion puts German view of venture capital under scrutiny

https://www.ft.com/content/2b2bda15-afc2-496e-b48d-944c79d99cbf
2•alephnerd•1h ago•0 comments

You guys need to build more stupid shit

15•gnarbarian•1h ago•7 comments

Has Airbnb reached its peak?

https://www.economist.com/business/2025/11/02/has-airbnb-reached-its-peak
1•salkahfi•1h ago•0 comments

Revival of the Chicago River

https://www.nationalgeographic.com/travel/article/what-to-do-along-the-chicago-river
2•ninju•1h ago•0 comments

Mamdani Has a Point About Rent Control

https://www.theatlantic.com/economy/archive/2025/11/mamdani-housing-rent-control/684790/
1•salkahfi•1h ago•0 comments

Google Earth Gets an AI Chatbot to Help Chart the Climate Crisis

https://www.wired.com/story/google-earth-gemini-ai-chatbot/
1•Brajeshwar•1h ago•0 comments

Why Every Family Needs a Code Word

https://www.wsj.com/tech/personal-tech/why-every-family-needs-a-code-word-e077ab76
1•Brajeshwar•1h ago•0 comments
Open in hackernews

Show HN: Torque – A declarative, typesafe DSL for LLM training datasets (MIT)

https://github.com/qforge-dev/torque
3•michalwarda•12h ago
We were frustrated with dataset generation DX: ad‑hoc scripts and JSON templates break as flows branch, tool‑calls drift, and reproducibility is hard.

So we built Torque: a schema‑first, declarative, fully typesafe DSL to generate conversational datasets.

What it is: Declarative DSL - Compose conversations like React components Fully Typesafe - Zod schemas with complete type inference Provider Agnostic - Generate with any AI SDK provider (OpenAI, Anthropic, DeepSeek, vLLM, LLaMA.cpp etc.) AI-Powered Content - Generate realistic varied datasets automatically without complicated scripts Faker Integration - Built-in Faker.js with automatic seed synchronization for reproducible fake data Cache Optimized - Reuses context across generations to reduce costs Prompt Optimized - Concise, optimized structures, prompts and generation workflow lets you use smaller, cheaper models Quick example Concurrent Generation - Beautiful async CLI with real-time progress tracking while generating concurrently

import { generateDataset, generatedUser, generatedAssistant, oneOf, assistant } from “@qforge/torque”; import { openai } from “@ai-sdk/openai”;

await generateDataset( () => [ generatedUser({ prompt: “Friendly greeting” }), oneOf([assistant({ content: “Hello!” }), generatedAssistant({ prompt: “Respond to greeting” })]), ], { count: 2, model: openai(“gpt-5-mini”), seed: 42 } );

Links • GitHub: https://github.com/qforge-dev/torque • Try in browser: https://stackblitz.com/github/qforge-dev/torque/tree/main/st... • npm: https://www.npmjs.com/package/@qforge/torque

What feedback would help most: • What dataset would you like us to create / recreate? • Do you like the API? Any suggestions on how to change it?

License: MIT.

Happy to answer questions in the thread!

Comments

dawidkielbasa•12h ago
Looks promising. I will try it out for sure