frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

"We want it to confuse people, but also make people happy."

https://unsung.aresluna.org/we-want-it-to-really-confuse-people-but-also-really-make-people-happy/
1•zdw•45s ago•0 comments

Defrag98: Windows 98 Disk Defragmenter Simulator Online

https://defrag98.com
1•throw0101a•2m ago•0 comments

Twitter (Not affiliated with X Corp)

https://twitter.now/maintenance/
1•JetSpiegel•4m ago•0 comments

The issue with AI video generation

https://dimension.so/
1•samit_manjunath•5m ago•0 comments

Free K–12 lessons to prepare students for life

https://www.commonsense.org/education/digital-literacy
1•mooreds•5m ago•0 comments

Some frameworks for helping each other amidst the mess

https://jembendell.com/2026/08/17/here-are-some-frameworks-for-helping-each-other-amidst-the-mess/
2•mooreds•8m ago•0 comments

How the weather in space can affect us on Earth

https://www.bbc.com/news/articles/czjlzdw8gp0o
1•mooreds•9m ago•0 comments

Show HN: Live AI video streams that write themselves one shot at a time

https://tv.mormon.garden
1•mormonnegro•10m ago•0 comments

States can regulate prediction markets as gambling, federal appeals court rules

https://www.cnn.com/2026/08/28/business/states-prediction-markets-gambling-federal-appeals-court
1•healsdata•10m ago•0 comments

Goubau line (single wire transmission line)

https://en.wikipedia.org/wiki/Goubau_line
1•RicoElectrico•11m ago•0 comments

Kubernetes Secrets Management

https://infisical.com/blog/kubernetes-secrets-management
1•vmatsiiako•13m ago•1 comments

AI should be illegal until we figure out how to deal with its consequences

https://ivanca.github.io/ai/2026/08/29/ai-should-be-illegal-until-we-figure-out-how-to-deal-with-...
2•AmbroseBierce•13m ago•1 comments

August 27 outage: Incident report

https://proton.me/blog/august-27-outage-incident-report
1•Cider9986•17m ago•1 comments

A free and public search engine for all browser extensions

https://extensions.proxied.tech/
1•proxiedtech•18m ago•0 comments

What does it mean for data to be AI ready?

https://sina.bio/posts/what-does-it-mean-for-data-to-be-ai-ready.html
1•sinab•18m ago•0 comments

Show HN: Delete yourself from data brokers without a subscription

https://github.com/k7cfo/remove-your-data
4•k7peak•21m ago•4 comments

Getting Ridge Regression Right

https://k9s.gr/ramblings/getting_ridge_regression_right.html
2•rafael859•28m ago•0 comments

The Myth of the Cynical Genius

https://www.psychologytoday.com/us/blog/trust-games/202111/the-myth-the-cynical-genius
2•John7878781•30m ago•0 comments

Steve Jobs 8th Grade Science Fair Project: The Silicon-Controlled Rectifier

https://www.rrauction.com/auctions/lot-detail/351632607484006-steve-jobs-personally-built-8th-gra...
3•reaperducer•30m ago•0 comments

Efficient Decode Context Parallelism with vLLM for Long Context Workloads

https://vllm.ai/blog/2026-08-07-decode-context-parallelism
1•aray07•35m ago•0 comments

Omnipresent availability risks in cloud software

https://surfingcomplexity.blog/2026/08/29/omnipresent-availability-risks-in-cloud-software/
2•azhenley•35m ago•0 comments

AI surveillance in schools raises safety and equity concerns

https://www.brookings.edu/articles/ai-surveillance-in-schools-raises-safety-and-equity-concerns/
2•hn_acker•38m ago•4 comments

US Kobo Sales Double?

https://www.publishersweekly.com/pw/by-topic/digital/content-and-e-books/article/101053-rakuten-k...
2•seam_carver•42m ago•0 comments

Research: Why You Shouldn't Treat AI Agents Like Employees

https://hbr.org/2026/05/research-why-you-shouldnt-treat-ai-agents-like-employees
1•njrc•44m ago•1 comments

Sony Music, Warner sue Anthropic, alleging a "brazen campaign" of intellectual

https://techcrunch.com/2026/08/29/sony-music-warner-sue-anthropic-alleging-a-brazen-campaign-of-i...
1•sbulaev•46m ago•0 comments

The Server Called Paranoia: Defend Autistici/Inventati

https://micahflee.com/the-server-called-paranoia-defend-autistici-inventati/
2•oriettaxx•49m ago•0 comments

California Passes AB-1856 for Open-Source Relief over Age Verification

https://www.phoronix.com/news/California-AB-1856-Passes
4•mdp2021•54m ago•0 comments

Scientific articles are increasingly cryptic due to excess use of jargon (2022)

https://revistapesquisa.fapesp.br/en/scientific-articles-are-increasingly-complex-and-cryptic-due...
2•anigbrowl•58m ago•0 comments

Did tvwatch.su also copy your GitHub profile?

2•chelm•1h ago•0 comments

Htdym (How to Deploy Your Model)

https://www.sailresearch.com/blog/htdym
1•simonpure•1h 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/