frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Centrality – Visualize your how Claude Code operates on your codebase

https://www.centrality.sh/
1•sorenjmadsen•8s ago•0 comments

Git blame your Claude Code setup

https://breaking-changes.blog/treat-your-claude-code-setup-like-a-dev-project/
1•oakhan3•3m ago•0 comments

A short note on interpretability and minds

https://ericjmichaud.com/interp-and-minds/
1•jdkee•5m ago•0 comments

Gemini for Mac

https://gemini.google/mac/
1•thatxliner•6m ago•0 comments

Show HN : ec – terminal nativie Git conflict resolver

https://github.com/chojs23/ec
1•neozz•7m ago•1 comments

Why Israel is Trying to Conquer 10% of Lebanon [video]

https://www.youtube.com/watch?v=LwdSfdEkXPA
1•dataflow•7m ago•0 comments

Open source telemetry solved – Trackables

https://trackables.org
1•blakletter_•8m ago•1 comments

They Lie So

https://unintendedconsequenc.es/they-lie-so-truly/
1•paulorlando•10m ago•0 comments

AI as an attorney? Student uses ChatGPT, Gemini to sue UW

https://www.kuow.org/stories/ai-as-attorney-this-student-is-using-it-to-sue-uw-over-alleged-racia...
1•Umofomia•11m ago•0 comments

A Look into NaviDial, Japan's Legacy Phone Service

https://www.tokyodev.com/articles/a-look-into-navidial-japan-s-legacy-phone-service
2•pwim•17m ago•0 comments

Private decentralized inference on consumer hardware [pdf]

https://github.com/Layr-Labs/d-inference/blob/master/papers/dginf-private-inference.pdf
1•andsoitis•18m ago•0 comments

Spirit Airlines could liquidate as early as this week

https://www.cnbc.com/2026/04/15/spirit-airlines-could-liquidate-as-early-as-this-week-sources-say...
2•jbegley•19m ago•0 comments

Show HN: QEV – Free offline encryption vault for 5 platforms

https://secure.imagineqira.com/downloads
1•EGCstudy•21m ago•0 comments

High Amplitude Disagreeableness

https://staysaasy.com/startups/2026/04/15/high-amplitude-disagreeableness.html
1•gpi•22m ago•0 comments

Charts-of-Thought: Enhancing LLM Visualization Literacy (PDF, 2026)

https://www3.cs.stonybrook.edu/~mueller/papers/Charts%20of%20Thought%20TVCG.pdf
1•delfrrr•23m ago•0 comments

The Moon Caused This Bridge to Be Built Wrong [video]

https://www.youtube.com/watch?v=cATbD1_6d9o
1•bane•24m ago•0 comments

Things you didn't know about indexes

https://jon.chrt.dev/2026/04/15/things-you-didnt-know-about-indexes.html
1•rockstar2001•24m ago•0 comments

Pentagon approaches automakers, manufacturers to boost weapons production

https://www.msn.com/en-us/money/companies/pentagon-approaches-automakers-manufacturers-to-boost-w...
4•anigbrowl•24m ago•1 comments

Why Anthropic and OpenAI are locking up their latest models

https://economist.com/business/2026/04/15/why-anthropic-and-openai-are-locking-up-their-latest-mo...
2•andsoitis•25m ago•0 comments

Vance tells Pope Leo to "be careful"

https://thehill.com/homenews/5833667-vance-homan-pope-leo-politics/
4•KnuthIsGod•25m ago•2 comments

Darkbloom – Private inference on idle Macs

https://darkbloom.dev
6•twapi•33m ago•0 comments

Digital Ocean's "Teams" deleted my account in one click

https://twitter.com/usgraphics/status/2044625771432653236
5•ruz•37m ago•0 comments

RedSun: System user access on Win 11/10 and Server with the April 2026 Update

https://github.com/Nightmare-Eclipse/RedSun
3•airhangerf15•45m ago•0 comments

Happy Tax Day, New York. We're Taxing the Rich [video]

https://bsky.app/profile/did:plc:nx7znvoex7ev3wcxn3tipovm/post/3mjkppomewk2r
5•pabs3•46m ago•4 comments

Cordic – Coordinate rotation digital computer

https://en.wikipedia.org/wiki/CORDIC
4•nill0•46m ago•0 comments

An underwater volcanic eruption captured on video

https://www.youtube.com/watch?v=rK00tvzJ1Yc
3•daviesgeek•47m ago•0 comments

'Listening bars' bloom as hottest new nightlife trend

https://www.france24.com/en/live-news/20260415-listening-bars-bloom-as-hottest-new-nightlife-trend
1•rawgabbit•52m ago•0 comments

Massachusetts House advances unconstitutional social media ban bill

https://www.fightforthefuture.org/news/2026-04-09-massachusetts-house-advances-unconstitutional-s...
2•pabs3•52m ago•2 comments

The Feeling of Becoming Less and Less of a Person

https://www.theatlantic.com/magazine/2026/05/ben-lerner-transcription-review/686579/
3•paulpauper•54m ago•2 comments

FSF trying to contact Google about spammer sending 10k+ mails from Gmail account

https://daedal.io/@thomzane/116410863009847575
5•pabs3•55m ago•1 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/