frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Open source platform for automating sandboxed coding agents

https://github.com/mistlehq/mistle
1•mickuehl•1m ago•0 comments

Schlitz Is Gone, but First It's Getting One Last Hurrah

https://www.milwaukeemag.com/schlitz-is-gone/
1•NaOH•2m ago•0 comments

Using Kagi Search with Low Vision

https://veroniiiica.com/using-kagi-search-with-low-vision/
1•speckx•2m ago•0 comments

Mozilla and Adafruit Bring Web Serial Workflows to Firefox

https://blog.mozilla.org/en/firefox/firefox-web-serial-adafruit/
1•pentagrama•4m ago•0 comments

SpaceX's IPO Bagship carries full payload of Elon's mistakes

https://jamesthomason.com/spacex-ipo-bagship-carries-full-payload-of-elons-mistakes/
1•dollar•4m ago•0 comments

Model Half-Life

https://aifoc.us/model-half-life/
1•gmays•7m ago•0 comments

Show HN: Dhrive – Prompt to a native iOS app, built locally with your own AI CLI

https://www.dhrive.app/
1•hsnrique•7m ago•0 comments

AOC displays drinking water contaminated by data center

https://bsky.app/profile/did:plc:iu4j537hox5huj4bwnwgub4z/post/3mmeysgcjbs2j
2•cdrnsf•8m ago•0 comments

Meta to lay off 350 staff from its Irish offices – The Irish Times

https://www.irishtimes.com/business/2026/05/20/metas-irish-workers-await-news-of-job-cuts/
1•rbanffy•10m ago•0 comments

Don't call yourself a Software Engineer, and other Career Advice

https://idiallo.com/blog/you-are-an-ai-enabled-engineer-now
2•firefoxd•10m ago•0 comments

Wallace Shawn Isn't Ready to Die

https://www.interviewmagazine.com/film/wallace-shawn-metrograph-retrospective-movies
1•speckx•14m ago•0 comments

The "Megalodon" Campaign: 5718 malicious commits to 5561 GitHub repos

https://xcancel.com/safedepio/status/2057501564609421557
2•theanonymousone•15m ago•0 comments

What will better AI mean?

https://geohot.github.io//blog/jekyll/update/2026/05/20/what-will-better-mean.html
2•andy99•15m ago•0 comments

Show HN: I made a premium booking platform in 2 months vibe coding

https://kalerum.com/en
1•mailforge•16m ago•0 comments

Show HN: Headroom – Loudness normalizer and Key+BPM playlist sorter for DJs

https://headroom.ravers.workers.dev/
1•jphfa•17m ago•0 comments

Coding agents run on terminal memories. Bottle yours

https://visr.dev/changelog/bottle-terminal-memories
1•sourishkrout•19m ago•0 comments

US decennial labor flows and economic opportunity, 1910–2040

https://www.pnas.org/doi/10.1073/pnas.2601716123
1•paulpauper•19m ago•0 comments

HG Wells Interviews Stalin (1934)

https://www.newstatesman.com/long-reads/1934/10/h-g-wells-it-seems-me-i-am-more-left-you-mr-stalin
1•yubblegum•19m ago•0 comments

The AIs Are "One of Us"

https://marginalrevolution.com/marginalrevolution/2026/05/the-ais-are-one-of-us-now.html
1•paulpauper•20m ago•0 comments

Minnesota Becomes First State to Ban Prediction Markets

https://www.nytimes.com/2026/05/19/us/minnesota-prediction-market-ban.html
1•paulpauper•21m ago•0 comments

Show HN: Coherence – drift detector for AI-driven repos

https://github.com/fireharp/coherence
1•fireharp•21m ago•1 comments

Show HN: Online Jigsaw Puzzle: drag&drop an image or use a provided sample

https://abionic.itch.io/jigsaw-puzzler
1•abionic•22m ago•1 comments

Bitcoin Value Overflow Incident (CVE-2010-5139)

https://www.learnbitcoin.com/rabbit-hole/inflation-bug-postmortem
3•granya•23m ago•0 comments

The AI has come for my code

https://boston.conman.org/2026/05/19.1
1•speckx•25m ago•0 comments

Karpathy's autoresearch, 50 DPO experiments, 300 human judges

https://huggingface.co/blog/ProlificAI/autoresearch-hitl-experiment
1•bradfeh•25m ago•0 comments

AVX 512 will be the future (2022)

https://www.realworldtech.com/forum/?threadid=209249&curpostid=209596
1•tosh•26m ago•0 comments

Securing Your Gemini and Google API Keys

https://cloud.google.com/blog/topics/developers-practitioners/api-keys-are-open-secrets
1•minherz•26m ago•0 comments

Eli Lilly's New Weight-Loss Treatment Shows Promising Results

https://www.wsj.com/health/pharma/eli-lillys-new-weight-loss-treatment-shows-promising-results-ca...
1•brandonb•27m ago•0 comments

Web Serial Support in Firefox

https://hacks.mozilla.org/2026/05/web-serial-support-in-firefox/
4•tech234a•29m ago•1 comments

World Genesis: Autonomous Agent Civilization Simulator

https://github.com/GeoLambdaAI/world-genesis
1•Gtombri•29m 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/