frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

To Die and Live in L.A

https://lareported.substack.com/p/to-die-and-live-in-la
1•speckx•2m ago•0 comments

The Enchiridion of Epictetus

https://stoacentral.com/library/enchiridion
2•0xmattf•3m ago•0 comments

'Digital Camouflage' Shirt Confuses AI-Powered Surveillance Cameras

https://www.404media.co/this-digital-camouflage-shirt-confuses-ai-powered-surveillance-cameras/
1•pavel_lishin•4m ago•0 comments

How to Cook with Rhai: Creating a scripting lang compiler for my traffic light

https://www.jackhogan.me/blog/how-to-cook-with-rhai
1•jackhogan11•4m ago•0 comments

Alabama AG Launches Investigation into OpenAI for AI Data Breach

https://www.alabamaag.gov/attorney-general-marshall-launches-investigation-into-openai-and-sam-al...
1•frabcus•4m ago•0 comments

The Extinct Tasmanian Tiger's Bite Was Unlike Any Other Predatory Mammal's

https://nautil.us/the-extinct-tasmanian-tigers-bite-was-unlike-any-other-predatory-mammals-1284660
1•Brajeshwar•7m ago•0 comments

The most cited paper of the century is a brilliant hack [video]

https://www.youtube.com/watch?v=QgH9sr7G13Q
1•jonbaer•9m ago•0 comments

Praearcturus gigas: giant scorpion from Lower Devonian (Lochkovian) of Britain

https://onlinelibrary.wiley.com/doi/10.1111/pala.70064
1•bryanrasmussen•10m ago•0 comments

Sticky notes docked to the right edge of your Mac

https://holdmynotes.app/
1•spking•11m ago•0 comments

Google's failed attempt to license Hollywood IP for its AI tools

https://www.latimes.com/entertainment-arts/business/story/2026-08-31/how-google-is-courting-holly...
1•ilamont•12m ago•0 comments

Welcoming our first riders in Denver, San Diego, and Tampa

https://waymo.com/blog/2026/09/ride-in-denver-san-diego-tampa/
1•ra7•12m ago•0 comments

HookLayer – Content intelligence as an MCP server inside ChatGPT/Claude

https://hooklayer.dev
1•khanashifur•12m ago•0 comments

Proving my Rust NVR doesn't leak memory (it did)

https://murlet.com/blog/hunting-rust-memory-leaks/
2•tangled•13m ago•0 comments

Model Arena: Qwen3-ASR vs. faster-whisper in real time (the WER is not enough)

https://nanosamur.ai/blog/posts/qwen-vs-whisper/
2•newcrobuzon•13m ago•0 comments

Proton Outage

https://status.proton.me/incidents/lj22kf1nc8yz
3•alexjplant•14m ago•2 comments

AI-Powered Bird Sprinkler

https://mattsahn.github.io/bird-away-blog/
2•hk__2•14m ago•0 comments

Managing AI agents is still a full-time job

https://freedom.to/blog/ai-agent-burnout/
2•deepmem•14m ago•0 comments

The Browser's Main Thread Is Expensive

https://kciter.so/posts/the-expensive-main-thread/en/
2•kciter•15m ago•0 comments

Jellyfish Enable Surprising New Findings about Cancer

https://www.caltech.edu/about/news/jellyfish-enable-surprising-new-findings-about-cancer
2•gmays•15m ago•0 comments

A geo-social service to share updates, discover places and connect with people

https://gohiam.com
1•ehurynovich•16m ago•0 comments

Adverse Selection and Markouts

https://machow.ski/posts/markouts_and_adverse_selection/
1•costco•19m ago•0 comments

Africa Fintech: High Availability in Production

https://engineering.moniepoint.com/high-availability-in-production-what-running-at-scale-actually...
1•Cellz•20m ago•0 comments

A Computer History Time Capsule

https://blog.archive.org/2026/08/27/a-computer-history-time-capsule/
1•mooreds•21m ago•0 comments

Show HN: Openheim – a multi-provider LLM agent runtime, written in Rust

https://openheim.io/
2•themartto•22m ago•0 comments

Real-Time Personalisation on Autotrader

https://medium.com/autotrader-engineering/real-time-personalisation-on-autotrader-50d0cda4b778
1•mooreds•22m ago•0 comments

John Ternus is now the CEO of Apple

https://www.theverge.com/tech/987150/apple-ceo-john-ternus
1•Brajeshwar•22m ago•0 comments

Show HN: Deterministic Jitter Suppression for Jax/XLA Pipelines

https://github.com/pasttofuture-whisperer/xprof-jitter-interceptor
1•PTF-W•23m ago•0 comments

The Thinking Wattage of AI Agents vs. the Human Brain

https://codeandlife.com/2026/08/31/thinking-wattage-ai-agents-vs-human-brain/
1•arantius•23m ago•0 comments

I launched on Product Hunt and all I got was spam email

https://lukeboyle.com/blog/i-launched-on-product-hunt-and-all-i-got-was-spam-email/
3•3stacks•24m ago•5 comments

Whisper for Free: How to Clone a SaaS with a Prompt

https://whisprfreely.com/
2•aakil•25m 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/