frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Survey of Deep Learning and Foundation Models for Time Series Forecasting

https://arxiv.org/abs/2401.13912
1•brandonb•1m ago•0 comments

Lego's $1k Death Star, the most expensive Lego set

https://www.theverge.com/news/770770/lego-ucs-death-star-price-release-date
1•speckx•2m ago•0 comments

TildeOpen-30B: European LLM Focused on Underrepresented Languages

https://huggingface.co/TildeAI/TildeOpen-30b
1•freilat•3m ago•0 comments

Show HN: Sequoia – App to Improve Male Sexual Health Without Pills

https://apps.apple.com/us/app/sequoia-mens-sexual-health/id1553925344
2•asaskevich•6m ago•0 comments

Attorney Mark Zuckerberg suing Meta over repeated Facebook suspensions

https://www.wthr.com/article/news/local/indianapolis-attorney-mark-zuckerberg-suing-meta-repeated...
2•ummonk•6m ago•0 comments

Content Query Languages

https://deanebarker.net/tech/blog/content-querying/
1•deanebarker•7m ago•0 comments

Anthropic Raises Its Valuation by Nearly 3 Times to $183B in New Funding

https://www.nytimes.com/2025/09/02/technology/anthropic-funding-ai.html
2•bookofjoe•7m ago•1 comments

Wiki Wars

https://www.tabletmag.com/sections/news/articles/wiki-wars
1•uyzstvqs•9m ago•0 comments

Ask HN: When was the last time you visited Stack Overflow?

1•TimLeland•11m ago•1 comments

Top Chrome APIs Every Developer Should Try

https://anchorbrowser.io/blog/top-chrome-apis-every-developer-should-try
1•jmarbach•12m ago•0 comments

AI Artists vs. AI Engineers

https://frontierai.substack.com/p/ai-artists-vs-ai-engineers
2•cgwu•12m ago•0 comments

OpenAI Plans Jobs Platform, Certification Program for AI Roles

https://www.bloomberg.com/news/articles/2025-09-04/openai-unveils-jobs-platform-certification-pro...
4•srameshc•14m ago•0 comments

LSD shows promise for reducing anxiety in drugmaker's midstage study

https://apnews.com/article/lsd-psychedelics-study-anxiety-fda-drugs-trump-8821f7f3683051506d47864...
3•c420•15m ago•0 comments

Reversing Apple's iOS 0-click CVE-2025-43300: 2 bytes that make size matter

https://blog.quarkslab.com/./patch-analysis-of-Apple-iOS-CVE-2025-43300.html
1•transpute•16m ago•0 comments

Towards Rust in Windows Drivers

https://techcommunity.microsoft.com/blog/windowsdriverdev/towards-rust-in-windows-drivers/4449718
1•pjmlp•17m ago•0 comments

Sick People Are Sick

https://freddiedeboer.substack.com/p/sick-people-are-sick
1•PaulHoule•17m ago•0 comments

Galactic Algorithm

https://en.wikipedia.org/wiki/Galactic_algorithm
3•alexanderson•17m ago•0 comments

Microsoft Set to Dodge EU Fine with Offer to Unbundle Teams

https://www.bloomberg.com/news/articles/2025-09-04/microsoft-set-to-dodge-eu-fine-with-offer-to-u...
4•N19PEDL2•17m ago•2 comments

Automated local newsletter in Salina, KS makes $500k/year

https://contentquant.io/articles/local-newsletter-500k-revenue
1•aniketpanjwani•19m ago•1 comments

The GPU Glossary: Performance

https://modal.com/gpu-glossary/perf
1•amitprasad•20m ago•0 comments

A secure and privacy friendly offline digital euro

https://blog.xot.nl/2025/09/04/a-secure-and-privacy-friendly-offline-digital-euro/index.html
1•raybb•21m ago•0 comments

Does Europe Even Know What Competitiveness Means?

