frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Dola – AI Consulting for your tiny firm

https://dolalabs.com/
1•radurevutchi•1m ago•0 comments

Pro-Russian 'doppelganger' campaign exploits DW brand

https://corporate.dw.com/en/hungary-election-pro-russian-doppelganger-campaign-exploits-dw-brand/...
1•doener•4m ago•0 comments

My browser-based static site generator

https://stratts.au/posts/browser-based-ssg/
1•stratts•4m ago•0 comments

Out: Resumes. In: Weeklong In-Office Trials

https://www.businessinsider.com/out-resumes-in-weeklong-in-office-trials-hiring-2026-4
1•KnuthIsGod•6m ago•0 comments

AXI: Agent EXperience Interface

https://axi.md/
1•borisjabes•8m ago•0 comments

I let a agent control my window manager

https://blog.zimengxiong.com/#post/agents-will-need-a-good-window-manager
1•zimengx•11m ago•0 comments

Writers Guild Deal: $321M Health Plan Infusion, Residuals, AI Licensing Language

https://www.hollywoodreporter.com/business/business-news/writers-contract-deal-321m-health-plan-i...
1•mikhael•13m ago•0 comments

Show HN: Proroot – Zero-overhead proot replacement for Android

https://github.com/coderredlab/proroot
1•coderredlab•13m ago•0 comments

America's AI Build-Out Hinges on Chinese Electrical Parts

https://www.bloomberg.com/news/features/2026-04-01/us-ai-data-center-expansion-relies-on-chinese-...
2•doener•16m ago•0 comments

Letting go of climate guilt in 5 easy steps [pdf]

https://hsph.harvard.edu/wp-content/uploads/2024/11/21.08-Letting-go-of-climate-guilt-in-5-easy-s...
1•num42•18m ago•0 comments

Anthropics Mythos Model Sparks Fears of AI Doomsday

https://nypost.com/2026/04/08/business/anthropics-claude-mythos-model-sparks-fears-of-ai-doomsday...
1•silexia•19m ago•0 comments

Under oath, Frank Lloyd Wright introduced himself as "world greatest architect"

https://www.pidgeondigital.com/talks/the-world-s-greatest-architect/chapters/
3•felipevb•23m ago•1 comments

Does Anybody Need Me?

https://ed-wentworth.medium.com/does-anybody-need-me-6fde408000cb
2•gpi•24m ago•0 comments

Navigating the Mythos-haunted world of platform security

https://www.redhat.com/en/blog/navigating-mythos-haunted-world-platform-security
1•LaSombra•26m ago•0 comments

Show HN: Connect with strangers who feel the same as you

https://emotiapp.com/
2•lirongliu•27m ago•1 comments

The Life and Death of the Book Review

https://libertiesjournal.com/articles/the-life-and-death-of-the-book-review/
1•lermontov•28m ago•0 comments

The Usefulness of AI Agents

https://erikjohannes.no/posts/20260408-on-the-usefulness-of-ai-agents/index.html
1•wazHFsRy•30m ago•1 comments

I wish Xcode was more like Visual Studio when coding C++

https://www.lasselaursen.com/post/i-wish-xcode-was-more-like-visual-studio-when-coding-c/
2•Gazoo101•37m ago•0 comments

Formal Verification in Any Language for Everybody (lean 4)

https://www.dev-log.me/formal_verification_in_any_language_for_everybody/
1•wazHFsRy•38m ago•2 comments

Can LLMs accelerate science? An experiment

https://pavpanchekha.com/blog/llk.html
1•pavpanchekha•41m ago•0 comments

Federal Court Denies Anthropic's Motion to Lift 'Supply Chain Risk' Label

https://www.nytimes.com/2026/04/08/technology/anthropic-pentagon-risk-circuit-court.html
2•DeathArrow•43m ago•0 comments

Flatpak: Complete Sandbox Escape

https://github.com/flatpak/flatpak/security/advisories/GHSA-cc2q-qc34-jprg
1•eyberg•43m ago•0 comments

AI #163: Mythos Quest

https://thezvi.substack.com/p/ai-163-mythos-quest
1•paulpauper•48m ago•0 comments

US adults are having fewer kids – and it's forcing schools to close

https://www.theguardian.com/us-news/2026/mar/16/birthrate-schools-closing
1•PaulHoule•52m ago•0 comments

'The Egg' by Andy Weir (2009)

https://www.galactanet.com/oneoff/theegg_mod.html
4•goekjclo•53m ago•0 comments

When AI Day of Reckoning?

https://www.overcomingbias.com/p/when-ai-day-of-reckoning
1•paulpauper•53m ago•0 comments

Keychron has open sourced its hardware

https://github.com/Keychron/Keychron-Keyboards-Hardware-Design/tree/main
5•azhenley•53m ago•0 comments

I rebuilt Claude Code's removed /buddy companion as a permanent MCP app

https://github.com/1270011/claude-buddy
2•1270011•55m ago•0 comments

Violating Copyright, Not the Planet

https://mumumelon.co/
1•Tomte•1h ago•0 comments

Bryson DeChambeau to use a 5-iron he made with 3D printer at Masters

https://www.espn.com/golf/story/_/id/48431238/bryson-dechambeau-using-iron-made-3d-printer-masters
1•1659447091•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•11mo ago

Comments

bastawhiz•11mo ago
Is this a problem that people actually have?
xeromal•11mo ago
Fun side project man!
primitivesuave•11mo 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•11mo 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•11mo ago
You can still control it by adding "//no-await". In fact, the "//no-await" makes me feel more clear.
nextweek2•11mo 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•11mo ago
It should be noted that there is already a lint rule for this: https://typescript-eslint.io/rules/no-floating-promises/