frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Efficacy and Safety of CBL-514 Injection in Reducing Abdominal Subcutaneous Fat

https://academic.oup.com/asj/article/45/6/611/8051634?login=false
1•walterbell•16s ago•0 comments

Google flagged my site for phishing and won't tell my why

1•iambateman•36s ago•0 comments

FreakWAN: A floor-routing WAN implementing a chat over bare-LoRa (no LoRaWAN)

https://github.com/antirez/freakwan
1•teleforce•41s ago•0 comments

The Louvre's CCTV password was "Louvre"

https://twitter.com/trash_italiano/status/1985010735542591684
1•JustSkyfall•58s ago•0 comments

Practice Language and AI Roleplay = Best way to learn language that sticks

https://apps.apple.com/us/app/amiko-ai-language-practice/id6752839098
1•nickyfantasy•5m ago•0 comments

Coinbase Said Web3

https://www.bloomberg.com/opinion/newsletters/2025-11-03/coinbase-said-web3
1•ioblomov•10m ago•1 comments

Waymo to expand robotaxi service to Las Vegas, San Diego and Detroit next year

https://www.reuters.com/technology/waymo-expand-robotaxi-service-las-vegas-san-diego-detroit-next...
3•standardUser•12m ago•2 comments

Private messages reveal GOP leaders joking about gas chambers, slavery and rape

https://www.politico.com/news/2025/10/14/private-chat-among-young-gop-club-members-00592146
7•myaccountonhn•12m ago•0 comments

Writing under my real name

https://psychotechnology.substack.com/p/writing-under-my-real-name-230
1•eatitraw•12m ago•0 comments

Show HN: Extrai – An open-source tool to fight LLM randomness in data extraction

https://github.com/Telsho/Extrai
3•elias_t•14m ago•0 comments

No Cell Service, Can Meshtastic Save Us [video]

https://www.youtube.com/watch?v=r2cKsqjuMaM
1•teleforce•15m ago•0 comments

Python steering council accepts lazy imports

https://lwn.net/Articles/1044844/
2•henrikhorluck•15m ago•0 comments

Apple Launches App Store for the Web

https://apps.apple.com/us/iphone/today
3•thm•16m ago•0 comments

Rare 'mad honey' is only found in two places in the world

https://www.cnn.com/travel/mad-honey-deli-bal-turkey-black-sea
4•mooreds•16m ago•0 comments

In a First, AI Models Analyze Language as Well as a Human Expert

https://www.quantamagazine.org/in-a-first-ai-models-analyze-language-as-well-as-a-human-expert-20...
1•Terretta•17m ago•0 comments

Wikipedia row erupts as Jimmy Wales intervenes on 'Gaza genocide' page

https://www.thenational.scot/news/25591165.wikipedia-row-erupts-jimmy-wales-intervenes-gaza-genoc...
4•lehi•17m ago•0 comments

Snap benefits will restart, but will be half the normal payment

https://www.npr.org/2025/11/03/nx-s1-5596121/snap-food-benefits-trump-government-shutdown
2•geox•18m ago•0 comments

Software Development in the Time of New Angels

https://davegriffith.substack.com/p/software-development-in-the-time
2•calosa•18m ago•0 comments

Show HN: Minuta – track your work sessions, focus time, tag them, and more

https://github.com/kevinmahrous/minuta
2•nullkevin•19m ago•0 comments

I tried Elon Musk's Wikipedia clone and boy is it racist

https://www.sfgate.com/sf-culture/article/elon-musk-fake-wikipedia-grokipedia-21131512.php
9•turtlegrids•22m ago•1 comments

Datalyzer – AI Analysis Report Generator

https://dataanalyzer.pro/
2•sunshiney0992•22m ago•1 comments

AI Meeting Notes – Summarization Optimization

https://www.schneier.com/blog/archives/2025/11/ai-summarization-optimization.html
2•walterbell•22m ago•0 comments

Refueling a Nuclear Power Plant – Smarter Every Day

https://www.youtube.com/watch?v=v0afQ6w3Bjw
1•helsinkiandrew•23m ago•0 comments

VoidZero Raises $12.5M Series A

https://voidzero.dev/posts/announcing-series-a
1•dzogchen•24m ago•0 comments

Is it aliens? Why that's the least important question about interstellar objects

https://theconversation.com/is-it-aliens-why-thats-the-least-important-question-about-interstella...
1•bikenaga•25m ago•0 comments

Rateless Bloom Filters

https://arxiv.org/abs/2510.27614
3•CarlosBaquero•25m ago•1 comments

X Payments Money Transmitter Licenses

https://money.x.com/en/licenses
2•nomilk•30m ago•0 comments

Stop Vibe Coding – Start Writing Elegant Code [video]

https://www.youtube.com/watch?v=anL8caCUWl0
3•josephleomoreno•31m ago•0 comments

Soft Magnetic Artificial Muscles with High Work Density and Actuation Strain

https://advanced.onlinelibrary.wiley.com/doi/10.1002/adfm.202516218
2•PaulHoule•32m ago•0 comments

Principle of Least Power

https://www.lihaoyi.com/post/StrategicScalaStylePrincipleofLeastPower.html
3•dzonga•32m ago•0 comments
Open in hackernews

Show HN: Generate coherent, synthetic data at scale

https://github.com/ds-horizon/datagen
2•darshanime•6h ago
Internally at our org, we have an ecosystem of over 200 microservices, implementing various parts of the business logic. To test any changes, we provide developers with on-demand sandboxed environments. One issue we had to solve for that was the creation of synthetic data across services, which respected the business rules and was coherent.

Today, we are happy to introduce datagen, a tool we developed internally to solve this problem. It generates coherent, synthetic data with the ability to model complex relationships. It is a new DSL (domain specific language) using which the user specifies the shape of the entity they wish to generate, and generator functions describing the logic for generating each field. The entity can be a table in a relational dbms, or a json document in a document store, or a csv file to upload on S3 etc.

The user writes models in .dg files that are transpiled to golang code, which can then be used to generate coherent, synthetic data.

Here is a simple example:

  // users.dg
  model users {
    fields {
      name() string
      age() int
    }
    gens {
      func name() {
        return "Arthur Dent" // hardcoded value
      }
      func age() {
        return IntBetween(18, 65)
      }
    }
  }

Checkout the website for more information: https://ds-horizon.github.io/datagen/

edit: demo video - https://www.youtube.com/watch?v=ly0DfzTup28