https://www.bloomberg.com/opinion/articles/2025-09-02/does-europe-even-know-what-competitiveness-...
2•TMWNN•23m ago•0 comments

We go to school to better understand problems

https://librarian.aedileworks.com/2025/09/01/we-go-to-school-to-better-understand-problems/
1•speckx•24m ago•0 comments

Academics and 'big tech' can learn from one another

https://www.nature.com/articles/d41586-025-02751-z
1•rntn•24m ago•0 comments

Vitamin D deficiency is widespread – but overusing supplements can be risky too

https://theconversation.com/vitamin-d-deficiency-is-widespread-but-overusing-supplements-can-also...
2•lentoutcry•26m ago•0 comments

MCP for LM Studio with Prompt Library and Custom Prompting

https://github.com/houtini-ai/lm
1•richardbaxter•27m ago•1 comments

Steve Hayden, Writer Behind Apple's '1984' Commercial, Dies at 78

https://www.nytimes.com/2025/09/04/business/media/steve-hayden-dead.html
2•donohoe•28m ago•1 comments

Surgeon jailed after amputation of own legs

https://www.bbc.com/news/articles/c5yvpx20le2o
3•tartoran•30m ago•2 comments

Startup behind $700-a-month bed 'pods' wants to put 10k more in San Francisco

https://www.sfgate.com/tech/article/startup-bed-pods-san-francisco-21029460.php
1•mikhael•33m ago•0 comments

Show HN: Dreamflow – Visual editor for AI generated Flutter apps

https://dreamflow.app/
6•abelsm•33m ago•1 comments
Open in hackernews

We built an interpreter for Swift (a compiled language)

https://www.bitrig.app/blog/swift-interpreter
22•jacobx•2h ago

Comments

jacobx•2h ago
Hi HN! Since we launched Bitrig [1], we've gotten questions about how it's able to run dynamically generated Swift code. I wrote up this post to answer that. Let me know if you want to know more about any aspects of it.

1: https://news.ycombinator.com/item?id=45041185

kelvinjps10•1h ago
Your website won't let me scroll to see the content on Firefox Android
jacobx•53m ago
Thanks for letting us know! We're investigating now.
pjmlp•39m ago
Same on Android Chrome.
localbuilder•59m ago
This is fascinating work, amazing job to the team!

Does SwiftUI have properties that uniquely make this type of interpreted system possible, or could it also use UIKit under the hood? On the surface, it seems like UIKit might be more difficult since you’d probably need to parse all of the obj-c header files in addition to the .swiftinterface.

Very cool stuff, excited to follow along how you all develop the product!

jacobx•53m ago
Thanks! Yes, it works just as well with UIKit. Fortunately Xcode can synthesize a .swiftinterface for Obj-C frameworks bridged into Swift, so we use that to generate a compiled interface for UIKit (and other Obj-C frameworks).
dfabulich•46m ago
Could you use this to support hot module replacement? Replacing a SwiftUI view in a live app without restarting the process?
jacobx•38m ago
Yeah you could! The only caveat is that either the whole app, or at least the part of the app showing the view you want to replace, would have to be running via the interpreter.

We're very interested in using the interpreter to improve the Swift developer experience in more ways like that.

jgbuddy•35m ago
Swift can already be used in REPL mode, not sure if it's accurate to say Swift is a strictly compiled language that a interpreter was developed for (see 'swift' command line executable). Seems misleading that this is not mentioned anywhere in the article.
firloop•31m ago
++ had the same reaction as you. When I was picking up Swift, the interpreter was invaluable to check my understanding (although I nearly always needed to begin with `import Foundation` to have my code actually work).
jgbuddy•28m ago
I suppose you could argue the repl is not a true interpreter (parsing and executing from an AST)
lanza•23m ago
That's a JIT. It uses the same compiler infrastructure but swaps out the AoT backend and replaces it with the JIT backend in LLVM. Notably, this blog post is targeting on-device usage which a custom JIT is not allowed. You can only interpret.