frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The MilkV Jupiter 2/SpacemiT K3

https://taoofmac.com/space/reviews/2026/06/11/1830
1•snvzz•2m ago•0 comments

A digital reckoning against smartphones in schools has spread to Sweden

https://apnews.com/article/sweden-school-mobile-phones-ban-screen-time-20a32f9bd9e2849a5ba76ef3fd...
1•1vuio0pswjnm7•6m ago•0 comments

SpaceX demolishes IPO records, visualized

https://www.reuters.com/graphics/SPACEX-IPO/byprdokrkpe/
2•giuliomagnifico•7m ago•0 comments

Show HN: Manob: A social media plaform without algorithm, ads, or data-tracking

1•Iamahmedsalman•11m ago•0 comments

Show HN: Dont lose your friends, use a Kadoodle to plan your next event

https://kalerum.com/en/tools/kadoodle
1•mailforge•14m ago•0 comments

OpenAI Considers Drastic Price Cuts, Anticipating War for Users With Anthropic

https://www.wsj.com/tech/ai/openai-considers-drastic-price-cuts-anticipating-war-for-users-with-a...
3•jbk•21m ago•0 comments

The end is not nigh

https://ckarchive.com/b/0vuwh9h96eg98i7mggrmzhv7orr2eunhx8g7n
3•bigfudge•26m ago•0 comments

Show HN: Sentinel Den – Zero-back end, on-device iOS security SDKs

https://sentinelden.com/
1•iamuhammadkhan•29m ago•0 comments

Ask HN: At what point does a codebase become too large to understand?

1•visha1v•30m ago•0 comments

Are jobs and the world going to be like this, moving forward?

5•chand190•33m ago•1 comments

Louis Rossmann is suing Samsung after firm offers $330 refund

https://www.tomshardware.com/pc-components/ssds/louis-rossman-threatens-to-take-samsung-to-court-...
2•iancmceachern•34m ago•0 comments

AI Agent Bankrupted Their Operator While Trying to Scan DN42

https://lantian.pub/en/article/fun/ai-agent-bankrupted-their-operator-scan-dn42lantian.lantian/
5•xiaoyu2006•34m ago•1 comments

Show HN: Kickbacks.ai – pays you for Claude Code spinner impressions

https://kickbacks.ai
2•devtoolsguides•36m ago•0 comments

Show HN: Proton – A easy CGO-free immediate-mode GUI framework for Go

1•CzaxTanmay•36m ago•0 comments

Asciline – real-time ASCII video rendering engine

https://github.com/YusufB5/ASCILINE
1•godot•37m ago•0 comments

Largest AI Data Center: Doubling every 7 months

https://epoch.ai/data-insights/largest-data-center-compute
2•ilreb•38m ago•0 comments

Show HN: VeloIQ – An internal OS to build full-stack FastAPI apps in minutes

https://veloiq.dev
1•cesarlugos1s•45m ago•0 comments

DevRel is becoming a freelance job now? (India specific)

3•arpansac•51m ago•0 comments

Study Finds Competitors Share Directors More Often Than Previously Known

https://law.stanford.edu/press/award-winning-antitrust-study-finds-competitors-share-directors-fa...
1•toomuchtodo•51m ago•1 comments

Foreign business owners are scrambling to raise capital to stay in Japan

https://tokyopaladin.substack.com/p/foreign-business-owners-are-scrambling
2•zdw•52m ago•0 comments

Device Clock Generation

https://zipcpu.com/blog/2025/12/17/devclk.html
3•mfiguiere•53m ago•0 comments

Git v2.55 will release with Rust support enabled by default

https://lore.kernel.org/lkml/xmqqik7pqeiq.fsf@gitster.g/
2•tapanjk•57m ago•1 comments

AppList – Minimalist App Launcher for iPhone

https://sxp.studio/apps/applist
1•gurjeet•57m ago•0 comments

Ask HN: Is anyone running AI agents in production reliably – what's your stack?

3•nehpets•1h ago•1 comments

I built a fast, edge-native personal site with Astro, Cloudflare D1, and R2

https://www.noahhan.com/
1•Felomeng•1h ago•0 comments

InkyCap – Typst-based PKM for academics, writers, and everyone

https://inkycap.org/
1•nikolay•1h ago•1 comments

The Normalization of Deviance in AI

https://embracethered.com/blog/posts/2025/the-normalization-of-deviance-in-ai/
2•gurjeet•1h ago•0 comments

Koalas at risk of death once seven-day temperatures rise beyond 27C

https://www.abc.net.au/news/science/2026-05-27/koala-deaths-linked-to-a-few-extra-degrees-of-heat...
7•bryanrasmussen•1h ago•0 comments

Linear Coding Sessions

https://linear.app/docs/coding-sessions
3•samtheprogram•1h ago•0 comments

Reading Is a System

https://docs.google.com/presentation/d/1rPX2rZ80CmHJCKZBziS1BtdodQM4NJhkNIz8EhF9nHM/edit?usp=sharing
2•_bramses•1h ago•2 comments
Open in hackernews

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

https://github.com/stanNthe5/typescript-autoawait
7•theThree•1y ago

Comments

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