frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Robot Basketball

https://kevinkelly.substack.com/p/robot-basketball
1•surprisetalk•3m ago•1 comments

Fedora Discussion Raises the Idea of Replacing LibreOffice with Collabora Office

https://www.phoronix.com/news/Fedora-Discuss-Collabora-Office
1•cf100clunk•4m ago•1 comments

Proof a Human Sent an Email

https://github.com/Inkline-Verify/ProofOfHuman
2•georginaalcaraz•5m ago•0 comments

The Zig Journey

https://kristoff.it/blog/the-zig-journey/
3•kristoff_it•6m ago•1 comments

Entrepreneurship and Industry in Europe

https://eudata.vercel.app/
2•tosh•10m ago•0 comments

Artificial Symbiotic Intelligence

https://institute.deepmind.com/essays/artificial-symbiotic-intelligence/
2•kristianpaul•10m ago•1 comments

Natural-Fiber Clothing Is in Demand–But Scientists Say It Needs More Scrutiny

https://www.wsj.com/style/fashion/cotton-fiber-pfas-47042bd2
1•geneticdrifts•10m ago•0 comments

Japanese used bookstores see 5x sales surge as books are being bought by the ton

https://www.tomshardware.com/tech-industry/artificial-intelligence/japanese-used-bookstores-see-5...
1•speckx•11m ago•0 comments

Breaking Up with Google Play: Why Conversations Is Now Free

https://gultsch.de/posts/breaking-up-with-google-play/
4•inputmice•13m ago•0 comments

$5,999 Ryzen AI MAX+ 395 and Radeon R9700 workstation

https://videocardz.com/newz/lucebox-opens-direct-orders-for-5999-ryzen-ai-max-395-and-radeon-r970...
2•GreenGames•14m ago•0 comments

Map of where crypto and privacy services are sanctioned or blocked

https://dontkyc.me/sanktionsradar
1•paco4747•15m ago•0 comments

Analyst Calls for AMD Investigation over Restricted Chips in China

https://www.tomshardware.com/tech-industry/leading-semiconductor-analyst-accuses-amd-of-treason-o...
2•rndsignals•16m ago•0 comments

Eutetic: Codex for Data Scientist and Data Engineers

https://eutetic.com
1•FrancescoMassa•19m ago•1 comments

The worlds top cities for 2026 – and why they stand out

https://www.bbc.com/travel/article/20260923-the-worlds-top-cities-for-2026-and-why-they-stand-out
1•bookofjoe•19m ago•1 comments

Show HN: Hermes, Kokoro and Parakeet, behind a face you can talk to

https://memoe.app/
1•yisraelgottz•20m ago•0 comments

Show HN: Resume Claude Code subagents killed by a usage limit, don't redo them

https://github.com/error0702/agent-limit-retry
2•autorunfun•21m ago•0 comments

ask HN:Are we locking ourselves in the Google ecosystem?

2•KinetiNode•22m ago•6 comments

The most-cited vector DB benchmark is not publishing results from competitors

https://medium.com/@glitcher00/the-most-cited-vector-database-benchmark-is-not-publishing-results...
1•austin2020•23m ago•0 comments

Show HN: ContextDebt – finds code whose stated reason to exist has expired

https://github.com/ContextDebt/contextdebt
1•wittachai•24m ago•0 comments

Submersion AI Debuts Basin

https://submersion.ai/news/basin-cybergym-ranking/
1•Bluestein•24m ago•0 comments

AI Safety Is Mostly a Sex Cult in Berkeley

https://www.verysane.ai/p/ai-safety-is-mostly-a-sex-cult-in
9•martythemaniak•24m ago•0 comments

When to Use an LLM

https://extralongdivision.com/articles/when-to-use-an-llm/
1•extralongdivisi•26m ago•0 comments

Humans Are Reading Your ChatGPT Chats, Lawsuit Claims

https://openclassactions.com/lawsuits/privacy/openai-chatgpt-human-review-project-lily-class-acti...
3•nreece•27m ago•0 comments

Show HN: PreFlight – Local citation verifier and claim auditor for LaTeX

https://preflightai.tech/workbench
1•stackfrost•27m ago•0 comments

Show HN: PlaceCall (YC W26) – agentic API to call businesses and get things done

6•ymarkov•27m ago•0 comments

The Antennagate Q&A, which has never been available, has been posted today [video]

https://www.youtube.com/watch?v=BiN5ERktXz0
2•philistine•28m ago•0 comments

The Scene (2004–2006): Episode synopses of a warez drama told through IRC

https://github.com/skybohannon/thescene
1•crawforc3•28m ago•0 comments

Dynamic Abliteration: Non-Destructive Refusal Suppression via Engram Steering

https://blog.madhukaraphatak.in/non-destructive-refusal-supression-using-engram
11•phatak-dev•29m ago•0 comments

Unknown number of Texas voter registrations went unprocessed due to DPS error

https://www.votebeat.org/texas/2026/09/22/voter-registration-applications-unprocessed-dps-error/
3•hn_acker•31m ago•1 comments

"Not Conio but Compatible" Adapter for Atari ST Vbcc

https://retrogamecoders.com/atari-st-vbcc-c-not-conio/
1•ibobev•32m 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/