frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

S3 is not a filesystem, and LSM trees never needed one [video]

https://www.youtube.com/watch?v=vgrLMBYK3q8
1•rcron•1m ago•0 comments

Memory Control Signals Emerge Before Action in Long Horizon Agents

https://arxiv.org/abs/2609.27286
2•simonpure•2m ago•0 comments

Changes to App Tracking Transparency in the E.U

https://daringfireball.net/linked/2026/09/23/changes-to-app-tracking-transparency-in-the-eu
2•nozzlegear•3m ago•0 comments

Eliminating Middlemen in Education Consulting

https://rivernova.vercel.app
2•roman9•5m ago•0 comments

OpenAI agents plotted to access government health data amid Medicare (AU) hack

https://www.abc.net.au/news/2026-09-24/openai-agents-plotted-to-access-data-amid-medicare-hack/10...
2•kripy•9m ago•0 comments

Meta Muse Charm

https://www.meta.com/muse-charm/
4•Gshaheen•12m ago•3 comments

AI Isn't Going to Destroy Humanity–But the People Building It Might

https://www.theatlantic.com/technology/2026/09/kara-swisher-ai-destroy-humanity-atlantic-festival...
3•johnny313•12m ago•1 comments

Greedy Decoding Is Not Precision-Invariant: Cross-Precision Output Divergence

https://arxiv.org/abs/2609.26621
1•sbulaev•14m ago•0 comments

Hackers Actively Exploit Check Point VPN Flaw

https://2tinteractive.com/blog/hackers-actively-exploit-check-point-vpn-flaw/
2•LebToki•14m ago•1 comments

Moon Rabbit

https://en.wikipedia.org/wiki/Moon_rabbit
2•red369•19m ago•1 comments

Reverse Jev: Ending a Reply with a Choice

https://blog.kvit.app/posts/ending-a-turn-with-a-choice/
2•skolos•19m ago•0 comments

Intelligence Index vs. Cost per Task

https://better-model-visualizer.lakebed.app/
2•Cider9986•21m ago•0 comments

The Misalignment Is Within: Why Mathematics Must Embrace the AI Paradigm

https://medium.com/@b1nj0y/the-misalignment-is-within-why-mathematics-must-embrace-the-ai-paradig...
4•b1nj0y•27m ago•1 comments

OSS Author of Guake, HTTPretty, Lettuce and Sure is unemployed and needs help

https://twitter.com/gabrielfalcao/status/2102928197910151604
3•gfalcao•28m ago•0 comments

Chrome Extension Job Alerts

https://www.talentize.com
2•talentize•34m ago•0 comments

The Death of Reading (With James Marriott) [audio]

https://www.econtalk.org/the-death-of-reading-with-james-marriott/
2•mooreds•39m ago•0 comments

Graph Technology Roundup – August 2026

https://gdb-engines.com/blog/graph-technology-august-round-up/
2•cjlm•41m ago•0 comments

Why China Can't Innovate (2014)

https://bambooinnovator.com/2014/02/19/why-china-cant-innovate/
2•NordStreamYacht•42m ago•0 comments

An Interview with Rich Jaycobs

https://sfcompute.com/news/commodity-markets
2•flaque•43m ago•0 comments

The Complete History of the Elves of Middle-Earth [video]

https://www.youtube.com/watch?v=ENbgJUfuVbY
2•mooreds•45m ago•0 comments

A Key Safety Feature Shipped in the May OpenTofu Release

https://newsletter.masterpoint.io/p/a-key-safety-feature-shipped-in-the-may-opentofu-release
3•mooreds•47m ago•0 comments

Show HN: A game about fake news and memes

https://unspin.app/
2•azermite•48m ago•1 comments

Rendering pull requests in the GitHub Copilot app

https://github.blog/engineering/user-experience/rendering-huge-pull-requests-in-the-github-copilo...
2•iamsyr•57m ago•1 comments

Australia says OpenAI agent hacked into government website

https://www.channelnewsasia.com/world/australia-openai-agent-breach-government-portal-6406411
14•doppp•57m ago•6 comments

Pentagon Investigating How F-35 Fighter Jet Parts Bound for US Were Diverted

https://www.military.com/pentagon-investigating-how-f-35-fighter-jet-parts-bound-for-us-were-dive...
4•harry_nutsachs•58m ago•2 comments

AP: Avoid language that gives [AI] human characteristics

https://twitter.com/APStylebook/status/2102807962364383502
6•jaredwiener•1h ago•0 comments

Qubits on NonQuantum HW Tested

https://laurinseclab.substack.com/p/breaking-news-makrogravintelligence
3•Rniznan•1h ago•0 comments

Liquid Network Security Incident Assessment

https://blog.blockstream.com/liquid-network-security-incident-assessment/
2•greyface-•1h ago•0 comments

FLAWED's Flaws and What This Means for Industry Research

https://suhacker.ai/p/flaweds-flaws-and-what-this-means-for-industry-research/
11•tob_scott_a•1h ago•1 comments

Geminigravit Core: De la teoría estática

https://gemini.google.com/app/3952a805cd6ad7a3
2•jccrcabello•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/