frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Mythos Proves AI Safety Can No Longer Live Inside the Model

https://grith.ai/blog/mythos-ai-safety-cannot-live-inside-the-model?a=0
1•edf13•38s ago•0 comments

See Anthropic Orchestrate the Narrative

1•functionmouse•45s ago•0 comments

Tell HN: Forget selectors and screenshots. The agentic web lives in your shell

1•keepamovin•1m ago•0 comments

Open (YC W24): we'll refund every dollar, up to $2M, if our AI agent disappoints

https://www.open.cx/guarantee
1•gharbat•1m ago•0 comments

Fox buying streaming platform Roku in cash-and-stock deal worth $22B

https://apnews.com/article/fox-roku-tubi-streaming-824089dbe16631fade634becdb164c94
2•geox•2m ago•0 comments

Floating Point: The Origin Story

https://thechipletter.substack.com/p/floating-point-the-origin-story
1•abhi9u•3m ago•0 comments

Quentin's Law of Optimal Velocity

https://statusq.org/archives/2026/04/12/13679/
1•bookofjoe•4m ago•0 comments

Anxiety around AI is materially triggered and existentially experienced

https://michaellwy.substack.com/p/the-texture-of-ai-dread
1•momentmaker•5m ago•0 comments

Show HN: TopoGlyph – an extensible language system for problem solving

https://github.com/xyzcoordinate/TopoGlyph/tree/main
1•zwyld•5m ago•0 comments

Show HN: Comment Vibe – on-device tone check using Chrome's built-in AI

https://chromewebstore.google.com/detail/comment-vibe/kibcnjcipaofjlbbnjdjaobbkoajiejp
1•Brosper•5m ago•0 comments

Plugins Case Study: Pluggy

https://eli.thegreenplace.net/2026/plugins-case-study-pluggy/
1•ibobev•5m ago•0 comments

An O(x)Caml book that runs

https://kcsrk.info/ocaml/oxcaml/teaching/nptel/llm/2026/06/13/an-oxcaml-book-that-runs/
1•ibobev•6m ago•0 comments

Google found liable for bad AI Overview results Let's play Truth Or Consequences

https://www.theregister.com/ai-and-ml/2026/06/15/google-found-liable-for-bad-ai-overview-results-...
1•beardyw•6m ago•0 comments

Unity vs. Floating Point

https://aras-p.info/blog/2026/06/11/Unity-vs-floating-point/
1•ibobev•6m ago•0 comments

What rare earths and chip controls predict about the Fable shutdown

https://tediware.com/resources/updates/what-rare-earths-and-chip-controls-predict-about-the-fable...
1•adriand•9m ago•0 comments

When Three Passive Funds Become the Market

https://www.apollo.com/wealth/the-daily-spark/When-Three-Passive-Funds-Become-the-Market
1•akyuu•9m ago•0 comments

I built an AI tool to auto-clip the most "hyped" moments from YouTube streams

https://streamcut-jt4lxhl5gbajgzgc5wx438.streamlit.app/
1•Adilaa•9m ago•0 comments

Show HN: GitDocs – AI that writes your README and opens a PR on your repo

https://gitdocs.online/
1•shivansh0512•10m ago•0 comments

How the Squamish struck gold in Vancouver

https://worksinprogress.co/issue/how-the-squamish-struck-gold-in-vancouver/
3•duffycommaryan•13m ago•0 comments

The World's Leading Deepfake Expert No Longer Trusts His Own Eyes

https://www.nytimes.com/2026/06/14/us/ai-deepfake-hany-farid.html
2•bookofjoe•14m ago•1 comments

White House's export limits on Anthropic linked to concerns about Chinese access

https://www.semafor.com/article/06/13/2026/white-house-move-to-limit-anthropic-linked-to-concerns...
2•doener•15m ago•0 comments

I'm 15. I spent the last three years building a programming language

https://x-lang.vercel.app/ineedhelp
2•x-xxx•15m ago•1 comments

Belgian politicians would rather risk treason charges than trust engineers

http://mikhailian.mova.org/node/325
11•sam_lowry_•19m ago•1 comments

Show HN: DJ Mix realtime local AI music with a controller; Magenta, Stable Audio

https://github.com/brxs/slipmate
2•ttoinou•20m ago•0 comments

We Get AI Costs Under Control

https://fwdnow.io/en/blog/finops_ai_kosten_optimieren/
2•ayoisaiah•24m ago•0 comments

ClassicQ – A QuakeWorld client for the 30th anniversary of Quake

https://github.com/classicq/classicq
2•VimEscapeArtist•28m ago•0 comments

Scientist creates 'mini‑universe' to measure time without a clock

https://phys.org/news/2026-06-scientist-miniuniverse-clock.html
2•wjSgoWPm5bWAhXB•32m ago•0 comments

AWS rolls the dice for faster, more efficient networking

https://www.theregister.com/networks/2026/06/13/aws-rolls-the-dice-for-faster-more-efficient-netw...
3•TowerTall•32m ago•1 comments

USD by the Numbers

https://taylor.town/money-supply
2•tosh•36m ago•0 comments

Programming the ZX Spectrum's Bitmap Display

https://bumbershootsoft.wordpress.com/2026/06/13/programming-the-zx-spectrums-bitmap-display/
4•ibobev•39m ago•0 comments
Open in hackernews

Automatically add missing "async/await" keywords to your TypeScript code

https://github.com/stanNthe5/typescript-autoawait
7•theThree•1y ago

Comments

bastawhiz•1y ago
Is this a problem that people actually have?
xeromal•1y ago
Fun side project man!
primitivesuave•1y ago
I took a peek at the implementation - I think this only works for a case where the typing explicitly contains the string "Promise". For example, I don't think it would work if I use `SomeInterface["some_promise_key"]` or might incorrectly add an async if I use `Awaited<Promise<...>>`.

I think what you're trying to build might be best served by Typescript's VFS - https://www.npmjs.com/package/@typescript/vfs. You can load the local files into an in-memory type system, and quickly extract async/await hints that might be more useful for a typical TS developer. I think there's a lot of really interesting static analysis you could do to improve async/await safety, as it certainly leads to issues from time to time.

joshstrange•1y ago
I do not want to be mean but I think you'd be much better served with ESLint rules to yell at you when you don't await when you should or do when you shouldn't.

This should _not_ be an automatic operation since it can change behavior in ways that will be unclear to the developer (completely undoing any gain from them being added automatically).

theThree•1y ago
You can still control it by adding "//no-await". In fact, the "//no-await" makes me feel more clear.
nextweek2•1y ago
I created a ticket, using comments is not necessary because there is already the `void` syntax for when you don't want to wait:

https://github.com/stanNthe5/typescript-autoawait/issues/1

nextweek2•1y ago
It should be noted that there is already a lint rule for this: https://typescript-eslint.io/rules/no-floating-promises/