frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The Alert Reader (2013)

https://www.loper-os.org/?p=1361
1•tosh•47s ago•0 comments

OpenTelemetry for Rust Developers

https://signoz.io/blog/opentelemetry-rust/
1•dhruv_ahuja•1m ago•0 comments

Bloat in software: The dark side ofnthe Force

1•abmmgb•2m ago•0 comments

Open-Sourced IaC wrapper that automatically tags Git_sha, Git_repo, Git_branch

https://github.com/trupositive-ai/trupositive
1•simmestd•6m ago•1 comments

FreeBSD 14.4-Release Release Notes

https://www.freebsd.org/releases/14.4R/relnotes/
1•vermaden•6m ago•0 comments

Ask HN: Since a week HN keeps logging me off every few days, why?

2•epolanski•8m ago•0 comments

Yann LeCun's AI startup raises $1B in Europe's largest ever seed round

https://www.ft.com/content/e5245ec3-1a58-4eff-ab58-480b6259aaf1
3•ottomengis•9m ago•1 comments

On Thinking Machines

https://www.sicpers.info/2026/03/on-thinking-machines/
1•ingve•13m ago•0 comments

FreeBSD 14.4-Release Announcement

https://www.freebsd.org/releases/14.4R/announce/
2•vermaden•14m ago•0 comments

Pi Is Vim for Agentic Coding

https://www.hansschnedlitz.com/writing/2026/03/08/pi-is-vim-for-agentic-coding
1•pretext•14m ago•0 comments

DigiKam 9.0.0 Is Released

https://www.digikam.org/news/2026-03-08-9.0.0_release_announcement/
2•santix•14m ago•0 comments

Why is email so resilient as a technology?

2•noemit•14m ago•1 comments

OpenClaw Did Not Just Go Viral in China, It Solved a Structural Problem

https://hellochinatech.com/p/openclaw-china-ai-stack
6•pretext•14m ago•1 comments

Apple Now Makes One in Four iPhones in India

https://www.macrumors.com/2026/03/10/apple-makes-one-four-iphones-india/
2•tosh•16m ago•0 comments

Visualizing Ukkonen's Suffix Tree Algorithm

https://www.abahgat.com/blog/visualizing-ukkonens-algorithm/
1•gsky•17m ago•0 comments

Google Trends: "how to install Linux" is going viral

https://old.reddit.com/r/BuyFromEU/comments/1rpqx08/google_trends_how_to_install_linux_is_going_v...
4•doener•17m ago•1 comments

Deriving Type Erasure

https://david.alvarezrosa.com/posts/deriving-type-erasure/
2•dalvrosa•18m ago•1 comments

I Open-Sourced the Biological Operating System (Destroys AlphaFold) OS Always

https://github.com/ctibedoJ/KateFarms/blob/0b63882e9df3c81447db19040c4a80420b20acbf/V7.1
1•GeometryKernel•20m ago•2 comments

FreeNeta – Lightweight PROFINET discovery tool written in Python

https://github.com/ArnoVanbrussel/freeneta
1•avbxl•20m ago•1 comments

ProPublica Wins Lawsuit over Access to Court Records in U.S. Navy Cases

https://www.propublica.org/article/navy-court-records-ruling-first-amendment
1•giuliomagnifico•20m ago•0 comments

I'd had several careers but no degree – then I became a palaeontologist at 62

https://www.theguardian.com/lifeandstyle/2026/mar/09/a-new-start-after-60-career-palaeontologist
4•mellosouls•21m ago•0 comments

For 25 years, medical literature published invented clinical cases

https://peakd.com/hive-196387/@davideownzall/for-25-years-medical-literature-published-invented-c...
1•robtherobber•23m ago•0 comments

Iran war shows Green Deal 'fundamental' to EU security

https://www.politico.eu/article/eu-green-deal-energy-security-iran-war/
5•vrganj•29m ago•0 comments

PEP 827 – Type Manipulation

https://peps.python.org/pep-0827/
3•arusahni•30m ago•0 comments

Volkswagen to cut 50k jobs as China offers cheaper electric cars

https://www.telegraph.co.uk/business/2026/03/10/volkswagen-to-cut-50000-jobs-after-failed-bet-on-...
4•emzo•32m ago•1 comments

Show HN: Iran War Clock

https://www.iranwarclock.com/
2•martialg•32m ago•0 comments

Cold DMs don't work anymore. Here's what got me my first users

1•deep1283•32m ago•0 comments

AI C-Suite – Chat with a fictional leadership team (1-on-1 or group chat)

https://99helpers.com/tools/csuite-advisor
1•nickk81•35m ago•1 comments

Most B2B Lead Generation Tools Create Contacts, Not Customers

1•lakshmirk•36m ago•0 comments

Show HN: A mission-based game to help students apply math in real life

https://www.owsterlabs.com/module/eagle-in-the-sky/
2•firepegasus11•36m ago•0 comments
Open in hackernews

Automatically add missing "async/await" keywords to your TypeScript code

https://github.com/stanNthe5/typescript-autoawait
7•theThree•10mo ago

Comments

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