frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Jevons Paradox

https://en.wikipedia.org/wiki/Jevons_paradox
1•elsewhen•23s ago•0 comments

Just shared my experience building a full marketplace with Claude

https://initacademy.oyakoo.store/products/build-it-with-ai
1•zooboole•2m ago•0 comments

The AI Bubble Is on Its Last Legs

https://www.youtube.com/watch?v=szK9LIGvW1o
1•cable2600•2m ago•0 comments

So I scraped MIT's blog website, and it is false advertising

https://liamis.dev/blogs/MitWebscraper/MitWebscraper.html
1•ForgottenMail•4m ago•0 comments

An Idiot's Guide to Winning Elections

https://outlookzen.com/2026/08/15/an-idiots-guide-to-winning-elections/
2•whack•11m ago•0 comments

ChatGPT lost 22 points of web share in a year

https://aicharts.grok.me/c/market-share
2•echohive42•12m ago•1 comments

The complete AI SEO playbook: from zero to 4.6M impressions in 3 months

https://github.com/TraceCohenTech/ai-seo-playbook
2•t_cohen•14m ago•0 comments

Do Your Emojis Make You Look Old?

https://www.nytimes.com/interactive/2026/08/12/upshot/emoji-generations.html
2•momentmaker•15m ago•1 comments

Big Pickle on SWE Atlas – Codebase QnA

https://github.com/PhillipChaffee/big-pickle-swe-atlas
2•phillipchaffee•23m ago•0 comments

How/where to find a girlfriend that understands the hustle and long hours?

2•abcrezmmo•24m ago•1 comments

Timestamp and WACZ/WARC Script via ArchiveWeb.page

https://gist.github.com/atraining/2f5436d26cc80d66ed5ff1bf23865ddf
2•chelm•33m ago•1 comments

SynthID watermarking and removal methods are a joke

https://medium.com/@vektormemory/synthid-watermarking-and-removal-methods-are-a-joke-6ca5680e51ac
2•vektormemory•37m ago•1 comments

Tea5767-Radio-Tuner

https://github.com/turtushig22-blip/tea5767-radio-tuner
3•turtushig22•39m ago•0 comments

Banned Words List

https://pen.org/banned-words-list/
8•structuredPizza•40m ago•0 comments

Portal, for securing IoT communication

https://github.com/MaticianInc/portal
2•tacitusarc•48m ago•1 comments

I'm getting into house cleaning. What should I know?

https://refinedservicesgroup.com
2•hunterhandkerch•49m ago•0 comments

Find out what your coding agents cost you

https://github.com/ACE-Engineering/ace-sidecar
1•flyingfishisme•49m ago•0 comments

Rewriting in Rust

https://blog.jetbrains.com/rust/2026/08/10/rewriting-in-rust/
2•worik•51m ago•0 comments

Image and text do not share a coordinate system

https://twitter.com/advprop/status/2088771122707722365
1•apsys•55m ago•0 comments

Tesla drivers are letting their cars take over

https://www.sfchronicle.com/bayarea/article/tesla-self-driving-car-22384520.php?taid=6a8091bad297...
1•GMoromisato•56m ago•1 comments

Show HN: Snafu: Agentic flow to help you with "naming things" in source code

https://github.com/sebastiancarlos/snafu
1•httbs•1h ago•0 comments

Show HN: Techflare – Chrome extension to see if a website uses Cloudflare

https://chromewebstore.google.com/detail/techflare/lbbkmioghlgfnbkciibfglcopkncdfpg
1•wenbin•1h ago•0 comments

Credit card debt rises to $1.26T, nearing all-time record

https://abc7.com/story/credit-card-debt-rises-126-trillion-nearing-time-record/19667289/
19•lxm•1h ago•12 comments

The key that never exists: a threshold signing ceremony in the browser

https://808bits.com/articles/threshold-signing-ceremony-in-your-browser/
1•meehow•1h ago•0 comments

I don't want to work in a factory

https://jaspercroo.me/essays/002_factories/
1•thoughtpeddler•1h ago•0 comments

Alibaba AI Models Hit 3B Downloads, Passing Meta, Google

https://finance.yahoo.com/technology/ai/articles/alibaba-ai-models-hit-3-091606840.html
2•zkmon•1h ago•0 comments

Meguro Parasite Museum

https://www.kiseichu.org
1•joebig•1h ago•1 comments

Hunger stones: The history behind 'if you see me, weep'

https://www.dw.com/en/hunger-stones-the-history-behind-if-you-see-me-weep/a-78345729
6•bushwart•1h ago•1 comments

Find Closed Door Romance Books You'll Love

https://closeddoorromance.com/
1•gnabgib•1h ago•0 comments

Artin-Schreier Theorem [pdf]

https://kconrad.math.uconn.edu/blurbs/galoistheory/artinschreier.pdf
2•marysminefnuf•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/