frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Caltech mathematicians call for suspension of AI Mathathon

https://proofsandprompts.com/2026/09/10/open-letter-about-the-mathathon/
1•doubledamio•1m ago•0 comments

PrimalLift

https://www.facebook.com/PrimalLiftTry/
1•najudasy•2m ago•0 comments

DeepJIT: Header-Only C++20 JIT Runtime for Nvidia CUDA and Huawei Ascend

https://github.com/deepseek-ai/DeepJIT
1•mehmetoguzderin•8m ago•0 comments

Thanks to Siri Recaps, your Apple Watch is always listening

https://www.techradar.com/health-fitness/smartwatches/thanks-to-siri-recaps-your-apple-watch-is-a...
2•geox•9m ago•0 comments

Pushing Collision Attacks on SHA-2 to 39 Steps

https://eprint.iacr.org/2026/1120
1•gslin•9m ago•0 comments

DeepSeek v4.1-Flash on Openrouter

https://openrouter.ai/deepseek/deepseek-v4.1-flash
1•manoji•9m ago•0 comments

PlayStation cancels Kojima's PHYSINT, Xbox steps in

https://twitter.com/hideo_kojima_en/status/2097877506401681753
3•HatchedLake721•9m ago•0 comments

Sellular – Boost SaaS Visibility

https://Sellular.online
1•Spark88•9m ago•0 comments

React 19.3: View Transitions and Fragment Refs are now stable

https://react.dev/blog/2026/09/09/react-19-3
1•joshcsimmons•11m ago•0 comments

Towards Self-Driving Codebases

https://cursor.com/blog/self-driving-codebases
1•tosh•11m ago•0 comments

Gemini 3.8 Flash passed Claude Fable 5.1 on this bench

https://chessbench.ai
2•soltanov•12m ago•0 comments

Outdoor Signage

https://www.ambert.ae
1•doshopzone•14m ago•0 comments

Scientificfigure

https://scientificfigure.com
1•ahmadrodriguezs•16m ago•0 comments

Nvidia and Palantir want to speed up the AI buildout. Nvidia is first in line

https://www.fastcompany.com/91604370/nvidia-palantir-sovereign-ai-supply-chains
1•johnshades•17m ago•0 comments

From One Horizontal Scaling Controller to Many: Evolving Uber's Compute Platform

https://www.uber.com/mx/en/blog/evolving-ubers-compute-platform/
1•theanonymousone•19m ago•0 comments

Drones Recreate Twin Towers

https://abc7ny.com/post/drone-show-recreates-twin-towers-honors-2977-victims-ahead-25th-anniversa...
2•TechTechTech•21m ago•0 comments

I Go to the Cloud [video]

https://www.youtube.com/watch?v=i5GTwBTCQJI
1•vismit2000•30m ago•0 comments

Show HN: The same nine streaming subscriptions cost $702/year more than in 2021

https://honestlyranked.com/guides/streaming-price-increases/
2•honestlyranked•31m ago•0 comments

Nerve Guard

https://www.facebook.com/NerveGuard/
1•hayzsafu•32m ago•0 comments

Flushing the toilet may release germ plume at adult face height

https://www.cidrap.umn.edu/misc-emerging-topics/flushing-toilet-may-release-germ-plume-adult-face...
5•giuliomagnifico•33m ago•1 comments

Running AMD OpenSIL and Coreboot on the First Available Ryzen AM5 Motherboard

https://www.phoronix.com/review/msi-b850p-coreboot-opensil
2•rbanffy•35m ago•0 comments

CrossLink: Breaking Location Privacy by Linking Device Identifiers Across

https://arxiv.org/abs/2609.09963
3•sbulaev•37m ago•0 comments

Arm's C2-Ultra, G2-Ultra NX, and CSS N4 IP

https://chipsandcheese.com/p/arms-c2-ultra-g2-ultra-nx-and-css
2•rbanffy•38m ago•0 comments

Count me in: how mathematics explains music – Sarah Hart [video]

https://www.youtube.com/watch?v=yS1DFy2SnQ0
2•vismit2000•38m ago•0 comments

Token Officer Bot

https://twitter.com/kiaraplds/status/2097753767579984281
2•tosh•41m ago•0 comments

Automation (2022)

https://blog.bayindirh.io/blog/on-automation/
2•ErenayDev•44m ago•0 comments

Show HN: Community curated list of 310 AI providers offering $4.3k free credits

https://www.uprouter.online/
3•opensrcme•44m ago•0 comments

Europe may have found a space entrepreneur who is meeting the moment

https://arstechnica.com/space/2026/09/as-europe-flounders-in-space-a-rising-french-star-may-show-...
3•rbanffy•46m ago•1 comments

Binary Translation and Its Consequences

https://chipsandcheese.com/p/on-binary-translation-and-its-consequences
2•thushanfernando•46m ago•0 comments

Optimizing a Spin-Lock

https://david.alvarezrosa.com/posts/optimizing-a-spin-lock/
1•birdculture•46m 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/