frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Jev vs. GPT-5.6 and Claude Haiku at Pong

https://jev-pong.ably.dev/
1•matt_oriordan•1m ago•0 comments

Fast Compression Library

https://github.com/rrrlasse/memlz
1•rlasse•1m ago•1 comments

Warren Buffett Steps Down as Berkshire Hathaway Chairman

https://www.wsj.com/finance/warren-buffett-to-step-down-as-berkshire-hathaway-chairman-de0e003f
1•thm•1m ago•0 comments

Mastery in the Post-AI World

https://blog.daddooo.dev/posts/mastery-in-the-post-ai-world/
1•daddooo•3m ago•0 comments

Skins

https://www.acdw.net/skins/
1•DanielVZ•4m ago•0 comments

Most People on the Internet Miss What Jev Is About

https://medium.com/@gemanor/most-people-on-the-internet-miss-what-jev-is-about-ad0a983537d5
2•gemanor•5m ago•0 comments

Flights, 4 cities, 18 nights – $112 total. Would you do this trip?

https://uwillfly.net/pl
1•privacyzvarych•6m ago•0 comments

What Does Retirement Look Like?

https://yusufaytas.com/what-does-retirement-look-like
6•yusufaytas•6m ago•0 comments

A curated list of open source projects used in nuclear science and engineering

https://github.com/paulromano/awesome-nuclear
1•mpweiher•7m ago•0 comments

A signed manifest for every release

https://packslip.dev
1•ahamez•8m ago•0 comments

Researchers used Claude to hack OpenAI

https://arstechnica.com/ai/2026/09/researchers-used-claude-to-hack-openai/
1•CharlesW•9m ago•1 comments

Everything Is Better with Lasers

https://www.raspberrypi.com/news/everything-is-better-with-lasers/
1•pyprism•10m ago•0 comments

My agent could write a post but not publish it, so I built an open-source layer

https://github.com/lumizone/postsider
1•luka5184•12m ago•0 comments

Algorithm = Logic and Control(1979)

https://dl.acm.org/doi/10.1145/359131.359136
2•nill0•12m ago•0 comments

Show HN: Neon Roads – browser remake of SkyRoads (1993), no install, MIT

https://neonroads.itch.io/neon-roads
1•abhas9•12m ago•0 comments

Towards a Definition of an Algorithm(2010)

https://arxiv.org/pdf/math/0602053
1•nill0•13m ago•0 comments

FlyEye – Run a real fly connectome-derived escape circuit in the browser

https://fly.fde.fan/
1•tubban•13m ago•0 comments

PhantomFix: A fake bug to Sentry Seer gets a coding agent to run attacker code

https://kb.cert.org/vuls/id/212479
1•vitramir•14m ago•0 comments

There Would Be No Survivors

https://komando1.substack.com/p/there-would-be-no-survivors
1•inglor_cz•15m ago•1 comments

The AI threat is real, it just isn't the one in the headlines

https://blog.robbowley.net/2026/09/18/the-ai-threat-is-real-it-just-isnt-the-one-in-the-headlines/
1•jyhrow•16m ago•1 comments

Show HN: Live chord chart transcriber for the musicians in here

https://chordscan.com/
1•bekdavid893•16m ago•0 comments

Plasticizer exposure during pregnancy linked to increased autism and ADHD

https://medicalxpress.com/news/2026-09-plasticizer-exposure-pregnancy-linked-autism.html
1•OutOfHere•17m ago•0 comments

First Shader from Zero in Godot 4

https://www.gdquest.com/library/first_shader_godot4_portal/
1•ibobev•17m ago•0 comments

Neural Texture Compression in Metal 4

https://syllogi-graphikon.vercel.app/posts/metal-neural-texture-compression/
1•ibobev•17m ago•0 comments

The Bounding Simplex: A SIMD-Era Rejection Primitive [pdf]

https://mcnett.org/bounding_simplex.pdf
2•ibobev•18m ago•0 comments

Google rejected my app for crashing and sent me one screenshot

https://zippy.town/blog/play-rejection/
2•ihamblin•18m ago•0 comments

Zig and Rust rise, while programming languages hit a decade low on Hacker News

https://www.orangecrumbs.com/stories/programming-languages
2•oyster143•18m ago•0 comments

Pareto 26.9 Model Card

https://unbiased.ai/model-card/
3•Topfi•19m ago•1 comments

HEIF Heist: image parser RCE exploit

https://heif-heist.com
2•glennericksen•19m ago•0 comments

AI chatbots becoming experts at changing people's minds. What's their secret?

https://www.science.org/content/article/ai-chatbots-are-becoming-experts-changing-people-s-minds-...
4•rbanffy•19m 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/