frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The SaaS Extinction Test

https://frontierai.substack.com/p/the-saas-extinction-test-f6e
1•inferhaven•1m ago•0 comments

Amazon behind private gas plant for new data centers

https://finance.yahoo.com/energy/articles/amazon-behind-massive-private-gas-210211828.html
1•e12e•2m ago•0 comments

Show HN: RAMGuard Pro – Real Windows Memory Optimizer in Rust and Tauri

https://github.com/jojin1709/ramguard-pro
1•jojin1709•4m ago•0 comments

Meta CTO says employees should use AI productivity gains to do more work

https://www.businessinsider.com/meta-cto-andrew-bosworth-ai-gains-work-2026-8
1•petetnt•4m ago•1 comments

Italian Bank Stores 400K Wheels of Cheese as Collateral for Farmer Loans

https://travelandtannins.com/an-italian-bank-keeps-400000-wheels-of-cheese-in-a-guarded-vault-and...
1•ms7892•8m ago•0 comments

Stack Overflow new questions are down 98.5% since ChatGPT (+ 5 other platforms)

https://www.harperflow.io/dead-internet
2•Heshamus•9m ago•0 comments

A Markdown curriculum for engineers moving into AI engineering

https://github.com/bimal1023/AI-native-engineer
2•bkumal•12m ago•1 comments

NFT collection where 100% of proceeds fund youth programs (501c3 nonprofit)

https://opensea.io/collection/voices-of-tomorrow
1•dykb•13m ago•0 comments

The Funny Oracle Org Chart That Isn't So Funny

https://palisadecompliance.com/resource/oracle-org-chart/
1•Alien1Being•17m ago•0 comments

A Lebanese Technology Transfer

https://nntaleb.substack.com/p/a-lebanese-technology-transfer
1•simonebrunozzi•18m ago•0 comments

Show HN: Scrut – A Python static code reviewer that focuses on changed Git files

https://github.com/mukundzha/scrut
2•mukundzzha•20m ago•0 comments

AI bots started a religion – humans followed

https://www.theverge.com/ai-artificial-intelligence/975017/ai-spiralism-chatbot-movement
2•bryanrasmussen•22m ago•0 comments

Google is in clear violation of the GPLv2

https://twitter.com/GrapheneOS/status/2085888745421558195
1•Cider9986•22m ago•2 comments

Blockstor: A LINSTOR-compatible storage system for Kubernetes

https://cozystack.io/blog/2026/08/blockstor-linstor-compatible-storage-for-kubernetes/
1•valyala•26m ago•0 comments

Celld: Self-hosted, distributed durable objects

https://flaviocopes.com/celld/
1•markgavalda•27m ago•0 comments

Bus driver kicked explosive drone out of the air at German airport

https://www.ctvnews.ca/world/article/bus-driver-kicked-explosive-drone-out-of-air-at-german-airpo...
1•vrganj•27m ago•0 comments

DEF Con 34

https://defcon.org/html/defcon-34/dc-34-index.html
1•Alien1Being•35m ago•0 comments

Grok Imagine Image 2.0

https://x.ai/news/grok-imagine-image-2
1•deadalus•36m ago•0 comments

Recent science fiction, fantasy and horror – review roundup

https://www.theguardian.com/books/2026/aug/07/the-best-recent-science-fiction-fantasy-and-horror-...
1•sorokod•42m ago•0 comments

DIY SLorq Speaker

https://ccrma.stanford.edu/~njb/research/slorkSpeaker/speakerSupplyList.htm
2•sans_souse•46m ago•0 comments

The Life of Public Safety Communications Signals: A Comparative Security

https://arxiv.org/abs/2608.05247
1•sbulaev•46m ago•0 comments

Using a deterministic classifier for disaster relief

https://verantyx.ai/
1•pakupaku•48m ago•1 comments

Pg_stat_ch: PostgreSQL Query Telemetry Exporter to ClickHouse

https://github.com/ClickHouse/pg_stat_ch
1•saisrirampur•50m ago•0 comments

Intel just matched Apple Silicon [video]

https://www.youtube.com/watch?v=A2B7oI0FYqo
3•thelastgallon•50m ago•0 comments

Show HN: I audited 743 URLs across 8 free browser tools

https://github.com/Gavin1901/free-browser-tools-index/blob/master/daily/2026-08-08-8site-pore-lev...
1•gavinbuilds•51m ago•0 comments

Lemire: RAM on a per unit basis is about as expensive as it was in 2007

https://xcancel.com/antibot/captcha
2•arto•54m ago•0 comments

Why we configure huge pages in ClickHouse Managed Postgres

https://clickhouse.com/blog/huge-pages-clickhouse-managed-postgres
1•saisrirampur•54m ago•0 comments

Why strict memory overcommit matters for Postgres

https://clickhouse.com/blog/strict-memory-overcommit-for-postgres
1•saisrirampur•55m ago•0 comments

Which parts of Kernel would benefit from C#'s features?

1•northlondoner•56m ago•0 comments

Show HN: Skaylar – Analyze Datasets with Benford's Law

https://temi-tade.github.io/Skaylar/
1•temi0x0•56m 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/