frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Apple acquires observability startup SigScalr

https://9to5mac.com/2026/07/13/apple-acquires-observability-startup-sigscalr/
1•taubek•46s ago•0 comments

Brif.ink – paste an article, get a short link with an AI TL;DR

https://brif.ink
1•rudixworld•1m ago•0 comments

A Perspective on the Past, Present, and Future of Video Streaming over Starlink

https://arxiv.org/abs/2409.09846
1•toomuchtodo•2m ago•1 comments

Lobste.rs is now running on SQLite

https://lobste.rs/s/ko1ji1/lobste_rs_is_now_running_on_sqlite
4•ahamez•3m ago•0 comments

Show HN: Coliseo – open-source Head to Head ELO ranking of top startups

https://coliseoelo.com/
2•rossgarlick•5m ago•0 comments

The Faculty Workload Myth

https://www.chronicle.com/article/the-faculty-workload-myth
3•Fomite•7m ago•0 comments

IBM sends 'shockwave' through tech industry with AI warning

https://www.msn.com/en-us/money/other/ibm-sends-shockwave-through-tech-industry-with-ai-warning/a...
2•petethomas•8m ago•1 comments

US State Department offers $3M grants to MAGA-aligned groups in Europe

https://www.ft.com/content/e2addd88-4361-43f1-94e2-9f0a808dd6a9
3•doener•9m ago•0 comments

Show HN: Approv – human approval and a signed audit trail for AI agent actions

1•Mersall•9m ago•0 comments

Spinning Numbers – Learn about electricity and electrical engineering

https://spinningnumbers.org/
1•tripdout•12m ago•0 comments

Half Life 2: Deathmatch on the web

https://lucasigel.com/hl2/dm
1•lukeigel•13m ago•1 comments

AI is straining vulnerability disclosure for maintainers

https://directus.com/resources/ai-is-straining-vulnerability-disclosure-for-maintainers
2•haynesben•14m ago•0 comments

OnlyMove 9×9

https://onlymove.net/
2•kqr•15m ago•0 comments

Pg_re2: Postgres extension for fast, RE2-powered regular expressions in Postgres

https://clickhouse.com/blog/introducing-pg_re2-regex-in-postgres
2•saisrirampur•18m ago•0 comments

Google Images gets a Pinterest-like redesign focused on discovery

https://techcrunch.com/2026/07/14/google-images-gets-a-pinterest-like-redesign-focused-on-discovery/
2•jawns•18m ago•1 comments

I Didn't Go Viral–My Steam Game Still Paid Off My Student Loans [video]

https://www.youtube.com/watch?v=dOolIKL-pxo
2•pinkmuffinere•18m ago•0 comments

DeepSeek Is Preparing for IPO Filing as Soon as This Year

https://www.bloomberg.com/news/articles/2026-07-14/deepseek-mulls-new-funding-weeks-after-7-billi...
3•mfiguiere•19m ago•0 comments

Businesses ask Senate to kill a plan to limit stock buybacks and dividends

https://www.businessinsider.com/stock-buyback-ban-dividends-defense-stocks-trump-executive-order-...
2•petethomas•20m ago•0 comments

TicketFight – An LA City parking ticket fighter

https://ticketfight.netlify.app
2•bobchopson•21m ago•0 comments

Buffett omits gift to Gates' foundation after Epstein ties disclosed

https://apnews.com/article/warren-buffett-bill-gates-philanthropy-berkshire-hathaway-d0f9386e71e0...
3•slowin•22m ago•1 comments

Codex / ChatGPT Work has reached 8M active users

https://twitter.com/thsottiaux/status/2077114635308986427
2•tedsanders•22m ago•0 comments

Billionaire Warren Buffett stops donations to Bill Gates charity

https://www.bbc.co.uk/news/articles/c8x2x549vgdo
5•markx2•23m ago•0 comments

Show HN: Iodd Viewer a free IODD viewer that runs in the browser

https://ioddviewer.com
2•bitchanic•23m ago•0 comments

Data Backup Options [pdf]

https://www.cisa.gov/sites/default/files/publications/data_backup_options.pdf
2•toomuchtodo•23m ago•0 comments

At least nine figures at the 2026 World Cup have faced R*pe or sexual assault

https://www.yacnews.com/at-least-nine-figures-at-the-2026-world-cup-are-accused-of-rape-or-sexual...
2•ortr•23m ago•0 comments

Library of Babel

https://libraryofbabel.info
2•jihadjihad•24m ago•0 comments

How I use HTMX with Go

https://www.alexedwards.net/blog/how-i-use-htmx-with-go
2•gnabgib•24m ago•0 comments

The Greatest Norwegian

https://www.edwest.co.uk/p/the-greatest-norwegian
2•bookofjoe•25m ago•0 comments

Angelika

http://www.linkr.ee/salomondiazcervo
2•angiediazcervo•25m ago•0 comments

Claude and ChatGPT Connectors Change Every 9 Minutes

https://www.promptarmor.com/resources/claude-and-gpt-connectors-change-every-9-minutes
2•yearnforcompute•28m 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/