frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

GenAIDojo

https://www.genaidojo.io/
1•aniketwattawmar•5m ago•0 comments

EAS Alarm at midnight caused by a hacker in Brazil

https://www.reddit.com/r/mildlyinfuriating/s/wLRv2s1u5k
1•davidkwast•7m ago•2 comments

Study: Conservatives are dying at higher rates than liberals

https://www.fastcompany.com/91561329/widening-health-gap-between-liberals-and-conservatives
1•MilnerRoute•10m ago•0 comments

The New Calculus of AI-Based Coding

https://blog.joemag.dev/2025/10/the-new-calculus-of-ai-based...
1•aabdi•15m ago•1 comments

Designing a backyard deck for my house

https://blog.cosmin.cloud/posts/diy-deck.html
1•spycraft•20m ago•0 comments

Compress tool outputs, logs, files, RAG chunks before LLM for 60-95% less tokens

https://github.com/chopratejas/headroom
1•gmays•20m ago•0 comments

Trapped in a Waymo: SF passenger recounts terrifying construction zone ordeal

https://abc7news.com/post/waymo-recall-san-francisco-man-recounts-terrifying-moment-when-robotaxi...
1•mikhael•23m ago•0 comments

Show HN: Stocks Porfolio in a URL and Favicon

https://stocksreader.com/
1•franciscop•23m ago•0 comments

Bureaulogy – formation, evolution, and perpetuation of bureaucracies

https://grantslatton.com/bureaulogy
1•thelastgallon•24m ago•1 comments

Chromium Embedded Framework (CEF)

https://github.com/chromiumembedded/cef
1•auraham•25m ago•0 comments

The Punctum and the Blind Field

https://theholbrookreport.com/reports/punctum-and-the-blind-field/
1•TyrunDemeg101•29m ago•0 comments

China will have a Fable 5-class AI model before next year

https://www.tomshardware.com/tech-industry/artificial-intelligence/elon-musk-says-that-china-will...
4•achow•32m ago•0 comments

TV Player for Rocket Launches

https://github.com/sighmon/SpaceX-TV
1•sighmon•41m ago•0 comments

We record because we have forgotten how to remember

https://pilgrimsage.substack.com/p/the-lowest-frequency
1•momentmaker•45m ago•0 comments

AI and the Great CMS Unbundling

https://dri.es/ai-and-the-great-cms-unbundling
2•christefano•52m ago•0 comments

This pole is worse than any Flock Camera [video][38 mins]

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

Lawsuit against Amazon over suicides linked to chemical can go to trial

https://www.cbsnews.com/news/amazon-suicide-case-sodium-nitrite-washington-supreme-court/
2•hentrep•56m ago•0 comments

Satellite reveals immense scale of GPS signal tampering

https://www.space.com/space-exploration/satellites/its-quite-a-bit-more-than-we-expected-satellit...
3•y1n0•59m ago•0 comments

Moebius: 0.2B Lightweight Image Inpainting Framework with 10B-Level Performance

https://hustvl.github.io/Moebius/
2•ilreb•1h ago•0 comments

Spirit Crossing's AI Problem

https://blog.curiousquail.com/spirit-crossings-ai-problem/
1•zokiboy•1h ago•0 comments

A Practical Guide to SSH Tunnels: Local and Remote Port Forwarding

https://labs.iximiuz.com/tutorials/ssh-tunnels
1•signa11•1h ago•0 comments

How to lose a war in three easy steps

https://www.ft.com/content/0ba6b511-649e-4a29-bb99-f824584ec93d
7•Alien1Being•1h ago•1 comments

Show HN: Rundown - Niche Intelligence for YouTube Creators

https://getrundown.xyz
2•razasaad92•1h ago•0 comments

Show HN: AgentArk – open-source self-hosted AI agent OS

https://github.com/agentark-ai/AgentArk
2•debankad•1h ago•0 comments

Show HN: Western Highway Alerts

https://westernhighwayalerts.com/
1•BetaDeltaAlpha•1h ago•0 comments

Website –> Markdown Chrome Extension

https://chromewebstore.google.com/detail/save-to-yaps/baaheihmooadmcknelpapgdhoaeldipk
5•RichAwo•1h ago•0 comments

How to Build REST APIs with Actix-Web in Rust

https://oneuptime.com/blog/post/2026-02-01-rust-actix-web-rest-api/view
2•MarShell237•1h ago•0 comments

Where to Find the Colors Your Screen Can't Show You

https://moultano.wordpress.com/2026/06/19/where-to-find-the-colors-your-screen-cant-show-you/
1•moultano•1h ago•0 comments

Atheon -Atheon is a community-driven pattern matching engine

https://github.com/HoraDomu/Atheon
1•HoraDomu•1h ago•1 comments

Quantum sensor breakthrough could transform Army battlefield signal detection

https://www.army.mil/article/293021/quantum_sensor_breakthrough_could_transform_army_battlefield_...
2•wslh•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/