frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

OpenCV 5 Is Here: The Biggest Leap in Years for Computer Vision

https://opencv.org/opencv-5/
1•ternaus•3m ago•0 comments

Alan Kay on "Should web browsers have stuck to being document viewers?"

https://donhopkins.medium.com/alan-kay-on-should-web-browsers-have-stuck-to-being-document-viewer...
1•signa11•4m ago•0 comments

Is This Hate Speech?

https://link.springer.com/article/10.1007/s10610-023-09543-z
1•barrister•7m ago•0 comments

Lambda or Fargate: a decision built from numbers

https://medium.com/@yalovoy/lambda-or-fargate-a-decision-built-from-numbers-b6fd8fcd7bce
1•zero-ground-445•7m ago•0 comments

The Smallest C Binary

https://blog.weineng.me/posts/smallest_c
1•signa11•9m ago•0 comments

Simpson's Paradox

https://plato.stanford.edu/entries/paradox-simpson/
2•hackandthink•20m ago•0 comments

Been trying to post and I am getting flagged for it

1•Neobecomer•20m ago•1 comments

Agentic Search for Context Engineering

https://leoniemonigatti.com/blog/agentic-search-for-context-engineering.html
1•eigenBasis•20m ago•0 comments

Pennsylvania seems to just be running a steal money from Peter to feed Paul gag

https://drive.google.com/file/d/1e4YjokqzwoJZuhiVJhn92FUQ9ClS5dCX/view?usp=drivesdk
1•EddieMunsterrr•21m ago•0 comments

Mystery over squares on our roads is solved

https://www.bbc.co.uk/news/articles/cvgzg583dv2o
1•zeristor•22m ago•0 comments

Group Chat: The Best Way to Stress Out Your Team

https://37signals.com/group-chat-problems
1•plurby•25m ago•0 comments

Using Fedora Silverblue for Compositor Development

https://bxt.rs/blog/using-fedora-silverblue-for-compositor-development/
2•JNRowe•26m ago•0 comments

Above: Privacy Phones, Laptops, and Tablets

https://abovephone.com/
2•0x54MUR41•28m ago•0 comments

Blitz – A modular no-JS browser written in Rust

https://blitz.is/
1•satvikpendem•28m ago•0 comments

AI Has Come for Serif Fonts

https://www.wired.com/story/ai-has-come-for-serif-fonts/
1•maxloh•34m ago•0 comments

Thanks largely to robots Ukraine's now talking about winning, not just surviving

https://www.defenseone.com/technology/2026/06/ukraine-robots-winning/413902/
2•MilnerRoute•37m ago•0 comments

The Anger Isn't at the Tool

https://mamonas.dev/posts/the-anger-isnt-at-the-tool/
1•konmam•43m ago•0 comments

Small PRs, big speedups: The Ruby performance work you almost missed

https://mensfeld.pl/2026/06/ruby-performance-roundup/
2•doppp•45m ago•0 comments

Crypto's True Believers Demand to Be Taken Seriously

https://www.vanityfair.com/news/story/cryptos-true-believers
3•1vuio0pswjnm7•49m ago•2 comments

Free Online Survival Game – Arcade Style with Sonar Ping

1•desinxstudio•1h ago•0 comments

Jürgen Schmidhuber: World Models, RL and Year That Changed AI

https://www.the-information-bottleneck.com/jurgen-schmidhuber-world-models-rl-and-the-year-that-c...
1•__patchbit__•1h ago•0 comments

Making Claude a Chemist

https://www.anthropic.com/research/making-claude-a-chemist
1•zdkaster•1h ago•0 comments

Sites in Codex

https://developers.openai.com/codex/sites
2•ttul•1h ago•1 comments

Show HN: Nanocode-CLI – A lightweight terminal-based AI coding assistant

https://github.com/hit9/nanocode
2•hit9•1h ago•0 comments

Dots.tts: 2B-parameter continuous, end-to-end autoregressive TTS system

https://rednote-hilab.github.io/dots.tts-demo/
1•HellsMaddy•1h ago•0 comments

Ask HN: Does robotics capabilities research accelerate AGI timelines?

3•themasterchief•1h ago•1 comments

Undergoing maintenance for terminal.pink, I'm moving to a new home

https://blog.terminal.pink/posts/byte-vi.html
1•blmayer•1h ago•0 comments

S&P 500 rejects SpaceX, also blocking entry for OpenAI and Anthropic

https://arstechnica.com/tech-policy/2026/06/sp-500-blocks-fast-spacex-entry-wont-waive-rule-for-u...
88•maltalex•1h ago•10 comments

OpenAlex: All the Research, Connected and Open

https://openalex.org/
1•the-mitr•1h ago•0 comments

How to Build an AI Agent for Slack with Chat SDK and AI SDK

https://vercel.com/kb/guide/how-to-build-an-ai-agent-for-slack-with-chat-sdk-and-ai-sdk
1•flashbrew•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/