frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Production and Reliability Series

https://yusufaytas.com/series/production-and-reliability
6•yusufaytas•2m ago•1 comments

FIFA World Cup 2026 Data Portraits

https://wc26.bogachev.fr/index.html
3•sebg•2m ago•0 comments

Fake IDs, Dummy Manuscripts and a Rare Book Heist at U.C.L.A

https://www.nytimes.com/2026/07/09/us/ucla-library-theft-chinese-books-california.html
2•reaperducer•3m ago•0 comments

Show HN: ReasonGate- An explainable gate that blocks LLM prompt injection

https://github.com/cgrtml/reasongate
2•Cagritemel•3m ago•0 comments

Boron – fast and lightweight stackful coroutines

https://codeberg.org/jjl/boron
2•miniBill•3m ago•0 comments

C++ reconstruction of Russian kamikaze drone onboard autonomy stack

https://github.com/19h/EPathfinder
2•19h•3m ago•1 comments

EU will force Google to share search data and open up AI on Android

https://arstechnica.com/gadgets/2026/07/its-official-eu-will-force-google-to-share-search-data-an...
3•EspadaV9•5m ago•0 comments

Ask HN: cybersecurity refusal for turning a jailbroken kindle into a monitor

3•areoform•10m ago•1 comments

Akihiro Miwa, Actor and Singer with Gender-Fluid Glamour, Dies at 91

https://www.nytimes.com/2026/07/16/movies/akihiro-miwa-dead.html
2•moritzwarhier•10m ago•0 comments

Forced to use a Pin in Windows 11, some alternatives

https://learn.microsoft.com/en-us/answers/questions/3865530/forced-to-use-a-pin-in-windows-11-why...
2•itronitron•12m ago•0 comments

You cannot copyright AI generated material in the US

https://twitter.com/CrimeDecoder/status/2077878317928087906
2•apwheele•14m ago•0 comments

Godot Community Poll 2026

https://godotengine.org/article/godot-community-poll-2026/
2•pineappletooth_•16m ago•0 comments

CVE-2026-25089: FortiSandbox unauthenticated command injection added to CISA KEV

https://hellorecon.com/blog/cve-2026-25089
3•slvnx•17m ago•0 comments

Flowers for Algernon

https://en.wikipedia.org/wiki/Flowers_for_Algernon
2•Jimmc414•18m ago•1 comments

Unheard 1965 David Bowie songs to be released – including Jimmy Page on guitar

https://www.theguardian.com/music/2026/jul/15/david-bowie-unheard-songs-1965-jimmy-page-the-shel-...
2•bookofjoe•20m ago•0 comments

'Likweli': A new monkey species discovered in the Congo Basin

https://news.yale.edu/2026/07/15/meet-likweli-new-monkey-species-discovered-congo-basin
3•gmays•24m ago•0 comments

ReRust – A collection of projects rewritten in Rust

https://reru.st
3•rafayello•27m ago•0 comments

Just Do Things

https://ray.zo.space/blog/just-do-things
3•erhuve•29m ago•0 comments

Show HN: Vektorgeist- A platform for AI operators and their agent's

https://vektorgeist.com/
2•VektorGeist•32m ago•0 comments

What Doom taught us about AI-assisted incident response

https://rootly.com/blog/what-doom-taught-us-about-ai-assisted-incident-response
3•sylvainkalache•33m ago•0 comments

Blood in the Datacenter

https://www.seangoedecke.com/luddites-and-ai-datacenters/
6•gfysfm•33m ago•0 comments

Neuromancer Teaser 2

https://www.youtube.com/watch?v=H0OhGl8VAIo
2•wslh•36m ago•0 comments

Ask HN: Who gets credits on big math questions solved by LLMs?

3•silentmafia•36m ago•1 comments

Amtrak launches new study on New Haven-Providence route

https://rhodeislandcurrent.com/2026/07/16/amtrak-launches-new-study-on-new-haven-providence-route/
1•chmaynard•37m ago•1 comments

New DHS rules limit foreign student visas to 4 years plus extensions

https://www.dhs.gov/news/2026/07/16/trump-administration-issues-final-rule-end-foreign-student-vi...
1•htiek•41m ago•0 comments

Truth Social to sell Wall Street firms the 'fastest' access to Trump's posts

https://www.nbcnews.com/business/media/trump-media-early-access-truth-social-posts-rcna587912
5•ceejayoz•43m ago•0 comments

We rewrote our custom visualisation renderers from SVG to be in Canvas

https://www.polarsignals.com/blog/posts/2026/07/14/new-and-faster-profiler
2•yomieluwande•44m ago•0 comments

New Stock Dashboard

https://stockhubweb.com/login?next=/home
1•alvisecuni•44m ago•0 comments

Show HN: HW/SW co-design blueprint for fault recovery in LLM training

https://github.com/PJHkorea/pim-hbm-bypass
2•PJHkorea•45m ago•1 comments

Priora: Blind-rank features, get a Scope Score, export a Cursor-ready pack

https://www.priora.space
1•kljr_dev•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/