frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: 3D-Agent – AI that edits Blender scenes through the Python API

https://3d-agent.com/blender-ai/plugin
1•gsunshinel•48s ago•0 comments

Skar – turn a captured AI agent trace into a pytest regression test

https://github.com/kalisky/skar
1•kalisky•1m ago•0 comments

Picks, Shovels, and the Bill of Materials – Supply Chain Pain Points

https://atomsfrontier.substack.com/p/picks-shovels-and-the-bill-of-materials
1•jpatel3•3m ago•0 comments

Show HN: A whiteboard for your AI coding agent [video]

https://www.youtube.com/watch?v=bybJAl15jR8
1•kirby88•3m ago•0 comments

EasyDMARC Alternative: Why Teams Are Switching

https://dmarcguard.io/blog/easydmarc-alternative/
1•meysamazad•4m ago•0 comments

LLM Targeted Underperformance Disproportionately Impacts Vulnerable Users

https://arxiv.org/abs/2406.17737
1•yogthos•4m ago•0 comments

Psychosocial Impact of Covid-19 on Intensive Care Unit Personnel

https://www.mdpi.com/2227-9032/14/9/1154
1•PaulHoule•4m ago•0 comments

Self-report fraud and walk free, New York prosecutors tell Wall Street

https://www.ft.com/content/6344b5be-e48c-48b8-8fea-d86e6c4c4aec
1•petethomas•5m ago•0 comments

Metal Gear Solid Peace Walker

https://joelchrono.xyz/blog/metal-gear-solid-peace-walker/
1•meysamazad•5m ago•0 comments

So you want to deploy Falcon / FN-DSA for small post-quantum signatures

https://keymaterial.net/2026/05/13/so-you-want-to-deploy-fn-dsa/
1•fanf2•6m ago•0 comments

Wait, Am I a Vampire?

https://puppynet.work/wait-am-i-a-vampire/
1•meysamazad•6m ago•0 comments

Subquadratic Model Performance and Architecture Evaluation [pdf]

https://cdn.prod.website-files.com/656a6f5ca4824808211181c5/6a0358958a5427c686cc3567_SUBQ_FINAL_V...
1•droidjj•8m ago•0 comments

Benchmarking Subquadratic's latest model and SSA Kernel

https://www.appen.com/whitepapers/benchmarking-subquadratics-latest-model-ssa-kernel
1•Galichev•8m ago•0 comments

Slack having issues with Messaging, API

2•theahura•9m ago•0 comments

The Navigator Trackpad is here

https://newsletters.feedbinusercontent.com/00a/00a32a2924e04bb621272a9cfa4056f089ea400a.html
2•robenkleene•11m ago•0 comments

Dude where's my password? Claude reunites forgetful stoner with $400k Bitcoin

https://www.theregister.com/offbeat/2026/05/14/claude-reunites-stoner-with-bitcoin-after-losing-p...
1•NordStreamYacht•11m ago•0 comments

You're stuck on a digital island with 30 other people in a group chat

https://isle31.com/
1•vincentlenoach•11m ago•1 comments

The third major Linux kernel flaw in two weeks has been found – thanks to AI

https://www.zdnet.com/article/third-major-linux-kernel-flaw-in-two-weeks-found-by-ai/
1•CrankyBear•12m ago•0 comments

Passwords suck. Can passkeys replace them?

https://kerkour.com/passkeys
2•randomint64•12m ago•0 comments

Overdose deaths fall for 3rd straight year amid a changing drug supply

https://www.cbsnews.com/news/overdose-deaths-decline-2025-rate-cdc-data/
2•randycupertino•12m ago•0 comments

CNN: Emails 'hurt IQ more than pot' (2005)

https://www.cnn.com/2005/WORLD/europe/04/22/text.iq/
1•dannyphantom•13m ago•0 comments

Whimsical Strategies Break AI Agents

https://www.microsoft.com/en-us/research/articles/whimsical-strategies-break-ai-agents-generating...
1•delichon•13m ago•0 comments

Front end isn't dead, but your focus needs to change

https://formation.dev/blog/frontend-isnt-dead-but-your-focus-needs-to-change/
1•yangshun•14m ago•0 comments

Ask HN: Slack Outage?

1•zackify•15m ago•0 comments

Show HN: NoDiff, TSX for browser apps without React or a virtual DOM

https://github.com/hbbio/nodiff
1•hbbio•15m ago•0 comments

Why agentic AI systems fail in production without a semantic layer

https://www.prometheux.ai/resources/how-retailers-boost-revenue
1•kukimonstaleni•15m ago•0 comments

Naturally Occurring Quasicrystals

https://johncarlosbaez.wordpress.com/2026/05/14/naturally-occurring-quasicrystals/
1•lukeplato•15m ago•0 comments

Google users fight for refunds as unauthorized API usage bills soar

https://www.theregister.com/ai-ml/2026/05/13/google-users-fight-for-refunds-as-unauthorized-api-u...
1•btown•15m ago•1 comments

Every Magazine Piece on the SF AI Scene

https://www.astralcodexten.com/p/every-magazine-piece-on-the-sf-ai
1•savanaly•16m ago•1 comments

Your AI Frustration Is the Opportunity

https://metedata.substack.com/p/012-your-ai-frustration-is-my-opportunity
1•young_mete•16m 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/