frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

JetBrains' new AI-first IDE JetBrains Air is now on Windows

https://www.neowin.net/news/jetbrains-new-ai-first-ide-jetbrains-air-is-now-on-windows/
1•bundie•1m ago•0 comments

Avogadro's Number and the Stars – An Anthropic Near Miss

https://aleph.se/andart2/physics/avogadros-number-and-the-stars-an-anthropic-near-miss/
1•cws•7m ago•0 comments

Serbia's VučIć to resign within weeks and call snap elections

https://www.yacnews.com/serbias-vucic-to-resign-within-weeks-and-call-snap-elections/
1•ortr•8m ago•0 comments

Ask HN: Mullvad Alternatives?

3•rpastuszak•9m ago•0 comments

Show HN: Khazad – Transparent Semantic Cache for LLM Calls on Redis Vector Sets

https://github.com/GuglielmoCerri/khazad
2•guglielmoce•14m ago•0 comments

Show HN: Xenoeye – analyze network without AI using netflow, PostgreSQL, Grafana

https://github.com/vmxdev/xenoeye
1•vmxdev•15m ago•0 comments

Show HN: A local-first eBook reader with a journal for each book you read

https://forgottenmachine.itch.io/ms-penrose-in-the-library
2•forgatmachine•18m ago•1 comments

AEB: A Case Study Using Comma.ai Dataset (2019)

https://comma-ai.medium.com/aeb-a-case-study-using-comma-ai-dataset-2fc08a2397f4
1•LorenDB•19m ago•0 comments

New York's War on Compute

https://www.city-journal.org/article/new-york-data-centers-moratorium-ai-compute
2•fortran77•21m ago•1 comments

Underwater Suit-Wearing Cyborg Insect Capable of Diving and Terra-Aqua Travel

https://www.nature.com/articles/s41467-026-74235-1
1•gscott•21m ago•0 comments

$22,000 per Hour: Assistants Use a Legislative Loophole to Outearn Surgeons

https://www.nytimes.com/2026/06/29/upshot/assistant-surgeons-loophole-pay.html
4•littlexsparkee•22m ago•1 comments

Simplified Sparse Attention via Gist Tokens

https://arxiv.org/abs/2604.20920
1•E-Reverance•23m ago•0 comments

League Loom an MCP Server for ESPN/Sleeper/Fantrax in ChatGPT/Claude

https://leagueloom.com/
1•cmtemkin•23m ago•0 comments

Howdy HN: fur.tea.laser

1•fur-tea-laser•25m ago•0 comments

Show HN: go-iroh – iroh compatible networking for Go

https://github.com/tmc/go-iroh
2•traviscline•28m ago•0 comments

Google's New reCAPTCHA Wants Your Camera Access and 21 Points of Your Hand

https://reclaimthenet.org/googles-new-recaptcha-wants-your-camera-access-and-21-points-of-your-hand
4•Cider9986•29m ago•3 comments

Nondelegation and the Unitary Executive [pdf]

https://afj.org/wp-content/uploads/2020/02/Nondelegation-and-the-Unitary-Executive.pdf
1•qwefasg•29m ago•0 comments

Core – Deterministic governance rules for AI-generated code (pip installable)

https://github.com/DariuszNewecki/CORE
1•d_newecki•29m ago•0 comments

Three FOSS projects for developers, procrastinators, and media wranglers

https://www.theregister.com/software/2026/06/26/three-foss-projects-for-developers-procrastinator...
1•rbanffy•32m ago•0 comments

A Good Animation Disappears

https://frigade.com/blog/a-good-animation-disappears
1•pancomplex•33m ago•0 comments

Proxylity: Academic and Non-Profit Program

https://www.proxylity.com/academic
1•mlhpdx•36m ago•0 comments

Ask HN: Should HN Get 2FA?

2•roschdal•38m ago•4 comments

China's first AI-powered cancer vaccine production line set to launch in Beijing

https://www.scmp.com/business/china-business/article/3358689/chinas-first-ai-powered-cancer-vacci...
3•msalsas•38m ago•1 comments

Feedback around "Tech enforcement layer for AI governance"

https://trust-layer-ai.de/
1•YUZHEN200495•39m ago•1 comments

The Next Chapter of PrimeTek

https://primeui.dev/nextchapter
2•nallerooth•40m ago•0 comments

3D necroprinting: Leveraging biotic material as the nozzle for 3D printing

https://www.science.org/doi/10.1126/sciadv.adw9953
3•jacquesm•43m ago•0 comments

Australian ballista spider builds a spring-loaded snare for a single ant species

https://phys.org/news/2026-06-newly-australian-ballista-spider-snare.html
2•wglb•43m ago•1 comments

Magicbookshelf.org – a spoiler-aware companion for public domain classics

https://magicbookshelf.org/
1•philipfweiss•44m ago•0 comments

Show HN: Fleet – a local-first console for managing Dockerized Hermes AI Agents

https://github.com/matt454/agent-fleet-console
1•matt454•44m ago•0 comments

Freedom of Intelligence

https://slack.org/freedom-of-intelligence
2•sixhobbits•44m 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/