frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

A Deep Dive on China's "LineShine" All-CPU, Exaflops-Class Supercomputer

https://www.nextplatform.com/hpc/2026/06/25/a-deep-dive-on-chinas-lineshine-all-cpu-exaflops-clas...
1•jonbaer•5m ago•0 comments

Anthropic's philosopher answers your questions [video]

https://www.youtube.com/watch?v=I9aGC6Ui3eE
2•binyu•6m ago•1 comments

Om Malik – Silicon Valley Has an Empathy Vacuum (Nov 2016)

https://www.newyorker.com/business/currency/silicon-valley-has-an-empathy-vacuum
2•rmason•10m ago•0 comments

Van Halen test

https://en.wikipedia.org/wiki/Van_Halen_test
3•teleforce•12m ago•0 comments

Show HN: FastPlay, a fast minimal Windows video player built in Rust

https://github.com/CalvinSturm/FastPlay
1•CalvinSturm•13m ago•0 comments

Investors bet on AI again after Micron reports 346% sales jump

https://www.cnn.com/2026/06/25/business/micron-results-ai-stocks-volatility
1•dabinat•15m ago•0 comments

Steve Jobs felt certain Apple would never have existed without making blue boxes

https://macdailynews.com/2024/06/19/steve-jobs-felt-certain-apple-would-never-have-existed-withou...
1•SockThief•18m ago•0 comments

Popular Adblock for YouTube extension contains remote code execution

https://www.island.io/blog/badblocker-11-million-users-one-server-call-away-from-compromise
2•fastest963•24m ago•0 comments

Claude AI's link handling and fix

https://www.FoolQuest.com/
2•Aaron_Agassi•25m ago•0 comments

Show HN: A field recording of the underground. The engineers and producers

https://2inch.fm/
2•shawnzam•27m ago•1 comments

Wall Street Embraces the Dollar as Warsh's Fed Activates Bulls

https://www.bloomberg.com/news/articles/2026-06-25/wall-street-embraces-the-dollar-as-warsh-s-fed...
3•petethomas•28m ago•0 comments

Tropius: Detect AI Tropes in Prose

https://tangled.org/desertthunder.dev/tropius
2•birdculture•31m ago•0 comments

Ask HN: Anyone Here Work for Google? Specifically on the Google SMB Newsletter?

2•VladVladikoff•34m ago•0 comments

Trump administration asks to hold OpenAI's next model

https://www.axios.com/2026/06/25/trump-administration-openai-gpt-model-release
5•dramebaaz•35m ago•0 comments

Show HN: Replyt – Track which Reddit discussions become customers

https://replyt.co
4•hectorguedea•36m ago•0 comments

Ask HN: Norway bans AI in elementary schools

3•mellosty•39m ago•3 comments

This isn't a PPT. Repo speaks

2•hblqzj•43m ago•0 comments

Show HN: Pw-whip, a bridge between PipeWire and WHIP

https://github.com/jech/pw-whip/
2•jech•45m ago•0 comments

Poll

5•krapp•46m ago•2 comments

Deep Dive into IBM's new NanoStack 0.7nm Process Node for Chips – 666 MTr/mm2

https://morethanmoore.substack.com/p/ibms-announces-07nm-process-node
4•IanCutress•47m ago•0 comments

Hollywood-backed nonprofit launches machine-readable AI consent registry

https://rslmedia.org/
2•navs•49m ago•0 comments

The Garbage Collection Handbook: The Art of Automatic Memory Management (2nd Ed)

https://gchandbook.org/
9•teleforce•53m ago•1 comments

AI doesn't take jobs. It takes tasks

https://www.nextgig.rocks/dash/how-ai-changes-jobs
3•poseidon_sg•55m ago•1 comments

How do you tackle a backlog of deferred maintenance you didn't create?

3•zeelex•55m ago•0 comments

Elasto Mania Ported to WebAssembly

https://joshumax.github.io/elma-web/
2•joshumax•58m ago•0 comments

Show HN: HoprLabs – a Python lab for prototyping AI math ideas

https://github.com/TangibleResearch/HoprLabs
3•reboy•1h ago•0 comments

Oracle workforce shrinks by about 21,000 employees amid AI adoption

https://finance.yahoo.com/technology/ai/articles/oracle-workforce-shrinks-13-204431510.html
3•akyuu•1h ago•0 comments

Ford could bring F1-inspired 'skunkworks' EVs to Europe

https://www.autocar.co.uk/car-news/electric-cars/ford-could-bring-f1-inspired-skunkworks-evs-europe
3•breve•1h ago•0 comments

Show HN: DeepSeek Flash inverted the economics of agent products

https://www.rtrvr.ai/blog/code-as-plan-deepseek-flash-text-only-browser-agent
8•arjunchint•1h ago•0 comments

Om Malik

https://en.wikipedia.org/wiki/Om_Malik
2•emot•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/