frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The Great Reset: Navigating a Turbulent Post-AI World

https://breadcrumb.vc/the-great-reset-navigating-a-turbulent-post-ai-world-4b5b4d434c5b
1•sameer_singh17•1m ago•0 comments

Fried Quotations

https://docs.factorcode.org/content/article-fry.html
1•tosh•2m ago•0 comments

Keeping your GitHub Actions and workflows secure: Preventing pwn requests (2021)

https://securitylab.github.com/resources/github-actions-preventing-pwn-requests/
1•thinkingemote•2m ago•0 comments

Show HN: Aptui-TUI package manager for APT-based Linux distributions

https://github.com/mexirica/aptui
1•mexirica•3m ago•0 comments

Show HN: Alacritree, terminal with built-in worktree management

https://github.com/mathix420/alacritree
1•mathix•5m ago•0 comments

Is the modern premium EDC knife markup justified?

http://Link:paragon-knives.com
1•bgzlsxaz•6m ago•0 comments

Rob Pike: Tech industry losing its soul

https://hachyderm.io/@robpike/116557975987213548
1•anygivnthursday•6m ago•0 comments

Fortress Co-Founder Allegedly Extorted by Sexual Partner

https://www.wsj.com/us-news/law/fortress-co-founder-allegedly-extorted-by-sexual-partner-ee9d6666
2•Michelangelo11•9m ago•0 comments

Arene Base

https://github.com/woven-by-toyota/arene-base
1•intern4tional•9m ago•2 comments

Made a New Side Project - Free to use

https://old.reddit.com/r/sideprojects/comments/1tabelm/finished_making_this_url_shortener_complet...
1•godlymod•10m ago•0 comments

Build, edit, and analyze forms directly in Claude

https://www.jotform.com/claude/
1•aytekin•11m ago•0 comments

Linux bitten by second vulnerability in as many weeks

https://arstechnica.com/security/2026/05/linux-bitten-by-second-severe-vulnerability-in-as-many-w...
3•isaacfrond•12m ago•0 comments

Show HN: An implementation of Common Lisp in development, reached version 1.6

https://savannah.nongnu.org/news/?id=10889
1•andreamonaco•12m ago•0 comments

Relieving power grids: Parked electric cars charge electric ferries

https://www.heise.de/en/news/Relieving-power-grids-Parked-electric-cars-charge-electric-ferries-1...
1•doener•12m ago•0 comments

Improving Technical Documentation with Mermaid Diagrams

https://mdview.io/s/mermaid-diagrams-for-software-developers
2•Igor_Wiwi•17m ago•0 comments

LLM Hallucinations in the Wild

https://arxiv.org/abs/2605.07723
1•anygivnthursday•19m ago•1 comments

Peter Wang: The Life of Py My First 20 Years of Python [video]

https://www.youtube.com/watch?v=dtS0SEdhbbg
1•tosh•19m ago•0 comments

CSS Rhythmic Sizing Module Level 1

https://www.w3.org/TR/css-rhythm-1/
1•gudzpoz•22m ago•0 comments

Strange crystals found inside wreckage from the first nuclear bomb test

https://www.scientificamerican.com/article/strange-crystals-found-inside-wreckage-from-the-first-...
2•beardyw•23m ago•0 comments

Can a Language Model Paint?

https://www.etive-mor.com/blog/can-a-language-model-paint/
3•liamlaverty•24m ago•2 comments

The Scrum decline: It's three years later, and I was right

https://www.leadinginproduct.com/p/scrum-decline
1•benkan•25m ago•0 comments

Anthropic's Mythos was greatest marketing stunt ever, says cURL creator

https://www.theregister.com/security/2026/05/11/anthropics-bug-hunting-mythos-was-greatest-market...
1•isaacfrond•25m ago•0 comments

Microsoft researchers find AI models and agents can't handle long-running tasks

https://www.theregister.com/ai-ml/2026/05/11/microsoft-researchers-find-ai-models-and-agents-cant...
2•beardyw•27m ago•0 comments

Show HN: I built a fair-price checker App for home repairs using BLS wage data

https://apps.apple.com/us/app/quotebuster/id6765996986
3•manojtrek•30m ago•0 comments

I Think I Figured Out What an AI IDE Looks Like

https://taoofmac.com/space/blog/2026/05/12/0720
1•rcarmo•31m ago•0 comments

Universal Approach to Self-Referential Paradoxes (2003)

https://arxiv.org/abs/math/0305282
1•measurablefunc•31m ago•0 comments

The Human Body's Hidden Pathways

https://www.nytimes.com/interactive/2026/05/11/magazine/interstitium-anatomy-acupuncture-medicine...
2•wanderingmind•34m ago•0 comments

People Don't Buy Products, They Buy Better Versions of Themselves (2014)

https://buffer.com/resources/people-dont-buy-products-they-buy-better-versions-of-themselves/
3•downbad_•34m ago•0 comments

Toxicity on Social Media – The Noisy Room

https://thenoisyroom.com
1•skm•36m ago•0 comments

Show HN: World Cup History MCP – every FIFA tournament 1930–2026

https://api.zafronix.com/wc-explorer/
1•zafronix•37m ago•2 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/