frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Claude hack – Don't waste you token where it's not needed

https://github.com/justinjamesmathew/tokenmax-mcp
1•justin1006•1m ago•0 comments

Ask HN: I mapped 6,494 AI engines into a taxonomy – anyone else tried this?

1•Developer_H•1m ago•0 comments

1,700 new protein found in the "dark proteome" of previously overlooked DNA

https://pubmed.ncbi.nlm.nih.gov/42092140/
2•janandonly•2m ago•0 comments

Coding agents are giving everyone decision fatigue

https://stackoverflow.blog/2026/05/21/coding-agents-are-giving-everyone-decision-fatigue/
1•vinhnx•10m ago•0 comments

It's Time to Walk

https://www.inferterra.com/the-new-workspace-a-first-principles-exploration-of-dictation-agents-a...
1•vinhnx•10m ago•0 comments

Prof or Hobo?

https://www.proforhobo.com/
1•Paracompact•13m ago•0 comments

The Four Motivators (2016)

https://apenwarr.ca/log/20161213
2•downbad_•22m ago•0 comments

Sleep and Mortality: A Population-Based 22-Year Follow-Up Study (2007)

https://fermatslibrary.com/s/sleep-and-mortality-a-population-based-22-year-follow-up-study
1•downbad_•23m ago•1 comments

Local Root Privilege Escalation and Credential Disclosure in the Linux Kernel

https://blog.qualys.com/vulnerabilities-threat-research/2026/05/20/cve-2026-46333-local-root-priv...
1•signa11•25m ago•0 comments

China behind in LLM race but it can still win in AI, ex-Tencent AI lead says

https://www.scmp.com/tech/big-tech/article/3354394/china-losing-llm-race-it-can-still-win-ai-ex-t...
1•01-_-•25m ago•0 comments

Newsom signs order aimed at tackling AI job displacement

https://thehill.com/policy/technology/5889582-california-ai-job-losses/
1•01-_-•28m ago•0 comments

Ruby Arrays on Steroids (2014) [video]

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

How AI is redefining Software Engineering

https://adlrocha.substack.com/p/adlrocha-how-ai-is-redefining-software
1•adlrocha•35m ago•0 comments

The Internet is rotting away (German)

https://netzpolitik.org/2026/breakpoint-das-internet-verrottet/
2•doener•35m ago•0 comments

Show HN:An LED display app that lights up concerts, events, and fan moments

https://play.google.com/store/apps/details?id=com.koko.board.glow&hl=en_US
1•k-Whale•40m ago•1 comments

uP

https://www.micropublication.org/
2•jruohonen•40m ago•1 comments

Hiro, AI job matching with real visa sponsorship data (550K jobs)

https://hirocareers.com
1•sharvenrane7•43m ago•0 comments

Wild Linker Update – 0.9.0

https://davidlattimore.github.io/posts/2026/05/24/wild-update-0.9.0.html
3•dabinat•45m ago•0 comments

WarpSpeed Just Beat Cursor

https://www.doubleai.com/research/warpspeed-approaches-speed-of-light-on-blackwell
2•ben_mussay•45m ago•0 comments

For developers without design skills, how do you leverage AI for front end dev?

1•boundless88•49m ago•0 comments

The anatomy of AI power in 2026

https://wayneresearch.com/research/anatomy-of-ai-power/
1•7moritz7•50m ago•0 comments

Solving the Technical Interview

https://functional.computer/blog/solving-the-technical-interview
1•adhi01•54m ago•0 comments

Climate tech companies are pivoting to critical minerals

https://www.technologyreview.com/2026/05/21/1137622/climate-tech-pivot-critical-minerals/
2•joozio•59m ago•0 comments

Expanding the human proteome with microproteins and peptideins – Nature

https://www.nature.com/articles/s41586-026-10459-x
1•janandonly•1h ago•0 comments

Big fears in Big Tech sector over Artificial Intelligence job losses

https://www.rte.ie/news/analysis-and-comment/2026/0524/1574792-tech-job-ai-analysis/
1•austinallegro•1h ago•0 comments

The Shape of Things

https://dianagabaldon.com/2022/05/the-shape-of-things-2/
1•jruohonen•1h ago•0 comments

Beyond HTTP: Exposing WebRTC and Local Game Servers via UDP Tunnels

https://claude.ai/public/artifacts/e608fb30-b023-4263-b693-ef04fab85be9
1•insta_tunnel•1h ago•0 comments

How should economists treat morality?

https://economist.com/finance-and-economics/2026/05/21/how-should-economists-treat-morality
2•andsoitis•1h ago•0 comments

USDA Conducts Oral Rabies Vaccination Efforts Targeting Wildlife (2025)

https://www.aphis.usda.gov/news/agency-announcements/usda-conducts-2025-oral-rabies-vaccination-e...
1•thunderbong•1h ago•0 comments

Token Price Index

https://tokenpriceindex.com
2•namenumber•1h 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/