frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Case Study: AI Trainer Platform and Job Board [Months 1-6]

https://www.indiehackers.com/post/case-study-ai-trainer-platform-and-job-board-months-1-6-fcb5f25d54
1•interceptor666•1m ago•0 comments

Show HN: Nostalgia – A shareable Windows 98 desktop builder

https://nostalgia-stilloo.zocomputer.io/
1•tsachin•1m ago•0 comments

Stop screeching about immigration, and get smart about it

https://www.noahpinion.blog/p/stop-screeching-about-immigration
1•squirrel•2m ago•0 comments

Show HN: AI Toolbox supports Claude Opus 5

https://www.ai-toolbox.co
1•superduper5551•2m ago•0 comments

Ask HN: Good Data Classification Software?

1•ChrisRun•5m ago•0 comments

New Tariffs Cover 99.4% of U.S. Imports. Your Plan Doesn't

https://medium.com/@alanscottencinas/new-tariffs-cover-99-4-of-u-s-imports-your-plan-doesnt-cb3a7...
1•encinas88•10m ago•0 comments

Code mode can help smaller LLM models

https://instavm.io/blog/how-code-mode-can-help-smaller-llm-models
1•mkagenius•13m ago•0 comments

Show HN: The TERSE state language and protocol

https://github.com/terse-lang/terse
1•infiniteAdmin•14m ago•1 comments

WICG Proposal Draft: Web Smart Card API

https://wicg.github.io/web-smart-card/
1•ubavic•15m ago•0 comments

Geometric Median

https://en.wikipedia.org/wiki/Geometric_median
1•rzk•16m ago•0 comments

SIMD within a bignum in pure Python

https://www.da.vidbuchanan.co.uk/blog/python-swar.html
1•fanf2•17m ago•0 comments

Click to Pray, Click to Leak: The Pope's Official App Exposes 700K+ User Emails

https://bobdahacker.com/blog/click-to-pray
3•OuterVale•20m ago•0 comments

Sharecoin – GPU fork of Bitcoin with a randomness beacon

https://github.com/TVHeroes/Sharecoin
2•TVHeroes•29m ago•0 comments

I'm Running a Programming Contest

https://eieio.games/blog/im-running-the-icfp-programming-contest/
1•signa11•30m ago•0 comments

The interesting part of an Agent Harness is what you add on top

https://www.martinrichards.me/post/whats_inside_the_harness/
1•3uler•31m ago•1 comments

Why a philosopher turned down Anthropic (AI industry asking the wrong questions)

https://www.ft.com/content/bdb3b820-905b-431e-82c0-386535755af1
1•bishopsmother•31m ago•0 comments

Memory Safety's Hardest Problem

https://matklad.github.io/2026/07/20/memory-safety-hardest-problem.html
1•miniBill•34m ago•0 comments

Continuation-Centric Computing with Arca

https://www.usenix.org/conference/osdi26/presentation/srivatsan
1•matt_d•35m ago•0 comments

Vortex – a Bluetooth-first alternative to KDE Connect

https://github.com/zoir-dev/vortex
2•zoyirjon•36m ago•0 comments

Ask HN: Teach Me Something New

1•chistev•37m ago•1 comments

Trump lashes out at 'fake news' jokes about 2028 presidential run, in press gala

https://www.france24.com/en/americas/20260725-trump-lashes-out-at-fake-news-and-jokes-about-2028-...
1•JPLeRouzic•37m ago•0 comments

Attorney General Bonta Secures Deal Halting Warner Bros

https://oag.ca.gov/news/press-releases/attorney-general-bonta-secures-deal-halting-warner-bros-pa...
1•01-_-•38m ago•0 comments

Australia's Next Target in the War on Kids Online: Your VPN

https://www.techdirt.com/2026/07/20/australias-next-target-in-the-war-on-kids-online-your-vpn/
1•01-_-•38m ago•0 comments

Against Slop: An Interview with Meghan O'Gieblyn

https://substack.nybooks.com/p/against-slop-an-interview-with-meghan
1•Michelangelo11•40m ago•0 comments

QBE Build Script for Windows

https://codeberg.org/codemplasi/QBE-Compiler-Backend-for-windows
1•triilman•41m ago•1 comments

A Rubyist in Go Land: Your First Pokémon API Client

https://baweaver.com/writing/2026/07/24/a-rubyist-in-go-land-your-first-pokemon-api-client/
1•thunderbong•42m ago•0 comments

The Last Honest Movie Star [video]

https://www.youtube.com/watch?v=1leVuo5M6w4
2•7777777phil•42m ago•0 comments

Amazon cuts some jobs in its artificial general intelligence unit

https://www.cnbc.com/2026/07/22/amazon-lays-off-some-employees-in-its-agi-unit.html
5•mgh2•44m ago•0 comments

Show HN: TS Compiler Knowledge Graph reducing AI tokens about 90%

https://github.com/samchon/ttsc/tree/master/packages/graph
2•autobe•45m ago•0 comments

Canadian woman who was NATO intern arrested in Belgium on spying charge

https://www.reuters.com/world/china/canadian-woman-who-was-nato-intern-arrested-belgium-spying-ch...
4•doener•46m 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/