frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

CVE Daily, RSS Feed Generation Back End

https://github.com/PredestinedPrivacy/cvedaily-rss
1•PredestinedPriv•59s ago•0 comments

"I scratched my own itch" isn't good enough (2025)

https://longform.asmartbear.com/scratched-my-own-itch/
1•ogundipeore•3m ago•0 comments

AI helped diagnose 18 children whose rare diseases had stumped doctors

https://www.nbcnews.com/tech/innovation/ai-boston-childrens-hospital-diagnose-rare-diseases-kids-...
1•mgh2•8m ago•0 comments

Phone Batteries Keep Getting Better. So Why Are We Always Charging?

https://www.cnet.com/tech/mobile/features/phone-battery-life-silicon-carbon-what-next/
1•giuliomagnifico•9m ago•0 comments

Vim Creator Bram Moolenaar's Forgotten Programming Language, Zimbu (2023)

https://thenewstack.io/vim-creator-bram-moolenaars-forgotten-programming-language-zimbu/
2•azhenley•13m ago•0 comments

The Chinese Room

https://plato.stanford.edu/entries/chinese-room/
1•goloco•17m ago•1 comments

DARPA Heavy Life Challenge

https://www.darpa.mil/research/challenges/lift
2•mhb•19m ago•0 comments

Amazon S3 annotations: attach rich, queryable context directly to objects

https://aws.amazon.com/blogs/aws/amazon-s3-annotations-attach-rich-queryable-context-directly-to-...
2•firasd•24m ago•0 comments

White House talks with Anthropic shift to setting AI security rules

https://www.politico.com/news/2026/06/18/white-house-talks-with-anthropic-shift-to-setting-ai-sec...
2•daniban•26m ago•0 comments

Why Global Chaos Can't Stop the World Cup [video]

https://www.youtube.com/watch?v=vn8w80Ms7-w
1•mgh2•27m ago•0 comments

Amazon employees say they're facing termination for backing data center limits

https://www.theverge.com/ai-artificial-intelligence/952180/amazon-seattle-data-center-moratorium-...
1•1vuio0pswjnm7•27m ago•0 comments

AI DevKit – The control plane for AI coding agents

https://ai-devkit.com/
1•hoangnnguyen•27m ago•0 comments

Meetup.com login appears to be exceeding its reCAPTCHA Enterprise quota

1•infl8ed•34m ago•0 comments

Why do politicians want AI to go faster?

https://www.irishtimes.com/technology/big-tech/2026/04/02/why-do-politicians-want-ai-to-go-faster/
1•1vuio0pswjnm7•38m ago•1 comments

Inside the Rage Machine [video]

https://www.bbc.com/video/docs/series/10294077
2•1vuio0pswjnm7•45m ago•1 comments

Show HN: A/B testing LLM silence with one system-prompt toggle

https://twitter.com/RayanPal_/status/2067816563995189631
8•rayanpal_•47m ago•0 comments

Show HN: Sakha – An AI employee – onboarding tool for businesses

https://www.sakha.one
1•ankleshh•50m ago•0 comments

Profile(v2.1.4) physics-aware optimizer for vLLM (31→470 tok/s on A100)

https://github.com/jungledesh/profile
1•jungledesh•57m ago•0 comments

Staarfruit.com

https://staarfruit.com/
3•BishrKhan•58m ago•0 comments

Slay The Spire 2 – Major Update #2 – v0.107.1

https://store.steampowered.com/news/app/2868840/view/710026912607505280
1•j-scott•58m ago•1 comments

Fable Converted Pylint to Rust

https://pypi.org/project/prylint/
2•adamraudonis•59m ago•0 comments

AI Agents for Product Managers

https://ferrix.ai/blog/ai-agents-for-product-managers
1•B_Nemade•1h ago•0 comments

ElevenLabs Routes Image and Video to Outside Models, and Disclaims What They Do

https://ledger.somantix.ai/posts/eleven-labs-routes-image-and-video-to-outside-models-and-disclai...
2•bdroopy•1h ago•0 comments

Let's Encrypt has been down most of today

https://letsencrypt.status.io/#2026
86•widdakay•1h ago•31 comments

The Plan? To Resurrect Every Person Who Ever Lived

https://jonasanksher.substack.com/p/the-plan-to-resurrect-every-person
2•paulpauper•1h ago•0 comments

Universal Blue

https://universal-blue.org/
2•Tomte•1h ago•0 comments

How Poor People Manifested Billionaire Escape Resorts

https://katherineruss.substack.com/p/how-poor-people-manifested-bunker
1•Nakedemperor•1h ago•0 comments

Low-skilled attacker used Claude, Codex to breach 14 companies

https://www.helpnetsecurity.com/2026/06/17/ai-agents-offensive-cyber-operations-claude-codex/
1•xbmcuser•1h ago•0 comments

UDP Gateway Packet Sources

https://www.proxylity.com/articles/now-available-packet-sources
1•mlhpdx•1h ago•0 comments

Product Hunt launches doubled while engagement halved

https://producthunt.homek8s.com/trends
1•Meetvelde•1h ago•1 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/