frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: DroneWorld – Earth with multiplayer drones and Ethereum real estate

https://droneworld.app/
1•mannders•3m ago•0 comments

Elite Young Runners Are Becoming Freakishly Fast. Welcome to 'Trackflation'

https://www.wired.com/story/teenagers-running-trackflation/
1•gammarator•3m ago•0 comments

Show HN: Repolink – Turn any GitHub repo into a tool for any of your projects

https://github.com/imjszhang/js-repolink
1•imjszhang•7m ago•0 comments

X (Formerly Twitter) Is Going Open Source

https://twitter.com/elonmusk/status/2077361679034118271
1•LopRabbit•8m ago•0 comments

Bash for Browser Front End

https://alganet.github.io/terminal/?p=post:2026-07-21-00-Bash-for-Browser-Frontend&lang=en
1•gaigalas•10m ago•0 comments

Show HN: Fluidic Network Grid – A branchless control plane in Jax

https://github.com/PJHkorea/Fluidic_Network_Grid
1•PJHkorea•15m ago•1 comments

Imud – Gpsd, but for IMUs

https://github.com/richcreations/imud
1•richcreations•18m ago•0 comments

Covid-19 Misinformation

https://en.wikipedia.org/wiki/COVID-19_misinformation
2•num42•23m ago•0 comments

Foldkit

https://foldkit.dev/
2•handfuloflight•24m ago•0 comments

Video-use: Edit videos with coding agents

https://github.com/browser-use/video-use
3•nateb2022•25m ago•0 comments

Five US tech giants' hidden debts soar to $1.65T on opaque AI funding

https://asia.nikkei.com/business/technology/five-us-tech-giants-hidden-debts-soar-to-1.65tn-on-op...
17•NordStreamYacht•26m ago•0 comments

Salami Slicing Tactics

https://en.wikipedia.org/wiki/Salami_slicing_tactics
2•num42•26m ago•0 comments

Running Doom on Our Custom CPU and Going Viral

https://www.armaangomes.com/blogs/doom/
5•arghunter•28m ago•0 comments

A Koi Pond Mosaic Made from 10 Pounds of 3D Printer Waste

https://www.instructables.com/A-Koi-Pond-Mosaic-Made-From-10-Pounds-of-3D-Printe/
8•sudo_cowsay•30m ago•0 comments

Jane Street: Incremental

https://github.com/janestreet/incremental
3•handfuloflight•31m ago•0 comments

Windows Performance Exploitation

https://lagtency.com/2026/06/25/win-perf/
2•proxylatte•32m ago•0 comments

VTubing: How a Japanese Phenomenon Is Going Worldwide

https://www.tokyodev.com/articles/vtubing-how-a-japanese-phenomenon-is-going-worldwide
3•pwim•39m ago•0 comments

Emoticons

https://en.wikipedia.org/wiki/List_of_emoticons
3•audreyfei•43m ago•0 comments

How did I publish a paper in ACMKDD as an undergraduate

https://medium.com/@JarrettYe/how-did-i-publish-a-paper-in-acmkdd-as-an-undergraduate-c0199baddf31
2•ktimespi•48m ago•1 comments

Writers need new strategies to stand up to AI

https://www.thedial.world/articles/news/copyright-law-ai-intellectual-property
5•colinprince•49m ago•0 comments

Gary Marcus: US won't "win" AI war with China. What we should do instead.

https://garymarcus.substack.com/p/china-has-all-but-caught-up-the-us
3•giardini•52m ago•0 comments

Scientists Visualize the Complex, Dynamic World Inside a Human Cell

https://mymodernmet.com/eukaryotic-cell-digizyme/
2•o4c•54m ago•0 comments

US judge approves Anthropic's $1.5B settlement of copyright lawsuit

https://finance.yahoo.com/technology/ai/articles/us-judge-approves-anthropics-1-204851948.html
2•lilerjee•55m ago•0 comments

Magnet Fishing on a Military Base [video]

https://www.youtube.com/watch?v=l0uMGoW1KPM
2•xvxvx•56m ago•1 comments

New spinning drone hides in plain sight

https://news.northwestern.edu/stories/2026/07/new-spinning-drone-hides-in-plain-sight
2•o4c•59m ago•1 comments

A Practical Guide to Calculating, Pricing, and Building Recurring

https://ebookbizai.com/store/maggiebookhub/home
2•bokeke1•1h ago•0 comments

Building Agentic Workflows in Python with LangGraph

https://machinelearningmastery.com/building-agentic-workflows-in-python-with-langgraph/
3•eigenBasis•1h ago•0 comments

Mevion: Low-Cost Open-Source Data Collection System for Dual-Arm Manipulation

https://haraduka.github.io/mevion-hardware/
2•ilreb•1h ago•0 comments

AI Is Changing the Economics of Native Apps

https://medium.com/@robsandhu/ai-is-changing-the-economics-of-native-apps-e81c7f325948
3•rsandhu•1h ago•1 comments

DepthART: Scaling Foundation Monocular Depth to Tiny Models

https://xuefeng-cvr.github.io/DepthART/
2•ilreb•1h ago•0 comments
Open in hackernews

Metago: Write templates that write go

https://metago.dev/
2•crowdyriver•13h ago

Comments

crowdyriver•13h ago
It occurred to me a few weeks ago why programming languages don't just try add metaprogramming capabilities with comments, without modifying the original compiler. So I went ahead and experimented how would it look like in golang.

So far so good! It's basically go templates that take in any package level go symbol and write code into a meta.go file.

You can do the same with the go/ast package, but metago makes it very easy to add your own custom transformations. No build tags, just write .metago templates, annotate structs, and run metago.

So far I've managed to make stringer, enums, mocks and even an efficient json serde template with metago. As an experiment, there's also a typesafe active record like orm in the repo. So you can do a lot with it!