frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Too Liked to Be Useful

https://yusufaytas.com/too-liked-to-be-useful
7•montrealish•5m ago•0 comments

Show HN: I built a multiplayer dominoes game

https://www.pipsgg.com
1•minicliprocks•6m ago•1 comments

Constrained Modeling for Coding Agents

https://github.com/dannylee1020/kkt
1•dannylee1020•7m ago•0 comments

Palmier – a free video editor built for AI

https://www.palmier.io/
1•artur_makly•9m ago•0 comments

A Beginner's Guide to Robotics Hardware

https://interlatent.com/blog/interlatent-robotics-hardware-guide
1•sebg•15m ago•0 comments

The Oura $400 Ring Is Designed to Die [video]

https://www.youtube.com/watch?v=zqCp-z9WAkA
1•SockThief•15m ago•0 comments

Why Weibo's tiny VibeThinker-3B has the AI world arguing over benchmarks again

https://venturebeat.com/technology/why-weibos-tiny-vibethinker-3b-has-the-ai-world-arguing-over-b...
3•gmays•18m ago•0 comments

Reinforcement learning towards broadly and persistently beneficial models

https://alignment.openai.com/beneficial-rl/
1•jawiggins•21m ago•0 comments

Hackers Found a Back Door into the American Living Room

https://www.wsj.com/tech/cybersecurity/how-hackers-found-a-back-door-into-the-american-living-roo...
1•rawgabbit•23m ago•0 comments

Connecting Peripherals to Atari 8-bit Computers

https://www.goto10retro.com/p/connecting-peripherals-to-atari-8
2•rbanffy•23m ago•0 comments

All Tomorrow's Parties

https://ethanmarcotte.com/wrote/all-tomorrows-parties/
1•wassimans•23m ago•0 comments

CEOs: How to Not Screw Up Your AI Memo

https://www.callercallsback.com/p/ceos-heres-how-to-not-screw-up-your
1•ohjeez•27m ago•0 comments

Transgenic hookworm secretes anti-tetrodotoxin human single chain antibody

https://www.nature.com/articles/s41467-026-73447-9
2•phront•29m ago•0 comments

Netflix Viewing Activity

https://www.netflix.com/login?nextpage=https%3A%2F%2Fwww.netflix.com%2Fviewingactivity
1•meken•31m ago•0 comments

Setting Up a New Windows Laptop in 2026

https://matthewquerzoli.com/blog/18-06-2026-setting-up-a-new-windows-laptop-in-2026
1•Quiza12•31m ago•1 comments

Zero-Touch OAuth for MCP

https://blog.modelcontextprotocol.io/posts/enterprise-managed-auth/
3•niyikiza•34m ago•1 comments

The software industry: annealing, but wrong

https://apenwarr.ca/log/20260531
2•sebg•35m ago•0 comments

SubQ – a sub-quadratic LLM built for multi-million token reasoning

https://subq.ai/
2•modinfo•35m ago•0 comments

Shape Suffixes – Good Coding Style

https://medium.com/@NoamShazeer/shape-suffixes-good-coding-style-f836e72e24fd
1•sebg•38m ago•0 comments

How will AI make moral decisions for you and me?

https://knowablemagazine.org/content/article/technology/2026/what-shapes-ai-moral-decisions
1•knowablemag•41m ago•0 comments

The ancient book of wisdom at the heart of every computer (2014)

https://www.theguardian.com/books/2014/mar/21/ancient-book-wisdom-i-ching-computer-binary-code
1•mot2ba•41m ago•0 comments

Documenting Architecture Decisions (2011)

https://www.cognitect.com/blog/2011/11/15/documenting-architecture-decisions
1•ramoz•42m ago•1 comments

Ask HN: Are companies still hiring data scientists?

1•ivaivanova•43m ago•0 comments

Show HN: Sycloop – An AI marketplace that closes multi-party barter loops

https://sycloop.com
1•HELENENDORFSKY•44m ago•0 comments

How Tool Search Works and How It Saves Tokens

https://chaliy.name/blog/how-tool-search-works/
1•chalyi•44m ago•0 comments

AI to Automate Brain Diagnoses

https://radiologyai.com/
2•DarkContinent•45m ago•0 comments

Peter Thiel is actively convincing billionaires to abandon the Giving Pledge

https://fortune.com/2026/03/16/peter-thiel-giving-pledge-billionaire-philanthropy-backlash/
3•mgh2•45m ago•0 comments

Who's Actually Running That Robot?

https://www.bostonglobe.com/2026/06/18/opinion/demo-videos-robots-autonomous/
1•johncoatesdev•49m ago•0 comments

A beautiful and parametric particles simulation

https://sand-morph.up.railway.app/flux-lab
1•echohive42•49m ago•0 comments

Show HN: Pagecord Spotlight – discover trending independent posts on Pagecord

https://pagecord.com/spotlight
2•lylo•50m ago•1 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/