frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Find out how ChatGPT describes your brand, then fix it

https://pallix.in
1•not_wowinter14•5m ago•0 comments

Python Package Comparison for Webcrawlers and Website Mirroring

https://inventwithpython.com/blog/python-webcrawler-package-comparison-aug-2026.html
1•gregsadetsky•5m ago•0 comments

ChatGPT / Codex Reset on Monday

https://xcancel.com/thsottiaux/status/2086189414292865249
1•sscaryterry•6m ago•0 comments

Hyper-Markdown – Markdown for knowledge graphs

https://hyper-markdown.org/
2•divingstar•10m ago•1 comments

I aggregated tracker SDKs and permissions across 300 open-source Android apps

https://apptizo.com/reports/app-trackers-permissions/
1•jkircas•11m ago•0 comments

The Internet Is in Crisis

https://www.theatlantic.com/culture/2026/08/perez-hilton-livestream/688223/
1•paulpauper•11m ago•0 comments

Switzerland is a neutral nation but has more nuclear bunkers than any country

https://www.npr.org/2026/08/08/g-s1-137635/switzerland-nuclear-bunkers
1•andsoitis•14m ago•0 comments

James Bond, not Bond James: why scientific publishing must respect name order

https://www.nature.com/articles/d41586-026-01772-6
2•paulpauper•16m ago•0 comments

What's New in Inkdrop v6

https://forum.inkdrop.app/t/whats-new-in-v6/5570
2•dgavrilov•25m ago•0 comments

Coldcard hardware wallet firmware flaw sees 2k BTC (~$130M) drained

https://www.web3isgoinggreat.com/?id=coldcard-hardware-wallet-flaw
6•ilamont•27m ago•1 comments

Wikipedia's founder on his life's work: "A propaganda tool"

https://nordictimes.com/world/wikipedias-founder-on-his-lifes-work-a-propaganda-tool/
3•thisislife2•28m ago•0 comments

Time Series Observing Itself

https://timeseriesofindia.com/meta/
2•prtk25•31m ago•0 comments

Show HN: Fullscreener // borderless fullscreen for any window (Windows only)

https://github.com/carlos-menezes/fullscreener
1•carlos-menezes•32m ago•0 comments

AI Music Debate Is Missing Half the Money

https://justwordz.medium.com/the-ai-music-debate-is-missing-half-the-money-ffb714924aaa
1•samspenc•32m ago•0 comments

Leibniz's Treatise Disputatio metaphysica de principio individui

https://ojs.tnkul.pl/index.php/rf/article/view/12197
1•Bluestein•32m ago•0 comments

Use Claude Code to make synced video edits to a song

https://github.com/ZiadAbdelkarim/beat-synced-edit
1•iwasastreamer•35m ago•0 comments

Am I the problem? Interviewing another team to find out

https://www.macchaffee.com/blog/2026/am-i-the-problem/
1•signa11•40m ago•0 comments

What We Talk About When We Talk About Bruce Lee

https://decodingvibes.com/blog/what-we-talk-about-when-we-talk-about-bruce-lee/
1•altmanaltman•40m ago•0 comments

Shadow AI is a hidden risk to your business

https://proton.me/business/blog/shadow-ai
3•devonnull•42m ago•0 comments

I build the Tinder to choose food

https://beta.platetale.com/
1•anhyourdream•43m ago•0 comments

Anthropic Economic Index

https://www.anthropic.com/economic-index
4•ronfriedhaber•44m ago•0 comments

Swift-Gigatoken

https://github.com/1amageek/swift-gigatoken
1•frizlab•50m ago•1 comments

The Idea of an Immutable Social Media

https://citizendot.github.io/articles/the-idea-of-immutable-social-media/
4•CITIZENDOT•55m ago•1 comments

Maryland Closes More of Cunningham Falls State Park After Second Beaver Attack

https://news.maryland.gov/dnr/2026/08/05/dnr-closes-additional-areas-of-cunningham-falls-state-pa...
25•bookofjoe•56m ago•10 comments

Pneumatic tube mail in New York City

https://en.wikipedia.org/wiki/Pneumatic_tube_mail_in_New_York_City
4•gkaemmer•59m ago•0 comments

MacGregor the Bridge Builder

https://www.astralcodexten.com/p/macgregor-the-bridge-builder
1•Ariarule•1h ago•0 comments

I gave Claude complete ownership over a website

https://freebot.dev/
2•BenediktHolm•1h ago•3 comments

Attack Techniques: Fake Captive Portals

https://textslashplain.com/2026/08/03/attack-techniques-fake-captive-portals/
2•rowbin•1h ago•0 comments

Improving Heuristics

https://www.redblobgames.com/pathfinding/heuristics/differential.html
2•ingve•1h ago•0 comments

Microsoft Tells Engineers 'Tokenmaxxing Is Not What We Are Optimizing For'

https://www.404media.co/microsoft-tells-engineers-tokenmaxxing-is-not-what-we-are-optimizing-for/
4•doener•1h 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/