frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Los Angeles District Bans Most A.I. For Students

https://www.nytimes.com/2026/09/03/us/lausd-schools-ban-ai-artificial-intelligence.html
1•bookofjoe•37s ago•1 comments

Basic News – a Telegram bot with customizable news digests

https://basicnews.world/
1•xenohunter•1m ago•0 comments

A pre-registered test: can a business's rules be recovered from its data?

https://justinsmith.build/writing/everything-a-business-knows/
1•s14jsmith•5m ago•0 comments

What runs when you open a repository

https://veltron.cc/research/what-runs-when-you-open-a-repository
1•nulvec•5m ago•0 comments

Show HN: Time Wizard

https://huggingface.co/jadidbourbaki/time-wizard
1•jadidbourbaki•5m ago•0 comments

Show HN: Mongotar – Files to Prompt, and Back

https://github.com/sebastiancarlos/mongotar
1•httbs•5m ago•0 comments

Ask HN: Wolfram Cloud Is Out

1•smithmayowa•8m ago•0 comments

Almost half of ICANN-accredited registrars under the control of a single busines

https://domainincite.com/31912-dropcatch-acquires-300-more-registrars
3•dendark•9m ago•0 comments

SwiftTUI

https://swifttui.sh/
1•frizlab•10m ago•0 comments

Cloud Engineer

1•endowed7•11m ago•0 comments

Exhibit of 2026 AI Agents

https://agent-museum-2026.halstonsellentin.chatgpt.site
1•hsellentin•11m ago•0 comments

Understanding RabbitMQ in Simple Terms

https://sushantdhiman.dev/blog/understanding-rabbitmq/
1•birdculture•12m ago•0 comments

Record-High 89% in U.S. Say Government Corruption Widespread

https://news.gallup.com/poll/713933/record-high-say-government-corruption-widespread.aspx
5•karakoram•12m ago•1 comments

DaemonCore Launches a Slew of Free Pentesting Tools

https://www.daemoncore.app/
1•DaemonCoreApp•13m ago•1 comments

Big Crocs vs. Little Crocs

https://marcrandolph.substack.com/p/big-crocs-vs-little-crocs
1•fagnerbrack•15m ago•0 comments

Send interactive life coaching worksheets [video]

https://www.youtube.com/watch?v=gNW7sSXSoW4
1•shammadahmed•16m ago•0 comments

Make money from your menu bar

https://sponsorbar.io/
1•partsch•16m ago•0 comments

Gemini vs. Claude: Which AI Model created a better perfume?

https://www.youtube.com/watch?v=YfFk050AjPw
1•yipinwong•18m ago•1 comments

A Hundred Steps Back

https://www.inventbuild.studio/blog/a-hundred-steps-back-3d12f33c95138084bb9efc107cc54d13
1•virgil_disgr4ce•18m ago•0 comments

Actively exploited sandbox RCE in all Chromium versions

https://nvd.nist.gov/vuln/detail/cve-2026-85046
17•negura•24m ago•2 comments

Mathathon – $2M Hackathon for Math

https://twitter.com/_sathvikr/status/2095989588418249093
3•brian-bfz•25m ago•1 comments

Show HN: Fast rust-based repository launcher for your code projects

https://santiagodevelopment.com/p/2026/9/4/repo-zoo
1•jamessantiago•28m ago•0 comments

Icons as a Service

https://nravic.com/blog/images/
1•nravic•31m ago•0 comments

Claude Fable 5.1 Benchmark: Draw a Python Reading a Book

https://realpython.com/ai-benchmark-claude-fable-5-1/
1•dbader•34m ago•0 comments

Harvey Tenet Research Preview

https://www.harvey.ai/blog/post-training-update-harvey-tenet
1•gmays•34m ago•0 comments

GPT-6 Astra Benchmark: Draw a Python Reading a Book

https://realpython.com/ai-benchmark-gpt-6-astra/
1•dbader•35m ago•0 comments

Regular coffee beats decaf in protecting the brain from chronic stress: study

https://www.psypost.org/regular-coffee-beats-decaf-in-protecting-the-brain-from-chronic-stress-mo...
1•ivewonyoung•36m ago•0 comments

GPT-6 Astra on OpenRouter

https://openrouter.ai/openai/gpt-6-astra
10•Topfi•36m ago•5 comments

Tell HN: Anthropic just reset usage, including Fable

2•consumer451•39m ago•5 comments

15h.org – Open-Source Firmware and Support for AMD's Family 15h CPU's/MB's, etc.

https://15h.org/index.php/Home
2•peter_d_sherman•39m ago•1 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/