frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The Seaside Town Trying to Reclaim Its Title as 'Submarine Capital of the World'

https://www.wsj.com/us-news/the-seaside-town-trying-to-reclaim-its-title-as-submarine-capital-of-...
1•impish9208•1m ago•1 comments

Summarizing and Reviewing my earliest ML research paper, 7 years later

https://www.lesswrong.com/posts/s23gcSGmWh3YwDBdW/summarizing-and-reviewing-my-earliest-ml-resear...
1•joozio•2m ago•0 comments

Show HN: Vitality AI Health – blood work, wearables, and DNA unified

https://vitalityaihealth.com
1•Kevin_VAI•3m ago•0 comments

Show HN: Prompt-to-Excalidraw demo with Gemma 4 E2B in the browser (3.1GB)

https://teamchong.github.io/turboquant-wasm/draw.html
1•teamchong•3m ago•0 comments

My Obsidian Setup

https://cernockyd.com/blog/my-obsidian-setup
1•cernocky•3m ago•0 comments

Ruby Central in 'real financial jeopardy' following RubyGems maintainer ruckus

https://www.theregister.com/2026/04/19/rubygems_nonprofit_in_real_financial/
1•jjgreen•4m ago•0 comments

The three kinds of leverage that anchor effective strategies

https://longform.asmartbear.com/leverage/
1•kristianp•7m ago•0 comments

Track HN: Comparing 156 LLM Launch Posts on Hacker News

https://track-hacker-news.com/reports/llm-launches
1•namiwang•7m ago•0 comments

Apollo vs. Artemis: How the Earth changed in 58 years

https://www.bbc.com/future/article/20260417-apollo-v-artemis-how-the-earth-changed-in-58-years
1•giuliomagnifico•8m ago•0 comments

The Abstraction Fallacy: Why AI Can Simulate But Not Instantiate Consciousness

https://deepmind.google/research/publications/231971/
1•pseudolus•9m ago•1 comments

Laravel Magika – AI Powered File Type Detection

https://github.com/megoxv/laravel-magika
1•megoxv•10m ago•0 comments

Curing U.S. Health Care, Part I

https://paulkrugman.substack.com/p/curing-us-health-care-part-i
1•rbanffy•10m ago•0 comments

Scientists Capture Superconductivity's 'Dancing Pairs' for First Time

https://www.simonsfoundation.org/2026/04/15/scientists-capture-superconductivitys-dancing-pairs-f...
2•ganitam•10m ago•0 comments

18 Months of Monk Mode Taught Me: Reading Should Feel Like Play, Not Work

https://www.cogito-app.io
2•hugobeey•16m ago•0 comments

Show HN: Using Ramanujan's Pi Series for Bitcoin Security on Nvidia B200

https://zenodo.org/records/19650883
2•Prakash_1•20m ago•0 comments

When dashes give away ChatGPT usage

https://www.lemonde.fr/en/m-le-mag/article/2026/04/19/when-dashes-give-away-chatgpt-usage_6752585...
1•geox•20m ago•0 comments

WireGuard for Windows Reaches v1.0

https://www.phoronix.com/news/WireGuard-For-Windows-1.0
1•Bender•22m ago•0 comments

Robot beats humans to win Beijing half-marathon

https://news.sky.com/video/robot-beats-humans-to-win-beijing-half-marathon-13533657
1•austinallegro•23m ago•1 comments

CachyOS Rolls Out a Super-Charged Linux 7.0 Kernel

https://www.phoronix.com/news/CachyOS-Super-Charged-Linux-7.0
1•Bender•23m ago•0 comments

CISA tells feds to patch 13-year-old Apache ActiveMQ bug under active attack

https://www.theregister.com/2026/04/17/cisa_tells_feds_to_patch/
2•Bender•23m ago•0 comments

Clojure: Transducers

https://clojure.org/reference/transducers
1•tosh•24m ago•0 comments

Why Zip drives dominated the 90s, then vanished almost overnight

https://www.xda-developers.com/zip-drives-dominated-90s-vanished-almost-overnight/
2•naves•25m ago•0 comments

The AI Chip Owners Explorer

https://epoch.ai/blog/introducing-the-ai-chip-owners-explorer
3•o4c•26m ago•0 comments

Emergent memory discovered – self sustaining coupler loop in a nutshell

https://rogmash.neocities.org/
1•rogmash•26m ago•1 comments

Show HN: Open-source CAD in the browser (DXF-native, no install)

1•kengeo•27m ago•0 comments

Cat Me If You Can

https://store.steampowered.com/app/3170490/Cat_Me_If_You_Can/
2•doener•29m ago•0 comments

OKU: Become a traveling monk and embark on a journey towards spiritual growth

https://store.steampowered.com/app/3590650/OKU/
1•doener•31m ago•0 comments

Show HN: Rigor – Anti-Enshittification Proxy for Your AI Agents

https://rigorcloud.com/
1•waveywaves•33m ago•0 comments

A decade of software

https://fohlen.github.io/posts/a-decade-of-software/
1•usernametaken29•38m ago•0 comments

Need some suggestions and ideas on agricultural using AI

1•varXpaa•43m 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/