frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Connect Dropbox to Claude

https://help.dropbox.com/integrations/connect-dropbox-to-claude
1•dr_pardee•1m ago•0 comments

Bernie Sanders Wants a U.S. Sovereign Wealth Fund for AI

https://www.forbes.com/sites/jamesbroughel/2026/06/22/bernie-sanders-wants-a-us-sovereign-wealth-...
1•hentrep•1m ago•0 comments

The Artificial Analysis Speech to Speech Index

https://artificialanalysis.ai/articles/announcing-the-artificial-analysis-speech-to-speech-index
1•theanonymousone•2m ago•0 comments

The Secret Truth Behind the Abundance Movement – Dylan Gyauch-Lewis – TMR [video]

https://www.youtube.com/watch?v=jNOMjH-3gfU
1•xbmcuser•2m ago•0 comments

Rust for Malware Development

https://git.smukx.site/smukx/Rust-for-Malware-Development
1•rzk•6m ago•0 comments

IatroBench: Pre-Registered Evidence of Iatrogenic Harm from AI Safety Measures

https://arxiv.org/abs/2604.07709
1•NavinF•6m ago•0 comments

Show HN: TakoQA – A harness to get a swarm of agents to break your application

https://github.com/Tako-Research/TakoQA
1•sakuraiben•6m ago•0 comments

Why David Levinson Could Hack Aliens Using a PowerBook 5300 in Independence Day (1996)

https://decodingvibes.com/blog/why-david-levinson-could-hack-aliens-independence-day/
1•altmanaltman•9m ago•0 comments

Loop engineering, latest AI buzzword, still needs humans in the loop

https://www.theregister.com/ai-and-ml/2026/06/24/loop-engineering-latest-ai-buzzword-still-needs-...
1•Bender•10m ago•0 comments

Companies are not looking before they're leaping into the AI playpen

https://www.theregister.com/devops/2026/06/24/companies-are-not-looking-before-theyre-leaping-int...
1•Bender•10m ago•0 comments

Hotly anticipated Grand Theft Auto VI will cost more than other AAA games

https://arstechnica.com/gaming/2026/06/grand-theft-auto-vi-will-cost-80-without-a-physical-disc/
1•Bender•11m ago•1 comments

Show HN: Find the Shortest Path in 24 steps

https://pathology.thinky.gg/level/hi19hi19/against
1•k2xl•14m ago•0 comments

Security tools inside coding agents get ignored unless we do things

https://www.boringappsec.com/p/edition-34-a-consensus-is-finally
1•joj123•19m ago•0 comments

You all think it's normal to sit behind a laptop all day

1•shoman3003•19m ago•0 comments

Yunwu

https://yunwu.ai/
2•handfuloflight•31m ago•0 comments

Wan Streamer v0.1: End-to-End Real-Time Interactive Foundation Models

https://wan-streamer.com/
1•ilreb•34m ago•0 comments

Powerful back-to-back earthquakes strike Venezuela, collapsing buildings

https://www.bbc.com/news/live/c621z18wznet
2•tartoran•38m ago•1 comments

Projectlens v1.0.6 released, supports npkill

https://www.npmjs.com/package/projectlens
1•dagmawibabi•39m ago•1 comments

Alternatives to Nested If Function

https://medium.com/@crispomwangi/7-alternatives-to-nested-if-function-a9cb07f3df1e
1•andsoitis•49m ago•0 comments

LXM: Better Splittable Pseudorandom Number Generators (and Almost as Fast) [video]

https://www.youtube.com/watch?v=XXh86oA-WOE
1•matt_d•50m ago•0 comments

The Unbearable Cheapness of Open Weight Models

https://jamesoclaire.com/2026/06/25/the-unbearable-cheapness-of-open-weight-models/
3•ddxv•51m ago•0 comments

Europe swelters under deadly 'Omega' heatwave, more records broken

https://www.reuters.com/business/environment/power-cuts-france-leave-thousands-sweltering-amid-sc...
3•rawgabbit•53m ago•2 comments

This One's Not AI

https://blog.tacoda.dev/this-ones-not-ai-992c95537790
2•tacoda•53m ago•2 comments

Calculus in Coinductive Form (1998)

https://ieeexplore.ieee.org/document/705675
1•measurablefunc•57m ago•0 comments

Tldr we built the fastest and most compact embedded vector database in the world

https://github.com/Egoist-Machines/LodeDB
1•erinmeryl•1h ago•1 comments

Ask HN: Where is our profession (programmer) going?

10•syntaxbush•1h ago•2 comments

China's Electric Vehicle Exports Reach Record High in May

https://www.bloomberg.com/news/articles/2026-06-24/china-s-electric-vehicle-exports-reach-record-...
4•xbmcuser•1h ago•0 comments

Home Feed does not show releases

https://github.com/orgs/community/discussions/146124
1•oaix•1h ago•0 comments

Supeintelligence Future

1•Siarchitect•1h ago•3 comments

Satteri: A Markdown pipeline forged in Rust for the JavaScript world

https://satteri.bruits.org/
1•handfuloflight•1h 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/