frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Bottles' Founder Has Managed to Run Microsoft 365 on Linux

https://itsfoss.com/news/bottles-microsoft-365-early-look/
2•fork-bomber•53s ago•0 comments

Litelm: LiteLLM Without the Bloat

https://github.com/kennethwolters/litelm
2•kennethwolters•2m ago•0 comments

Benchmarking coding agents perform on scraping

https://xulux.ai/blog/scraping-agents-benchmark
3•weebhek•3m ago•0 comments

Open-weights world models' parameter size doubles every ~6 months

https://twitter.com/kaarelkaarelson/status/2098472992821199358
2•kaarelson•3m ago•0 comments

Limiting AI news would hide what is happening to software

https://lord.technology/2026/09/11/ai-is-not-crowding-out-hacking.html
2•meetpateltech•4m ago•0 comments

Top mathematicians are outraged by OpenAI's methods

https://www.economist.com/science-and-technology/2026/09/11/top-mathematicians-are-outraged-by-op...
3•sbulaev•5m ago•0 comments

Why Your Product Transformation Will Fail

https://cutlefish.substack.com/p/tbm-291-why-your-product-transformation
2•AntonZ234•5m ago•0 comments

ChatGPT, find this person and follow them

https://twitter.com/andonlabs/status/2098103320208712049
2•tosh•6m ago•0 comments

The EPA Is Planning to Scrap Public Review Rules for Data Center Pollution

https://capitalbnews.org/data-centers-permit-rules-epa/
2•doener•7m ago•0 comments

Inside IBM's New Quantum Computing Fridges, 180 Times Colder Than Deep Space

https://nautil.us/inside-ibms-new-quantum-computing-fridges-180-times-colder-than-deep-space-1284948
3•Brajeshwar•8m ago•0 comments

GPU-time: A small neural model for parsing date and time

https://gpu-time.arikko.dev/
2•arikchakma•9m ago•1 comments

Oppenheimer's Gamble – The Plutonium Crisis (2023)[video]

https://www.youtube.com/watch?v=W06g7gIfwRE
2•num42•10m ago•0 comments

Just Me, a Keyboard, and a Computer

https://a.drien.com/posts/just-me-a-keyboard-and-a-computer/
2•macNchz•10m ago•0 comments

Commander Keen's Adaptive Tile Refresh

https://fabiensanglard.net/ega/index.html
2•birdculture•11m ago•0 comments

Created a benefits assistant for 401k, mega backdoor Roth, and HSA

https://www.cedarwise.ai
3•yuchaoran2011•12m ago•1 comments

Apple to Pay $250 per iPhone Duo Foldable Display in Samsung Deal

https://www.macrumors.com/2026/09/11/apple-pay-250-dollars-iphone-duo-display-samsung/
2•mfiguiere•13m ago•1 comments

Thinking and moving tasks surpass crossword puzzles at brain health

https://www.yorku.ca/news/2026/08/19/thinking-and-moving-tasks-surpass-crossword-puzzles-at-brain...
1•debo_•14m ago•0 comments

AI researcher Andrew Tulloch is leaving Meta

https://www.semafor.com/article/09/09/2026/ai-researcher-andrew-tulloch-is-leaving-meta
2•gmays•14m ago•0 comments

ChatGPT Sites Updates

https://twitter.com/ChatGPT/status/2098457920291946894
1•tosh•17m ago•0 comments

Show HN: Toast, a beautiful by default in terminal IDE

https://github.com/paradise-runner/toast
2•dividedcomet•17m ago•0 comments

MIT Explains the 12 Possible Endings for AI

https://www.youtube.com/watch?v=FLcrvMfHUJM
1•nyc111•21m ago•0 comments

Blue-X – Exploring wavelength reduction (2–7 nm range) beyond EUV

https://euvlitho.com/blue-x-copy/
1•peter_d_sherman•21m ago•1 comments

Suno v6 released for music creation

https://suno.com/blog/introducing-v6
2•utiiiD•23m ago•0 comments

If we all didn't copy each other life would be awful

https://michaelgv.uk/posts/2026/09/the-advantages-of-culture/
1•NesquikMike•23m ago•0 comments

Scientists Discover the Earliest Evidence of Drug Use in 25,000-Year-Old Teeth

https://www.openculture.com/2026/09/scientists-discover-the-earliest-evidence-of-drug-use-in-2500...
2•Brajeshwar•25m ago•0 comments

Who Owns California's Gold?

https://reason.com/2026/09/07/who-owns-californias-gold/
2•bookofjoe•27m ago•0 comments

A Severe Misalignment of AI in Mathematics - Terence Tao et al

https://mathandai.org/
5•meredydd•27m ago•0 comments

Room 641A

https://en.wikipedia.org/wiki/Room_641A
8•paimapi•27m ago•1 comments

The Rise of AI Slop Tools

https://twitter.com/julihespenheide/status/2098070502157791452
2•picdit•29m ago•0 comments

Show HN: Viaduct – Architecture change sets for AI coding agents

https://c4.quietgridlabs.com/
2•igrlgkv•29m 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/