frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Promising inference software, written in Zig

https://zml.ai/posts/llmd/
1•sachamorard•2m ago•0 comments

Turn off this Meta setting before someone generates AI images of you

https://www.malwarebytes.com/blog/ai/2026/07/turn-off-this-meta-setting-before-someone-generates-...
1•taubek•5m ago•0 comments

TinyToT – Tree of Thoughts Inference Server

https://github.com/guilt/TinyToT
1•vkaku•5m ago•1 comments

AI subscriptions cut quotas and raised prices in early 2026

https://wellstsai.com/en/post/ai-subscription-shakeout-2026-claude/
1•Tint6666•7m ago•0 comments

Reuters World News Podcast

https://www.reuters.com/podcasts/reuters-world-news/
1•gurjeet•9m ago•0 comments

China's provinces asked to bail out risk-fraught regional banks

https://www.chinabankingnews.com/p/chinas-provinces-asked-to-bail-out
1•andsoitis•19m ago•0 comments

Publishers Are Preparing to Opt Out of Google Search

https://www.adweek.com/media/publishers-opt-out-google-search/
3•giuliomagnifico•22m ago•0 comments

Lisp as the Maxwell's Equations of Software

https://michaelnielsen.org/ddi/lisp-as-the-maxwells-equations-of-software/
5•andsoitis•23m ago•1 comments

Experiment with tiny quantum universe: time 'arises' from changes in disorder

https://www.sciencedaily.com/releases/2026/07/260709160632.htm
1•alok-g•23m ago•1 comments

Neuralwatt Doubling the Price

https://portal.neuralwatt.com/pricing
2•MehrdadKhnzd•24m ago•0 comments

The great AI data centre cover-up

https://www.ft.com/content/7800ba0f-1420-49fe-b260-9838632a19a4
1•1vuio0pswjnm7•32m ago•0 comments

AI Investors Buying Accounting Companies and Force Them to Use OpenAI [video]

https://www.youtube.com/watch?v=2dp98vEGWq0
2•xbmcuser•35m ago•0 comments

Zeno's Paradox and Infinite Sums – Lectures on Infinity (Lecture 1) [video]

https://www.youtube.com/watch?v=4Y9p0yp8Mow
2•FillMaths•37m ago•0 comments

Italy privacy watchdog fines Character.ai owner over age-check failures

https://www.reuters.com/business/italy-privacy-watchdog-fines-characterai-owner-over-age-check-fa...
1•1vuio0pswjnm7•37m ago•0 comments

Hypeplan: Turn plans into terminal keynote speeches

https://github.com/martinrue/hypeplan
1•afisxisto•38m ago•1 comments

Semantic Fingerprinting Made Easy

https://github.com/thorwhalen/guise
1•ankitg12•45m ago•0 comments

Show HN: Zero2Robot – free, open source interactive textbook for robot learning

https://zero2robot.com/
1•kaushikbokka•46m ago•0 comments

Ask HN: Recommend a Local LLM Setup (M2 Max, 9GB)

1•balivandi•48m ago•0 comments

Show HN: Short SciFi/Fantasy Index

https://quasar.fyi/
1•FifthRocket•49m ago•1 comments

Ask HN: How do I get immoral AI?

2•nasaok•49m ago•1 comments

Best Job Oriented Courses in India: Guide, Rules and Benefits

https://www.smfgindiacredit.com/knowledge-center/best-job-oriented-courses-in-india.aspx
1•saumyaraut11•51m ago•0 comments

Show HN: World Clock with Twilight/Night Overlayed on Map

http://nixon-development.com/worldclock/
1•plun9•53m ago•0 comments

Ukraine's Drones Are Now Reaching Siberia and Imperiling Russian Energy Assets

https://www.wsj.com/world/ukraines-drones-are-now-reaching-siberia-and-imperiling-russian-energy-...
2•JumpCrisscross•54m ago•0 comments

Tech volatility hits highest since dot-com bust next to S&P 500

https://fortune.com/2026/07/07/tech-volatility-hits-highest-since-dot-com-bust-sp-500/
2•1vuio0pswjnm7•55m ago•0 comments

Mercor acquires Deeptune to build AI training environments

https://www.mercor.com/blog/mercor-to-acquire-deeptune/
1•doppp•1h ago•0 comments

UN digital tech agency launches initiative to improve trust in AI agents

https://www.reuters.com/legal/litigation/un-digital-tech-agency-launches-initiative-improve-trust...
1•giuliomagnifico•1h ago•0 comments

China's public QR codes are being hijacked to redirect users to porn and scams

https://www.sixthtone.com/news/1018752/ScanScam:CriminalsRedirectChina’sPublicQRCodestoPorn
24•whiteblossom•1h ago•0 comments

Jukebox: Themes inspired by music cover art

https://github.com/nooneknowspeter/jukebox
1•nooneknowspeter•1h ago•0 comments

Counting ArXiv Delays

https://fi-le.net/arxiv/
1•fi-le•1h ago•0 comments

China recovers Long March 10B rocket

https://www.bilibili.com/video/BV1n6NL6fEP9
5•ycui7•1h ago•3 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/