frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Relive the lunar flyby and re-entry of Artemis II – Orion Integrity

https://vision.gladio.ai/
1•melboudi•56s ago•1 comments

Show HN: 7 Years of Tropospheric NO₂

https://no2.libmap.org/
1•tomtomistaken•1m ago•0 comments

Who Uses AI?

https://www.someweekendreading.blog/who-uses-ai/
1•ColinWright•1m ago•0 comments

Toyota joins hydrogen truck alliance push

https://www.foxnews.com/tech/toyota-joins-hydrogen-truck-alliance-push
2•RickJWagner•4m ago•0 comments

Gobo

https://languagehat.com/gobo/
2•jruohonen•8m ago•0 comments

Our response to the Axios developer tool compromise

https://openai.com/index/axios-developer-tool-compromise/
2•campuscodi•10m ago•0 comments

Training LLMs to Predict World Events

https://thinkingmachines.ai/news/training-llms-to-predict-world-events/
2•EvgeniyZh•10m ago•0 comments

Show HN: Spuddy.sh – Describe your API in terminal get a hosted API with state

https://spuddy.sh
2•boyneyy123•12m ago•0 comments

Cyclone Ditwah

https://en.wikipedia.org/wiki/Cyclone_Ditwah
2•teleforce•16m ago•0 comments

Why It's So Hard to Fix an Electric Bike

https://www.wired.com/story/why-is-it-so-hard-to-fix-an-electric-bike/
3•dangle1•17m ago•1 comments

Show HN: PDF-Proof – Make Claude show where it found each value in a PDF

https://github.com/metedata/pdf-proof
2•young_mete•17m ago•0 comments

Gemma4

https://avenchat.com
3•yalvhe2009•19m ago•0 comments

Nvidia's moat is not what it used to be

4•florianleibert•20m ago•1 comments

Sol-RL: FP4 Explore, BF16 Train

https://nvlabs.github.io/Sana/Sol-RL/
2•gmays•20m ago•0 comments

Remove iOS Contact Posters

https://www.dadummdada.com/content/2026/006-ios-contact-posters/
2•Bowes-Lyon•21m ago•0 comments

SuperCmd – Open-source launcher for macOS with Raycast-compatible extensions

https://github.com/SuperCmdLabs/SuperCmd
2•mvac•21m ago•0 comments

India hits 150 GW solar milestone

https://www.pv-magazine.com/2026/04/10/india-hits-150-gw-solar-milestone/
1•rustoo•22m ago•0 comments

Music hardware company Elektron acquired by investment company Bonnier Capital

https://www.musicradar.com/music-tech/this-is-the-beginning-of-an-ambitious-journey-elektron-acqu...
3•jedimastert•22m ago•0 comments

Show HN: Turn 3 letters into a cube with different projections (inspired by GEB)

https://geb.gjlmotea.com/
1•gjlmotea•23m ago•0 comments

Agentic Specification Engineering

https://medium.com/@paul.bernard_80815/agentic-specification-engineering-agile-was-never-supposed...
1•paulbernard•24m ago•1 comments

A Breaking Bad grand strategy browser game – pure JavaScript, no frameworks

https://breakingbadgame.com
1•YoungCrack•24m ago•2 comments

Test your CV against any job description – free, open-source, AI-powered

https://github.com/simonesan-afk/CV-Praetorian-Guard
1•simonenespolo•28m ago•0 comments

Tesla Disables the FSD Used Illegally in over 100k Cars

https://www.autoevolution.com/news/no-more-hacking-tesla-disables-the-fsd-used-illegally-in-over-...
1•campuscodi•28m ago•1 comments

Historical Java (2014)

https://www.sweharris.org/post/2014-02-28-java/
1•jruohonen•30m ago•0 comments

Building the first AI Red Team OS – mythosai.cloud – early access open

https://mythosai.cloud/
1•cashbackoz•33m ago•0 comments

Private Equity Captured the Ambulance Market

https://www.thebignewsletter.com/p/code-red-why-your-city-cant-affordor
3•connor11528•33m ago•2 comments

A private collection of 10k Chicago show tapes finds a public home

https://chicagoreader.com/music/gossip-wolf/aadam-jacobs-collection-internet-archive-concert-reco...
1•taubek•34m ago•0 comments

Show HN: Millions of websites crawled for LLMs to rebuild the pricing pages

https://pricepage.lol/
2•kilroy123•36m ago•1 comments

Scuttlebutt Genesis

https://handbook.scuttlebutt.nz/stories/scuttlebutt-genesis
1•jruohonen•39m ago•0 comments

Suno, AI Music, and the Bad Future [video]

https://www.youtube.com/watch?v=U8dcFhF0Dlk
2•ptrhvns•39m ago•0 comments
Open in hackernews

Show HN: ApplePy – Embed and Call Swift from Python (Like PyO3, but for Swift)

https://github.com/jagtesh/ApplePy
2•sheepscreek•1h ago

Comments

sheepscreek•1h ago
I built ApplePy because I couldn't find anything that let you use Swift from Python -- only the reverse (embedding Python inside Swift). After experimenting with a few approaches, I got inspired by PyO3's model and decided to build something analogous for the Swift ecosystem.

Why Swift as a native extension language? A few things people underestimate:

- Swift doesn't have a garbage collector. Like Rust, it uses automatic reference counting (implicit by default) with copy-on-write semantics for safe concurrency you get most of Rust's memory safety guarantees with a much lighter syntax.

- Performance lands around 80% of Rust out of the box, with compiler hints available to close the gap further if you need to tune hot paths.

- Swift 6.3 ships native C++ interop, and the same codebase compiles to iOS, Android, Windows, Linux, and macOS.

For Python developers who want native-speed extensions without writing C or wrestling with Rust's learning curve, Swift is a genuinely underappreciated option. ApplePy tries to make that path practical.

The project is early - feedback and contributions very welcome.