frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Mourning for dinosaurs, 65M years too late

https://www.cnn.com/2026/04/05/science/dinosaurs-tiktok-documentary-cec
1•Tomte•33s ago•0 comments

Show HN: TTF-DOOM – A raycaster running inside TrueType font hinting

https://github.com/4RH1T3CT0R7/ttf-doom
1•4RH1T3CT0R•1m ago•0 comments

Show HN: Formal theory of consciousness built on ∞-categories

https://holon.sh/
1•old8man•2m ago•0 comments

Russian crypto payment system expands into Africa

https://www.ft.com/content/a9de2bb5-7bbf-4d04-9424-25d4b9cda2b6
1•dosinga•2m ago•0 comments

uhu02 Papercraft

https://uhu02.way-nifty.com
1•exvi•2m ago•0 comments

Arithmetic (Kenneth E. Iverson, 2002) [pdf]

https://www.jsoftware.com/books/pdf/arithmetic.pdf
1•tosh•4m ago•0 comments

Was the U.S. Pilot Rescue in Iran a Cover for a Failed Nuclear Retrieval?

https://twitter.com/RnaudBertrand/status/2040995918192005310
1•johnbarron•4m ago•0 comments

Show HN: Meta-agent: self-improving agent harnesses from live traces

https://github.com/canvas-org/meta-agent
2•essamsleiman•5m ago•0 comments

Iran Is Piercing Ballistic Missile Defenses with Cluster Warhead Releases

https://www.twz.com/land/iran-is-piercing-israels-ballistic-missile-defenses-with-high-altitude-c...
1•johnbarron•5m ago•0 comments

DeepSeek's V4 model will run on Huawei chips, The Information reports

https://www.reuters.com/world/china/deepseeks-v4-model-will-run-huawei-chips-information-reports-...
1•_____k•7m ago•0 comments

Nvidia's DLSS 5 Trailer Hit with Copyright Takedown in Italy

https://www.talkesport.com/news/nvidia-dlss-5-youtube-copyright-strike-italy/
1•steveharing1•7m ago•0 comments

The War Is Turning Iran into a Major World Power

https://www.nytimes.com/2026/04/06/opinion/iran-war-strait-hormuz.html
5•ryan_j_naughton•7m ago•1 comments

Tektonten Papercraft

https://tektonten.blogspot.com/
1•exvi•7m ago•0 comments

Papercraft TRON Lightcycle (2002)

https://web.archive.org/web/20070629141157/http://aliens.humlak.cz/aliens/aliens_papirove_modely/...
1•exvi•8m ago•0 comments

We Could've Had Nice Trains

https://www.therebuild.pub/p/we-couldve-had-nice-trains
1•Anon84•10m ago•0 comments

Austria sends 70k kids on a three‑week smartphone detox [video]

https://www.dw.com/en/austria-sends-70000-kids-on-a-threeweek-smartphone-detox/video-76534869
1•fzeindl•10m ago•0 comments

Vibe Analysis

https://newsletter.dancohen.org/archive/vibe-analysis/
1•apollinaire•17m ago•0 comments

I built a tool to control coding agent on my Mac through my phone

https://www.tarsy.dev/
1•leddo•17m ago•0 comments

Miracle – A hackable window manager for Linux

https://github.com/miracle-wm-org/miracle-wm
2•matthewkosarek•18m ago•0 comments

Iran raises suspicion of 'uranium theft' plot after clashes with US forces

https://www.aa.com.tr/en/middle-east/iran-raises-suspicion-of-uranium-theft-plot-after-clashes-wi...
3•bhouston•19m ago•0 comments

SubCat: Stop babysitting your Pull Requests

https://subcat.todaywedream.com/
1•semisse•20m ago•1 comments

NASA's Artemis II Lunar Crater Recognition Flash Cards [pdf]

https://ares.jsc.nasa.gov/course-content/lunar_flashcards/CommonLTPTargets_Flashcards.pdf
2•reaperducer•20m ago•0 comments

Outlook for Public and Private Markets

https://www.apollo.com/wealth/the-daily-spark
1•toomuchtodo•20m ago•1 comments

Show HN: u there? Let Claude Code check if you're at your computer

https://github.com/odfalik/uthere
3•odedfalik•21m ago•0 comments

Stages of Denial

https://nsl.com/papers/denial.html
1•tosh•21m ago•0 comments

US Rescue op in Iran was likely attempt to extract HEU from Isfahan

https://twitter.com/TheNavroopSingh/status/2041081690769305729
1•bhouston•21m ago•1 comments

Processing 3GiB of JSON in the browser in 2 seconds via WebAssembly

https://refi64.dev/posts/discordsona.html
2•tosh•22m ago•0 comments

10 Claude Code Principles

https://jdforsythe.github.io/10-principles/
2•topherjaynes•22m ago•0 comments

Complete biosynthesis of psychedelic tryptamines from three kingdoms in plants

https://www.science.org/doi/10.1126/sciadv.aeb3034
1•Stratoscope•23m ago•0 comments

A Drop in for `anyhow:Context` that reports the failure location

https://gist.github.com/alpaylan/ddac04fe80219fb2f1ba5c46dd5647af
1•alpaylan•24m 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/