frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Tailguard – A tested CVaR-based optimizer for stochastic reshoring

https://github.com/dismissed8582/tailguard
1•dismissed181•3m ago•0 comments

Microsoft's "Digital Escorts" Left DoD Vulnerable to Chinese Hackers

https://www.propublica.org/podcast/microsoft-digital-escorts-china-defense-department
3•jnord•8m ago•0 comments

Popular sugar substitutes linked to faster brain aging

https://www.sciencedaily.com/releases/2026/07/260717033213.htm
3•toomuchtodo•18m ago•0 comments

Harness Engineering

https://github.com/lopopolo/harness-engineering
2•handfuloflight•18m ago•0 comments

Open-Source Communism

https://continuouswritting.substack.com/p/open-source-communism
1•operator_nil•20m ago•0 comments

Codex Resets

https://codex-resets.com/
12•denysvitali•21m ago•12 comments

Why 'admin nights' are the new book club for busy adults

https://www.cnn.com/2026/01/26/health/admin-night-adults-productivity-trend-wellness
2•akman•30m ago•0 comments

European Court Confirms Ethical Veganism Is a Protected Philosophical Belief

https://veganfta.com/articles/2026/07/17/european-court-confirms-ethical-veganism-is-a-protected-...
3•salutis•30m ago•1 comments

Godecompose: Go decompiler that uses pattern matchers

https://github.com/cookiengineer/godecompose
2•cookiengineer•35m ago•1 comments

Prepaid Cellphone Plans – Comparison Site

https://prepaidcompare.net
2•WarOnPrivacy•49m ago•1 comments

CannonSmash Web

https://github.com/jgbrwn/cannonsmash-web
1•indigodaddy•49m ago•0 comments

Show HN: Ilya Sutskever's AI reading list into a learning RPG – using kimi k3

https://ilya-papers-quest.naigap.com/#/
2•praveer13•51m ago•0 comments

A free PTE Core practice platform with instant AI scoring

https://ptecorepractice.com
1•justinzhou01•52m ago•1 comments

Retrotvs – Channel-surf the past now by choosing any of the TV sets

https://70s.myretrotvs.com/
1•modinfo•52m ago•0 comments

On Ethics and Usefulness

https://manuelmoreale.com/thoughts/on-ethics-and-usefulness
2•HotGarbage•54m ago•0 comments

New hybrid positioning system promises reliable tracking where GPS fails

https://www.qmul.ac.uk/news/latest-news/2026/science-and-engineering/se/new-hybrid-positioning-sy...
2•hhs•1h ago•0 comments

Multi-Agent LLMs Fail to Explore Each Other

https://arxiv.org/abs/2607.11250
1•Anon84•1h ago•1 comments

Statistical test helps judge the value of personalization

https://news.stanford.edu/stories/2026/07/statistical-test-personalization-k-fold
2•hhs•1h ago•0 comments

Java was a three-day hotfix away from dying horribly on stage

https://www.theregister.com/devops/2026/07/18/java-was-a-three-day-hotfix-away-from-dying-horribl...
1•jnord•1h ago•0 comments

The headache of hospital pricing

https://lawliberty.org/the-headache-of-hospital-pricing/
2•hhs•1h ago•0 comments

The 3:47 Am Wake‑Up Call That Changed Everything

https://hackenewhome.blogspot.com/p/code-optimise-pour-blogger-suppression.html
1•AllForAll•1h ago•0 comments

Juggling for Blind People

https://www.jugglingforblindpeople.com/
3•pipnonsense•1h ago•0 comments

Even Microsoft couldn't make Windows 11 work well on 8GB of RAM

https://www.theverge.com/tech/966937/microsoft-surface-laptop-13-inch-8gb-ram-2026-review
5•GeekyBear•1h ago•2 comments

Welcome to Toronto, World Capital of the Urban Raccoon

https://lithub.com/welcome-to-toronto-world-capital-of-the-urban-raccoon/
3•herbertl•1h ago•0 comments

HN: Save Replay – Trim a video before uploading it

https://savereplay.com
2•IGOLz•1h ago•0 comments

Don't Force the Money Too Early

https://nik.art/dont-force-the-money-too-early/
3•herbertl•1h ago•0 comments

Prompted to Start: How Generative AI Is Transforming Entrepreneurship [pdf]

https://conference.nber.org/conf_papers/f238865.pdf
2•herbertl•1h ago•0 comments

SafeAI – Open-Source Static AI Risk Analyzer for AI Agents

https://github.com/ikaruscareer/SafeAI
2•ikaruscareer•1h ago•0 comments

How Indian Railways plans to stop blanket, bedsheet theft on trains

https://www.moneycontrol.com/europe/?url=https://www.moneycontrol.com/news/india/how-indian-railw...
2•rustoo•1h ago•0 comments

Hiring Private equity firm doing 9M in revenue

https://www.careerjumpship.com/jobs/fullstack-engineer-cofounder-nyc-b84627f7
3•jaredzwick•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/