frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

The Ethical Minefield of Genetic Testing for All

https://www.medscape.com/viewarticle/ethical-minefield-genetic-testing-all-2025a1000j8p
1•wjb3•2m ago•0 comments

Janet: Lightweight, Expressive, Modern Lisp

https://janet-lang.org
2•veqq•2m ago•0 comments

Light at night exposure and risk of breast cancer

https://www.frontiersin.org/journals/public-health/articles/10.3389/fpubh.2023.1276290/full
1•wjb3•4m ago•0 comments

The Age of Integrity

https://www.computer.org/csdl/magazine/sp/2025/03/11038984/27COaJtjDOM
1•gnabgib•4m ago•0 comments

Show HN: Instagram Images Downloader

https://chromewebstore.google.com/detail/instagram-images-download/dhffhnhpjicnmloigikbhcjmejldlkib
1•qwikhost•5m ago•0 comments

Deep learning diagnosis plus kinematic severity assessments of neurodivergence

https://www.nature.com/articles/s41598-025-04294-9
1•wjb3•5m ago•0 comments

I'm tired,Twitter is full of AI tools related discussion

2•jerawaj740•11m ago•0 comments

NPM Phishing Email Targets Developers with Typosquatted Domain

https://socket.dev/blog/npm-phishing-email-targets-developers-with-typosquatted-domain
1•avivkeller•18m ago•0 comments

HBF Technical Advisory Board to Guide Development of High-Bandwidth Flash Memory

https://www.sandisk.com/en-gb/company/newsroom/press-releases/2025/2025-07-24-sandisk-forms-hbf-technical-advisory-board-to-guide-development-and-strategy-for-high-bandwidth-flash-memory-technology
1•transpute•19m ago•0 comments

USB-C for Lightning iPhones

https://obsoless.com/products/iph0n3-usb-c-protection-case
1•colinprince•27m ago•1 comments

voyage-context-3: Contextual Retrieval Without the LLM

https://blog.voyageai.com/2025/07/23/voyage-context-3/
1•fzliu•32m ago•0 comments

I Do GitHub PRs

https://www.bitquabit.com/post/how-i-do-github-prs/
1•onenite•34m ago•0 comments

(Weak) Factorization Systems

https://bartoszmilewski.com/2025/07/26/weak-factorization-systems/
1•ibobev•39m ago•0 comments

Spanish Proficiency Exercises (CC-BY)

https://www.laits.utexas.edu/spe/index.html
1•pattonis•45m ago•0 comments

Angr (open-source binary analysis platform for Python)

https://angr.io/
1•PaulHoule•47m ago•0 comments

Show HN: Convert from MIDI file to ASCII tablature (and more)

https://github.com/scottvr/gtrsnipe/blob/main/README.md
2•ycombiredd•55m ago•0 comments

Intel Confirms Mass Layoffs, over 24,000 Jobs to Be Cut This Year

https://www.pcmag.com/news/intel-confirms-mass-layoffs-over-24000-jobs-to-be-cut-this-year
7•pabs3•56m ago•0 comments

I've returned to Linux but I miss PowerShell

http://chrisfun.xyz/PowerShell/
1•tangotaylor•1h ago•4 comments

Nurses Share Insider Tips for Your Next Hospital Visit

https://www.nytimes.com/2025/05/16/well/nurses-tips-hospital.html
1•bookofjoe•1h ago•1 comments

D.A.R.E. – The Real Reason Cops Taught You About Drugs [video]

https://www.youtube.com/watch?v=LzrGCk-F7FY
1•zahlman•1h ago•0 comments

First release: Popcorn – Bring Elixir to the browser

https://blog.swmansion.com/popcorn-bringing-elixir-to-the-browser-8993a58a00be
1•rancevent•1h ago•0 comments

One Source of Truth for AI Instructions: Single Agents.md

https://kau.sh/blog/agents-md/
3•jimmcslim•1h ago•0 comments

Object deserialization attacks using Ruby's Oj JSON parser

https://www.hezmatt.org/~mpalmer/blog/2025/07/26/object-deserialization-ruby-oj-json-parser.html
2•JNRowe•1h ago•0 comments

Timeline of United States inventions (before 1890)

https://en.wikipedia.org/wiki/Timeline_of_United_States_inventions_(before_1890)
2•bikenaga•1h ago•0 comments

Dollo's Law of Irreversibility

https://en.wikipedia.org/wiki/Dollo%27s_law_of_irreversibility
1•mparramon•1h ago•0 comments

Show HN: Suhya – Omegle Alternative

https://suhya.com/
2•Codegres•1h ago•1 comments

Show HN: Unified AI Image Generator – GPT, DALL·E and More (No API Keys Needed)

https://www.imageninja.ai/
1•ashr_•1h ago•0 comments

How We Migrated the Parse API from Ruby to Golang (Resurrected)

https://charity.wtf/2025/07/24/how-we-migrated-the-parse-api-from-ruby-to-golang-resurrected/
1•gpi•1h ago•0 comments

Show HN: Open-source compliance-as-code for crypto projects

https://github.com/ShorPay/shor-compliance
3•daivikgoel•1h ago•1 comments

We Might Have Been Wrong About Where Spiders Came From

https://gizmodo.com/we-might-have-been-wrong-about-where-spiders-came-from-2000632561
1•Bluestein•1h ago•0 comments
Open in hackernews

Show HN: An AI-powered Python decorator that turns stubs into working code

https://github.com/stoyan-stoyanov/yololang
1•spstoyanov•9h ago

Comments

spstoyanov•9h ago
The other day I was thinking about the future of programming and how our workflows change with AI and I started wondering what would an AI-native programming language look like.

So I got this idea - what if we can just write function / class definitions and let AI generate the code for us. One thing led to another and after a fun weekend I got something working.

It’s a simple python decorator that uses a function definition to generate the function code. It works for async functions and class methods, and it caches the generated code locally. There are some fun use cases like AI-generated fastAPI endpoints and agent tools.

I also realized that it somewhat incentivizes test-driven development because if you write the tests ahead of time you don’t only make sure that the generated function code works but it is generated and cached before the actual program runs.

I haven’t had enough time to do a proper comparison but I wonder if this test-driven approach produces better code vs traditional vibe-coding.

I would love to hear your thoughts. Cheers!