frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Car Sunroofs Keep 'Spontaneously' Exploding–and the Problem Is Getting Worse

https://www.wsj.com/business/autos/car-sunroofs-keep-spontaneously-explodingand-the-problem-is-ge...
1•bookofjoe•38s ago•1 comments

Why Some Image Conversions Come Out Blurry or Tiny

https://heic.frame-fix.workers.dev/
1•Hackergeist•57s ago•0 comments

How to combine exercise with video games

https://economist.com/science-and-technology/2026/08/28/how-to-combine-exercise-with-video-games
1•andsoitis•2m ago•0 comments

The Monkey Selfie Copyright Dispute

https://en.wikipedia.org/wiki/Monkey_selfie_copyright_dispute
1•busymom0•2m ago•0 comments

Gitea/Forgejo and Neovim

https://github.com/emrearmagan/atlas.nvim/tree/feat/gitea-forgejo
1•emrearmagan•2m ago•1 comments

Lock

https://lock-app.fr/
1•austinallegro•3m ago•0 comments

Laurie Anderson's next manuscript to be locked away for 88 years

https://www.theguardian.com/books/2026/aug/29/laurie-anderson-manuscript-88-years-future-library-...
1•ohjeez•11m ago•0 comments

Why your boss doesn't seem to care about your tech career anymore

https://www.businessinsider.com/tech-managers-career-development-ai-great-flattening-2026-8
2•RoadieRoller•11m ago•3 comments

Character Recognition Chip Tapeout

https://twitter.com/kenchangh/status/2094174553237062070
1•kenchangh•12m ago•0 comments

Could a Computer Scientist Build a Brain?

https://medium.com/@smazumder_20424/could-a-computer-scientist-build-a-brain-425ac8a09d03
1•smazumder05•24m ago•1 comments

Debian community allows contributors to use AI

https://www.theregister.com/ai-and-ml/2026/08/30/debian-votes-to-let-contributors-code-with-ai/52...
1•joebuckwilliams•24m ago•1 comments

Running DuckDB's JDBC Driver in a GraalVM Native Image

https://foojay.io/today/running-duckdbs-jdbc-driver-in-a-graalvm-native-image/
2•rowbin•25m ago•0 comments

Format.js: Industry-standard internationalization libraries for JavaScript

https://formatjs.github.io/
2•doener•29m ago•0 comments

Show HN: Hide the Mac menu bar or clock, dynamically synced w focus (DND)

https://github.com/dotcomjack/nocturne
1•dotcomjack•31m ago•1 comments

The Defense-Tech Bubble Is Headed for Consolidation

https://foxandlion.pub/analysis/defense-tech-bubble-is-headed-for-consolidation
7•agrantic•32m ago•1 comments

FreeToken to Speed Up Moe on low VRAM

https://www.youtube.com/watch?v=8n4Uo47CadY
1•gitowiec•34m ago•0 comments

AWS mumbles about its cost-busting networking tech when it should be shouting

https://www.theregister.com/networks/2026/08/29/aws-mumbles-about-its-cost-busting-networking-tec...
3•joebuckwilliams•35m ago•1 comments

Are We Sixel Yet?

https://www.arewesixelyet.com/
3•smasher164•42m ago•0 comments

Coding Was Never the Bottleneck

https://zlatkov.substack.com/p/coding-was-never-the-bottleneck
3•zlatkov•42m ago•0 comments

What I learned about founder-market fit

https://zlatkov.substack.com/p/what-i-learned-about-founder-market
1•zlatkov•43m ago•0 comments

Tacoma Narrows Bridge History – Bridge – Lessons from Failure

https://wsdot.wa.gov/tnbhistory/bridges-failure.htm
2•mkl95•43m ago•0 comments

Did your car witness a crime? Police may be coming for your Tesla

https://www.sfchronicle.com/crime/article/tesla-sentry-mode-police-evidence-19731000.php
4•firefoxd•44m ago•0 comments

When skilled immigrants are overqualified, employers pay a price too

https://theconversation.com/when-skilled-immigrants-are-overqualified-employers-pay-a-price-too-2...
2•rustoo•48m ago•0 comments

Continuous Diffusion Language Models (CDLM's)

https://sander.ai/2026/08/24/continuous-dlms.html
5•peter_d_sherman•51m ago•0 comments

Log-First or Table-First? Apache Kafka, Fluss, & Streaming Tables

https://softwaremill.com/log-first-or-table-first-apache-kafka-fluss-and-streaming-tables/
1•mmatloka•57m ago•0 comments

Change Impact Analyzer – see what your edit breaks (Tree-sitter+LSP)

https://marketplace.visualstudio.com/items?itemName=AniqUsman.change-impact-analyzer
2•thespicyavocado•1h ago•0 comments

A Manager Asked How to Tell His Report to "Get a Life" [video]

https://www.youtube.com/watch?v=JN8CkCGGRzo
2•bigtechtea•1h ago•1 comments

Asahi Linux: Initial USB4/Thunderbolt Support for M1/M2/M3 on LKML

https://social.treehouse.systems/@sven/117186314116319619
6•pizzaiolo•1h ago•0 comments

Reactions To: The Rise and Fall of Agent Civilizations

https://twitter.com/dwarkesh_sp/status/2093833419377815719/quotes
2•rzerowan•1h ago•1 comments

Critical CVE: JFrog Artifactory Authentication Bypass

https://www.cve.org/CVERecord?id=CVE-2026-82329
3•mellosouls•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/