frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

We Built a City of 10k AI Researchers

https://lab.cloud/society/
1•simonpure•5m ago•0 comments

Congestion pricing funds $5M program for overnight truck deliveries in NYC

https://gothamist.com/news/congestion-pricing-funds-5-million-program-for-overnight-truck-deliver...
1•geox•7m ago•0 comments

Show HN: I built 11 Sudoku variants – killer cage generation was the hard part

https://iqiqgame.com/tags/sudoku
1•fang3651•9m ago•1 comments

Side-Channel Leakage from the File-Notification System

https://inoti.fyi/
1•xiaoyu2006•12m ago•1 comments

Learning to Discover Interesting Mathematics

https://arxiv.org/abs/2609.28603
1•E-Reverance•14m ago•0 comments

Research into file-notification attacks on Linux

https://lwn.net/Articles/1096431/
1•xiaoyu2006•15m ago•0 comments

FDA panel endorses first-of-a-kind cancer blood test from Grail

https://apnews.com/article/grail-test-cancer-fda-dna-8fc5480be365b59c450043daa38cad30
1•gmays•17m ago•0 comments

Government considers £11 monthly UK broadband fee to fund BBC TV

https://www.ispreview.co.uk/index.php/2026/09/government-considers-11-monthly-uk-broadband-fee-to...
1•ksec•25m ago•1 comments

Show HN: Today I deployed this Durable Chat application and was impressed

https://durable-chat-template.netly.workers.dev/PghOYV3NHew0fYlhGAUZB
1•DinakarS•26m ago•0 comments

AICore: Exploring an adaptive control layer for heterogeneous PCs

https://github.com/7-hello007/AICore-Showcase
1•Kenny9892•26m ago•0 comments

Scaling Laws for Neural Language Models (first "scaling laws" paper from 2020)

https://arxiv.org/abs/2001.08361
1•thoughtpeddler•26m ago•0 comments

Bad examples can override agent skill files

https://codecut.ai/agent-skills-bad-session-history/
2•khuyentran1401•27m ago•0 comments

Search and Recommender Engines AI

https://github.com/alopatenko/LLMSearchRecommender
1•pltig•27m ago•0 comments

Ask HN: Who is smarter than you that you listen to what they have to say?

1•SMAAART•27m ago•1 comments

Using AI to Contribute to Open Source

https://www.visidata.org/blog/2026/ai/
1•pietroppeter•29m ago•1 comments

Show HN: Apple Ads as Infra as Code

https://github.com/picubedllc/terraform-provider-appleads
1•irdz•31m ago•0 comments

Supreme Court's emergency rulings imposing institutional costs

https://thehill.com/regulation/court-battles/6110805-justice-jackson-critiques-scotus-emergency-d...
1•Alien1Being•32m ago•0 comments

Show HN: Zchyoom - Live-ish Shinkansen Map

https://traingo.nyoom.io
2•qmarchi•34m ago•1 comments

Human Help to Survive AI

https://humanityark.cdtglobal.org/
1•igdiaz•38m ago•1 comments

Spec Vibing with Speccheck

https://github.com/rioffe/speccheck
1•robertioffe•41m ago•1 comments

The End of Apps and Websites

https://debuggerdotbreak.judahgabriel.com/2026/04/14/the-end-of-apps-and-websites/
2•mooreds•45m ago•1 comments

MentalHealthBench

https://openai.com/ru-RU/index/introducing-mentalhealthbench/
1•GloVin•45m ago•0 comments

Some data centers could consume more power than major cities

https://www.visualcapitalist.com/these-data-centers-could-consume-more-power-than-cities/
1•oliculipolicula•46m ago•0 comments

Global bond sell-off deepens, sending borrowing costs higher around the world

https://www.cnn.com/2026/09/24/investing/bond-market-global
2•mooreds•47m ago•0 comments

How to serve trillions of tokens for trillion-parameter coding agents

https://modal.com/blog/trillion-tokens-trillion-parameters
2•birdculture•47m ago•0 comments

YouTube Announces A/B Testing for Video Contents

https://www.reddit.com/r/youtube/comments/1wog7nq/youtube_announces_ab_testing_for_videos/
1•tech234a•49m ago•0 comments

Appointing AIs to manage bitter political divisions

https://spakhm.com/projects/assembly.html
1•duck•49m ago•0 comments

Nike's Phil Knight donates $1B to establish engineering school at U Oregon

https://www.nytimes.com/2026/09/23/us/billion-dollar-donation-university-oregon-phil-knight.html
2•osnium123•50m ago•2 comments

Stripe Link exposes merchants to undefendable fraud risk

2•hberg•52m ago•0 comments

Fagan – frontier models plan and review, open-weight models write code

https://github.com/motock/fagan
1•motock•54m 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/