frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Shunting-Yard Animation

https://somethingorotherwhatever.com/shunting-yard-animation/
1•s1291•2m ago•0 comments

They dug up Troy and lost the gold

https://storica.club/blog/troy-was-real/
1•aralsamuel•5m ago•0 comments

Rust-based ScanCode-compatible scanner for licenses and copyrights

https://github.com/mstykow/provenant
1•Tomte•5m ago•0 comments

Using AI to onboard to a new codebase

https://newsletter.eng-leadership.com/p/how-to-use-ai-to-onboard-into-a-codebase
1•wordsaboutcode•6m ago•0 comments

Cyclekart: How to build a soapbox with a motor [video]

https://www.youtube.com/watch?v=vATUDJyM5PQ
1•Teever•6m ago•0 comments

Technical Dimensions of Live Feedback in Programming Systems

https://joshuahhh.com/dims-of-feedback/
1•tobr•7m ago•0 comments

The Reality of an Employer's Market

https://yusufaytas.com/the-reality-of-an-employers-market
7•vibeloop•7m ago•0 comments

Disgraced US gov software contractor found guilty of database destruction

https://www.theregister.com/cyber-crime/2026/05/08/former-us-contractor-convicted-in-federal-data...
1•Bender•8m ago•0 comments

Akamai surges on big LLM deal as Cloudflare dims

https://www.theregister.com/networks/2026/05/09/akamai-surges-on-big-llm-deal-as-cloudflare-dims/...
1•Bender•9m ago•0 comments

WFY24 – A performance-first weather widget with 2km hyper-local AI forecasting

https://wordpress.org/plugins/wfy24-weather-widget/
2•weatherfun•10m ago•0 comments

'Dirty Frag' Linux flaw one-ups CopyFail with no patches and public root exploit

https://www.theregister.com/security/2026/05/08/dirty-frag-linux-flaw-one-ups-copyfail-with-no-pa...
1•Bender•11m ago•0 comments

The Blue Collar Delusion: Why the machines don't have to climb up to us

https://old.reddit.com/r/singularity/comments/1t5cx3y/the_blue_collar_delusion_why_the_machines_d...
1•wallflower•13m ago•0 comments

Paper Factory

https://www.nathanwilmers.com/paper_factory/
1•_tk_•14m ago•1 comments

Louis Rossmann tells 3D printer maker Bambu Lab to 'Go (Bleep) yourself'

https://www.tomshardware.com/3d-printing/louis-rossmann-tells-3d-printer-maker-bambu-lab-to-go-bl...
16•iancmceachern•16m ago•2 comments

AI Is Making Digital Fraud Easier, Faster and Harder to Stop

https://www.bloomberg.com/graphics/2026-ai-identity-theft-scams/
1•elsewhen•17m ago•1 comments

I made rust's cargo copy but for CPP

https://github.com/user-with-username/crow
1•anybodyy•18m ago•0 comments

Owl Alpha – A free model for agentic workloads (prompts logged / closed-source)

https://openrouter.ai/openrouter/owl-alpha
1•webninja•20m ago•0 comments

Show HN: Codebook of 450k+ unique words and phrases acts as a text compressor

https://i.postimg.cc/WpBcB4HK/IMG-20260510-103853.jpg
2•smalltorch•21m ago•1 comments

AI Agent Passport – an open identity standard for AI agents

https://github.com/StacyStarchum/Ai-agent-passport-
1•Stacy_Starchum•24m ago•1 comments

What if the browser was the server?

https://arthurcornil.com/blog/ship-it-to-the-user/
2•thunderbong•24m ago•0 comments

Taxpayers May Be Eligible for Significant Tax Refunds – If They Act by July 10

https://www.taxpayeradvocate.irs.gov/news/nta-blog/tens-of-millions-of-taxpayers-may-be-eligible-...
16•goldfishgold•25m ago•4 comments

Show HN: Headstart – Command pallet and start page for efficient browsing

https://useheadstart.app/
1•powerpurple•26m ago•0 comments

Defence sovereignty: Europe races to build the low-cost weapons of future

https://www.theguardian.com/world/2026/may/10/defence-sovereignty-europe-builds-low-cost-weapons-...
2•beardyw•27m ago•0 comments

Designing, Refining, and Maintaining Agent Skills at Perplexity

https://research.perplexity.ai/articles/designing-refining-and-maintaining-agent-skills-at-perple...
1•gmays•30m ago•0 comments

Chindogu: Weird and Useless Japanese Inventions

https://rarehistoricalphotos.com/weird-japanese-inventions/
8•ethanpil•30m ago•1 comments

Cancelling Claude subscription renewal immediately revokes Design access

2•o10449366•33m ago•2 comments

Memory godboxes could offer relief from the RAMpocalypse

https://www.theregister.com/systems/2026/05/10/memory-godboxes-could-offer-relief-from-the-rampoc...
1•beardyw•34m ago•0 comments

Nayuta Space Is Building Bellyflopping Rocket Boosters

https://www.china-in-space.com/p/nayuta-space-is-actually-building
2•JPLeRouzic•36m ago•0 comments

We asked 72 AI models which brands are best

https://peaktoken.ai/
1•svensauleau•38m ago•0 comments

Could Contact-Tracing Apps Help with the Hantavirus? Not

https://www.wired.com/story/could-contact-tracing-apps-help-with-the-hantavirus-not-really/
2•Brajeshwar•42m 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/