frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: AER – A subjectless protocol anchored in TPM 2.0 and WASM receipts

https://medium.com/@team-sequence/designing-a-subjectless-distributed-protocol-for-autonomous-mac...
1•Quanxs•25s ago•0 comments

1k Year Game Jam

https://itch.io/jam/official-1000-year-jam
1•EvgeniyZh•27s ago•0 comments

Show HN: Yamaha TDM 850 3vd 1993 Atlas (made with Astra)

https://punkx.org/tdm850/
1•jackdoe•1m ago•0 comments

I Tested a New Intel Wildcat Lake CPU

https://www.pcmag.com/news/i-tested-a-new-intel-wildcat-lake-cpu-should-laptop-shoppers-on-a-budget
2•teleforce•5m ago•0 comments

AI Stole My Identity

https://agreon.de/blog/stolen-identity/
1•agreon•6m ago•0 comments

I built a personal compliance calendar for EU and UK freelancers

https://compliance-tracker.app
1•dimitrisal•7m ago•0 comments

Yak Shaving

https://theprogrammersparadox.blogspot.com/2026/09/yak-shaving.html
2•saikatsg•11m ago•0 comments

Show HN: T3rnel Browser – drive the browser you're signed into

https://t3ratech.github.io/t3rnel-browser-plugin/
2•tkaviya•11m ago•0 comments

Ask HN: What Has Happened to Authentication?

1•yoz-y•12m ago•0 comments

Show HN: Booley – open-source IDE for agentic chip design

https://github.com/boldaxolotl/booley
1•boldaxolotl•14m ago•0 comments

Aircraft Engine Run-to-Failure Data Set Under Real Flight Conditions

https://ntrs.nasa.gov/citations/20205001125
2•teleforce•24m ago•0 comments

How GPT‑5.6 Sol helps run quantum computing experiments

https://openai.com/index/codex-quantum-computing-experiments/
9•theanonymousone•25m ago•0 comments

I'm going back to coding by hand

3•trencedamp•25m ago•0 comments

The Adults Aren't Coming

https://nume.ca/blog/the-adults-arent-coming
2•littlexsparkee•26m ago•0 comments

To Speak Meaningfully About Music Criticism

https://medium.com/the-hitmagist/to-speak-meaningfully-about-music-criticism-6d0d9f4ce605
1•bryanrasmussen•28m ago•0 comments

Optimized Solar Cell

https://simplifier.neocities.org/optsolar
2•adrianN•35m ago•0 comments

LG accused of 'egregious invasion of privacy' over TV data collection

https://www.theregister.com/security/2026/09/08/lg-accused-of-egregious-invasion-of-privacy-over-...
6•beardyw•36m ago•0 comments

Google research shows when AI agents communicate, some cheat while others tattle

https://www.theregister.com/ai-and-ml/2026/09/08/google-research-shows-when-ai-agents-communicate...
2•beardyw•37m ago•0 comments

Super Smash Bros Melee is 100% decompiled

https://github.com/doldecomp/melee
1•tosh•38m ago•0 comments

YouTube cracks down on 'AI ghost creators'

https://www.semafor.com/article/09/03/2026/youtube-cracks-down-on-ghost-creators
6•giuliomagnifico•39m ago•0 comments

How I Prompt

https://thorstenball.com/talks/how-i-prompt/
1•luu•40m ago•0 comments

GPT Image 2.5 prompts and examples – a continuously updated collection

https://github.com/magiccreator-ai/awesome-gpt-image-2-5-prompts
1•Kevin_Guo•40m ago•0 comments

Logo Programming Language

https://el.media.mit.edu/logo-foundation/what_is_logo/logo_programming.html
3•azhenley•41m ago•0 comments

Silent Revision: Measuring Undisclosed Change in AI Safety Frameworks

https://arxiv.org/abs/2609.08789
2•sbulaev•41m ago•0 comments

A Multiplayer Pong over SSH

https://antics.gg/ssh
1•eric_khun•42m ago•0 comments

Sam Altman's statement on the Navier-Stokes dispute

https://twitter.com/sama/status/2097385167002415140
8•vertigoruntime•43m ago•0 comments

Never Corner an Optimizer

https://certiv.ai/blog/never-corner-an-optimizer/
1•azhenley•43m ago•0 comments

Zooming with Your Feet

https://www.mpb.com/en-us/content/tips-and-techniques/zooming-with-your-feet-or-how-i-learned-to-...
1•tosh•43m ago•0 comments

What OpenAI's latest controversy tells us about the future of math

https://www.technologyreview.com/2026/09/08/1143747/what-openais-latest-controversy-tells-us-abou...
2•joozio•45m ago•0 comments

Designing a Dbt Pipeline for Consent Withdrawal

https://kore-nordmann.de/blog/designing-a-dbt-pipeline-for-consent-withdrawal.html
1•Tomte•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/