frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

How America's Accurate Election Polls Were Covered Up

https://www.racket.news/p/how-americas-accurate-election-polls
1•casey2•1m ago•0 comments

LAPD Regularly Pulled over Innocent People Plate Readers Flagged Cars as Stolen

https://www.404media.co/lapd-regularly-pulled-over-innocent-people-because-license-plate-readers-...
1•Jimmc414•1m ago•0 comments

SFU prof launches legal-AI collaboration with Caseway to improve justice

https://www.sfu.ca/fas/computing/news-events/news/2026/january/sfu-launches-legal-ai-collaboratio...
1•ClearwayLaw•2m ago•1 comments

What did SFFA vs. Harvard reveal about admissions?

https://sorting-machine.pages.dev/
1•StrageMusik•6m ago•0 comments

Trump's plan for Europe is falling apart

https://www.ft.com/content/23041bb7-4647-4efe-b790-b763d270fb72
1•petethomas•6m ago•0 comments

Success may not matter if you aren't doing what you love

https://12gramsofcarbon.com/p/founders-guide-success-may-not-matter
1•theahura•6m ago•0 comments

Show HN: Microphone – Talk out your side-project ideas, then test them with ads

https://www.trie.dev/
1•Kriptering•6m ago•0 comments

Show HN: I MitM'd Plex to make remote streaming suck less

https://github.com/inhumantsar/plex-proxy/
1•inhumantsar•6m ago•0 comments

As We May Think – Vannevar Bush (1945)

https://web.archive.org/web/20120822124246/http://www.theatlantic.com/magazine/archive/1945/07/as...
1•embedding-shape•7m ago•0 comments

Groupchatty – Real time chat while using Codex and Claude

https://error.workos.com/redirect-uri-invalid?invalid_redirect_uri=https%253A%252F%252Fgroupchatt...
1•svapnil•8m ago•0 comments

Meta on course to become America's next big cloud provider

https://www.theregister.com/ai-and-ml/2026/07/14/zucks-ai-ambitions-put-meta-on-course-to-become-...
2•galaxyLogic•12m ago•0 comments

Trump invested crypto gains in stocks and bonds, filings show

https://www.reuters.com/legal/government/trump-invested-crypto-gains-stocks-bonds-filings-show-20...
3•petethomas•14m ago•0 comments

Show HN: Made a Free LLM Router

https://www.flexinference.com
2•Aperswal•14m ago•0 comments

AI Model Co-Design: Hardware-Friendly LLM Design

https://developer.nvidia.com/blog/ai-model-co-design-hardware-friendly-llm-design/
2•ashvardanian•17m ago•0 comments

The Political Economy of Diversity, Equity, and Inclusion

https://osf.io/preprints/socarxiv/5tgcs_v1
2•gmays•19m ago•0 comments

Turn your singing voice into printable notes (in the browser)

https://om-intelligence.ch/projects/vocal-notation/vocal-notation.html
3•busssard•22m ago•1 comments

Scams Were Awful. Then They Got AI

https://www.rstreet.org/commentary/scams-were-already-awful-then-they-got-ai/
2•antondd•23m ago•0 comments

Ask HN: What are the best free ePub books to read?

3•smalltorch•26m ago•0 comments

Web Scraper Sets $1M 'Bug Bounty' as Industry Scrutinized

https://www.bloomberg.com/news/articles/2026-07-10/web-scraper-sets-1-million-bug-bounty-as-indus...
2•petethomas•26m ago•0 comments

Show HN: The New Cyborgs Don't Have Implants

https://www.bulaev.net/p/the-new-cyborgs-dont-have-implants
2•sbulaev•26m ago•0 comments

A Hitchhiker's Guide on Distributed Training of Deep Neural Networks (2020)

https://www.sciencedirect.com/science/article/abs/pii/S0743731518308712
2•measurablefunc•29m ago•0 comments

Customer auth for AI voice agents

https://www.ringd.dev/
2•georgekats•31m ago•1 comments

Human Canaries: Remembering the Munitionettes

https://www.historytoday.com/archive/great-debates/human-canaries-remembering-munitionettes
2•Thevet•39m ago•0 comments

Long term memory cortex for agents that maintains tensions

https://github.com/mavaali/daftari
2•mavaali•41m ago•0 comments

ETTrace: Local Mobile Performance Flamegraph

https://www.emergetools.com/flamegraph
2•gmays•44m ago•0 comments

Zig creator calls Bun's Claude Rust rewrite 'unreviewed slop'

https://www.theregister.com/devops/2026/07/14/zig-creator-calls-buns-claude-rust-rewrite-unreview...
6•joebuckwilliams•46m ago•1 comments

Tachyon: An AI Screen-Aware Tutor

https://heybraza.com
2•orakulus•48m ago•0 comments

Show HN: FixBugs – Reproduce production bugs and verify fixes

https://fixbugs.ai
8•kirtivr•49m ago•1 comments

Deceptive Grounding: Entity Attribution Failure in Clinical RAG

https://arxiv.org/abs/2607.09349
2•sbulaev•51m ago•0 comments

What are Forward Deployed Engineers, and why are they so in demand? (2025)

https://newsletter.pragmaticengineer.com/p/forward-deployed-engineers
11•saisrirampur•53m ago•6 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/