frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Previewing GPT‑5.6 Sol: a next-generation model

https://openai.com/index/previewing-gpt-5-6-sol/
1•joshuawright11•1m ago•0 comments

AI Learns the "Dark Art" of RFIC Design

https://spectrum.ieee.org/ai-radio-chip-design
1•rbanffy•1m ago•0 comments

The Download: brain-melting heatwaves and unprecedented OpenAI restrictions

https://www.technologyreview.com/2026/06/26/1139780/the-download-heatwaves-brain-health-openai-re...
1•joozio•1m ago•0 comments

Polygraph: A Meta-Harness for Maximum Agent Autonomy

https://nx.dev/blog/announcing-polygraph
6•cheald•2m ago•0 comments

Blink If You're Human

https://dynomight.net/blink/
1•surprisetalk•2m ago•0 comments

The abundant but expensive energy source that's under your feet

https://www.bbc.co.uk/news/articles/cj3gj1n8yz8o
1•Brajeshwar•2m ago•0 comments

SpaceX plans to launch Starlink mobile service in the US

https://arstechnica.com/space/2026/06/spacex-plans-to-launch-starlink-mobile-service-in-the-us/
2•LorenDB•3m ago•0 comments

Show HN: TBD, a Mac-native CLI-forward coding agent multiplexer

https://github.com/cheapsteak/tbd
2•cheapsteak•3m ago•0 comments

Engineering Manager Charged with $1.4M Insider Trading Scheme

https://www.justice.gov/usao-de/pr/engineering-manager-charged-14-million-insider-trading-scheme
2•geox•4m ago•0 comments

Titanic's unknown child is finally identified (2011)

https://www.nbcnews.com/id/wbna42755013
2•EndXA•4m ago•0 comments

White House Will Ad Hoc Decide Who Can Individually Access GPT-5.6

https://thezvi.substack.com/p/white-house-will-ad-hoc-decide-who
3•myrmidon•5m ago•0 comments

Rising RAM prices are taking a toll on PCs, tablets, game consoles, and more

https://liliputing.com/lilbits-rising-ram-prices-are-taking-a-toll-on-pcs-tablets-game-consoles-a...
3•speckx•5m ago•0 comments

Beyond Objects

https://arxiv.org/abs/2606.27258
3•dwenzek•7m ago•1 comments

Show HN: Vynex API – One endpoint for 34 LLM models, paid with USDT

https://llm-api.vynexcloud.com/
3•sandboxclaw•8m ago•0 comments

Mullvad founder Daniel Berntsson donated millions to far right party

https://www.na.se/orebro/miljonregn-till-orebropartiet-fran-techprofil/
5•mrtesthah•9m ago•0 comments

Biotech firm files bankruptcy w $115M debt; Eli Lilly, Astellas bet on it anyway

https://www.masslive.com/news/2026/06/biotech-firm-files-for-bankruptcy-with-115m-debt-eli-lilly-...
3•randycupertino•10m ago•1 comments

Meta Tapped a Pentagon Supplier to Prototype Face Recognition for Its Glasses

https://www.wired.com/story/meta-rank-one-computing-face-recognition-smart-glasses/
4•cdrnsf•11m ago•0 comments

Globalizing the Philadelphian System: Unresolved Issues [pdf]

https://isonomiaquarterly.com/wp-content/uploads/2026/06/iq-4.2-summer-2026-marquis-and-coyne-glo...
2•brandonlc•12m ago•0 comments

Csound Score in Emacs

https://github.com/luqtas/csound-score-emacs
5•luqtas•13m ago•0 comments

I'm building a 4X strategy game in Flutter and Flame

https://github.com/ernestwisniewski/aonw/tree/main
1•ernest_dev•14m ago•0 comments

Show HN: Puzzle with Strangers. A free multiplayer jigsaw

https://endtime-instruments.org/puzzle/
1•janoelze•16m ago•1 comments

Tuning a Server for Benchmarking

https://david.alvarezrosa.com/posts/tuning-a-server-for-benchmarking/
3•dalvrosa•17m ago•0 comments

Combining LLMs Rarely Beats the Best Single Model, I tested 67 frontier models

https://arxiv.org/abs/2606.27288
1•josefchen•20m ago•0 comments

SQLite: Past, Present, and Future (2022)

https://vldb.org/pvldb/volumes/15/paper/SQLite%3A%20Past%2C%20Present%2C%20and%20Future
3•tosh•21m ago•0 comments

Testing Grok Imagine's 15-20x Faster Image Generation

https://developer.puter.com/blog/grok-imagine-image-in-puter-js/
3•reynaldi•22m ago•0 comments

Show HN: Smart model routing directly in Claude, Codex and Cursor

https://github.com/workweave/router
10•adchurch•23m ago•0 comments

A free checker for whether AI search engines can cite your site

https://clarvia.dev/geo-checker
1•lr001328•23m ago•1 comments

1.38 Millimeter Microcontroller

https://www.ti.com/product/MSPM0C1104
1•kristianpaul•24m ago•0 comments

An eBook dictionary generator for Dungeon Crawler Carl, or any other fandom

https://github.com/jmcguire/dungeon-crawler-carl-dict
1•lifefeed•24m ago•0 comments

GLP-1 drugs increase women's marriage and employment rates

https://hu-my.sharepoint.com/personal/rdiamond_fas_harvard_edu/_layouts/15/onedrive.aspx?id=%2Fpe...
1•marojejian•25m ago•3 comments
Open in hackernews

Techlang – a compiled, statically typed language targeting LLVM

https://github.com/gummyniki/techlang
1•Mierenik•1h ago

Comments

Mierenik•1h ago
I built a programming language from scratch in C++. It has a C-like syntax with modern features: structs, enums, arrays, pointers, and a module system for splitting code across files.

The compiler pipeline goes: lexer - parser - semantic analyzer - LLVM IR - native binary.

I also wrote a standard library in C that Techlang functions can bind to using an extern keyword.

Next up is a GPU compute companion language that can call into Techlang code natively since both target LLVM IR. Haven't seen anyone else do this.

Blog post about how I built it: https://gummyniki.github.io/portfolio/blog/posts/compiler.ht...