frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

(2013) You Won't Finish This Article

https://slate.com/technology/2013/06/how-people-read-online-why-you-wont-finish-this-article.html
1•bear_with_me•3m ago•1 comments

More people around the world now favour China over the US, Pew study suggests

https://www.bbc.com/news/articles/cd959q11g54o
1•hackernj•4m ago•0 comments

Archer Announces Zee, AI Foundation Model Purpose-Built for Aviation

https://www.investors.archer.com/news/news-details/2026/Archer-Announces-Zee-AI-Foundation-Model-...
1•vlovich123•5m ago•0 comments

I'm early in my career and built an honest job-search agent for senior engineers

https://www.reclaim.careers/
1•Adoomah•8m ago•1 comments

Nick Shirley Delivers his Testimony at the Senate Committee Hearing – 7/15/26 [video]

https://www.youtube.com/watch?v=0ZyuhayRQ10
1•Bender•8m ago•0 comments

Ask HN: Are AWS Certs worth getting for experienced Devs?

2•Gold-Ask-lx•8m ago•0 comments

Mixture of agents is obsolete, Meet MOD

https://twitter.com/KevRojo/status/2077452829128523951
1•devdulus•8m ago•0 comments

Show HN: Pgmig: Generate migrations between Postgres databases

https://github.com/Apakottur/pgmig
1•McAvey•9m ago•0 comments

Algo Framework Stress Tester

https://github.com/samar-gulati/Algorithm-tester
1•algoexperiment•9m ago•0 comments

Mass. startups raised nearly $5B last quarter, regaining lead over Texas

https://www.bostonglobe.com/2026/07/09/business/vc-funding-massachusetts-texas/
1•SaaSasaurus•10m ago•0 comments

Ask HN: Are the heaviest AI users of your team blowing past everyone else?

4•ex-aws-dude•13m ago•2 comments

India to allocate $20B to semiconductor and smartphone manufacturing

https://techcrunch.com/2026/07/15/india-bets-billions-on-breaking-chinas-grip-on-smartphone-manuf...
1•alephnerd•13m ago•1 comments

3D-printed bridge points the way to greener construction

https://news.mit.edu/2026/3d-printed-bridge-points-to-greener-construction-0715
1•gnabgib•13m ago•0 comments

Funding Signals – an API that finds companies the moment they raise money

https://funding-signals-api.onrender.com/
1•labombas•14m ago•0 comments

The Explosive Diarrhea Outbreak Is About to Get Much Bigger

https://www.wired.com/story/explosive-diarrhea-outbreak-about-to-get-bigger/
1•mooreds•17m ago•1 comments

Show HN: Collaborate.dev – Multiplayer Visual Desktop for Coding Agents

https://collaborate.dev/remote/
2•austinvhuang•19m ago•1 comments

Show HN: Benchmarklist: track AI benchmarks (2.4k+), models, and capabilities

https://benchmarklist.com/
1•davidtsong•20m ago•0 comments

Hacker Fables – A satirical cyberpunk novella you can read as a man page

https://hacker-fables.onrender.com
1•birdculture•20m ago•0 comments

What If the Harness Comes Before Pretraining? A Data Flywheel Perspective

https://hanchenli.github.io/blog/posts/harness_pretraining/
1•matt_d•21m ago•0 comments

So long r/rust, and thanks for all the Slop!

https://old.reddit.com/r/rust/comments/1uwmef6/so_long_rrust_and_thanks_for_all_the_slop/
6•bel8•22m ago•0 comments

Show HN: Betula Fuzzy Search

https://gist.github.com/overflowy/9b6d30c7b65dd23c8899636595d88227
1•overflowy•24m ago•0 comments

Mimesys: Turn Resource Usage Traces into Executable Workloads

https://www.usenix.org/conference/osdi26/presentation/kim-donghyun
1•matt_d•24m ago•1 comments

Alman: German, Simplified

https://alman.ai/
1•tosh•25m ago•0 comments

Murati's Thinking Machines Releases Open-Weights 975B Parameter LLM

https://thinkingmachines.ai/inkling/
16•htrp•25m ago•2 comments

Disposable Software

https://seths.blog/2026/07/disposable-software/
3•herbertl•26m ago•0 comments

C Strings: A 50-Year Mistake – By Trần Thành Long

https://longtran2904.substack.com/p/c-strings-a-50-year-mistake
4•rbanffy•26m ago•0 comments

Sorel Caribou Boots: Great Product, Disappointing Online Shop

https://micro.mjanssen.nl/2026/07/15/200303.html
1•marc0janssen•26m ago•0 comments

Inkling: Our Open-Weights Model

https://thinkingmachines.ai/news/introducing-inkling/
16•vimarsh6739•27m ago•3 comments

Odyssey Linux – a Void-based distro trying to make no-systemd approachable

https://linuxcommunity.io/t/odyssey-linux-a-void-based-distro-trying-to-make-no-systemd-approacha...
3•ashitlerferad•27m ago•0 comments

Show HN: How you auto recover your Claude Code workflow when quota resumes

https://github.com/softcane/cc-session-recover
1•pradeep1177•30m 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/