frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

New California study finds highly educated workers most harmed by AI

https://www.sfgate.com/politics/article/california-ai-study-22321472.php
1•littlexsparkee•1m ago•0 comments

US and Chinese companies train almost all of the most-used AI models

https://ourworldindata.org/data-insights/us-and-chinese-companies-train-almost-all-of-the-worlds-...
1•TMWNN•6m ago•0 comments

Mouse: Precision Editing Tools for AI Coding Agents

https://hic-ai.com
1•handfuloflight•8m ago•0 comments

Meituan Trained a 1.6T-Parameter AI Model Without Nvidia GPUs

https://xyzlabs.substack.com/p/meituan-trained-a-16t-parameter-ai
1•mgh2•10m ago•0 comments

China's LongCat-2.0 Becomes the Biggest AI Model Without Nvidia Chips

https://tech.yahoo.com/ai/articles/china-longcat-2-0-becomes-134258951.html
1•mgh2•11m ago•0 comments

Shadcn/UI now defaults to Base UI instead of Radix

https://ui.shadcn.com/docs/changelog
3•dabinat•23m ago•0 comments

Binary Coverage the Wrong Way

https://redvice.org/2026/coverage-the-wrong-way/
2•matt_d•30m ago•0 comments

Oxc (popular front-end tooling) forked my parser but removed my copyright notice

https://github.com/oxc-project/oxc-css-parser/issues/92
1•gplane•39m ago•0 comments

Moby Dick Workout

https://www.hogbaysoftware.com/posts/moby-dick-workout/
2•helloplanets•39m ago•1 comments

My ASN Journey series (2024)

https://www.animmouse.com/p/my-asn-journey/
2•antonalekseev•40m ago•1 comments

The Electricity: Why Google may be trying to make intelligence disappear

https://manasbihani.substack.com/p/the-electricity
1•manasb25•43m ago•0 comments

Reading Minds with Ultrasound: Less-Invasive Technique for Brain's Intentions (2021)

https://www.caltech.edu/about/news/reading-minds-with-ultrasound-a-less-invasive-technique-to-dec...
1•mgh2•51m ago•0 comments

HarnessMonkey – claude mods to show hidden tokens & improve vibes!

https://github.com/hackerbara/harnessmonkey
1•hackerbara•54m ago•1 comments

RTS a TypeScript-to-Native Compiler/Runtime in Rust (Cranelift JIT and AOT)

https://github.com/UrubuCode/rts
1•azx0025•58m ago•0 comments

Show your hands honor for the power they bring you

https://aresluna.org/show-your-hands-honor/
1•aua•59m ago•0 comments

Show HN: Inches to CM converter with charts and screen size references

https://inches-to-cm.net
1•robot1996•1h ago•2 comments

Perchlorate

https://en.wikipedia.org/wiki/Perchlorate
1•soupspaces•1h ago•0 comments

Show HN: How do you guys keep your journey diaries?

https://journeydiaries.vercel.app/
1•dutay05•1h ago•1 comments

Drawbridge – Design Editor for Claude Code and Cursor

https://github.com/breschio/drawbridge
1•javatuts•1h ago•0 comments

Spotify deletes 500K Malcolm Todd streams for suspected prediction manipulation

https://mashable.com/tech/spotify-deletes-malcolm-todd-streams-manipulation-prediction-markets
1•gnabgib•1h ago•0 comments

President pardons 9 for Clean Air violations for 'fixing their car'

https://www.msn.com/en-us/news/crime/trump-pardons-9-for-clean-air-violations-for-fixing-their-ca...
23•OutOfHere•1h ago•1 comments

Writing Blogs or News Articles? Free and Fast Word Counter -Accurate and Private

https://fastwordcount.com/
1•rajkverma123•1h ago•0 comments

I Accidentally Started a Small Business Three Weeks Ago

https://extelligence.substack.com/p/i-accidentally-started-a-small-business
6•shpat•1h ago•1 comments

Sea Surface Temperature, Live

https://www.maps.com/earth-in-action/sea-surface-temperature/
1•akashwadhwani35•1h ago•0 comments

Global earthquake detection and warning using Android phones (2025)

https://www.science.org/doi/10.1126/science.ads4779
1•whycome•1h ago•0 comments

America Is More

https://thelisowe.substack.com/p/america-is-more
1•Mockapapella•1h ago•0 comments

Android phones knew Venezuela earthquake was coming

https://www.youtube.com/watch?v=Hi432PXwAZE
1•whycome•1h ago•2 comments

The Preemptive Draw and Preemptive Grip in the Cash-in-Transit Sector

https://gutsgatesguards.wordpress.com/2026/06/23/the-preemptive-draw-and-preemptive-grip-in-the-c...
2•stmw•1h ago•0 comments

In AI-exposed jobs, the youngest workers are losing ground

https://www.randalolson.com/2026/06/22/ai-jobs-hit-youngest-workers/
2•samspenc•1h ago•1 comments

The tool layer for developers and AI agents

https://www.utilix.tech/
1•negiadventures•2h 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/