frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Spicy tale of an App Store fraud

https://lapcatsoftware.com/articles/2026/8/4.html
1•JumpCrisscross•1m ago•0 comments

To the Weird Ones

https://theartandscienceofruby.com/heres-to-the-weird-ones/
1•buffer_overlord•1m ago•0 comments

S.F.'s top-paid employee made $900K. Here's what every city worker gets paid

https://www.sfchronicle.com/projects/2026/san-francisco-employee-pay/?taid=6a7db1d2d297630001917f...
1•gmays•2m ago•0 comments

Quantifying the honey bee dance floor

https://journals.plos.org/plosone/article?id=10.1371/journal.pone.0341456
1•Ariarule•2m ago•0 comments

Show HN: Why – a deterministic curiosity graph built on probabilistic model

https://why.com
1•rasheed106•2m ago•0 comments

Muxxy: Like Slime, for AI and Tmux

https://blog.djhaskin.com/blog/muxxy-like-slime-for-ai-tmux/
1•djha-skin•6m ago•0 comments

How to Keep Thinking

https://www.seangoedecke.com/how-to-keep-thinking/
1•jxmorris12•7m ago•0 comments

Ask HN: How do you develop more deterministic LLM pipelines?

1•sky2224•7m ago•0 comments

Evaluating the impact of USAID defunding on mortality up to 2030

https://www.thelancet.com/journals/lancet/article/PIIS0140-6736(25)01186-9/fulltext
2•contemporary343•8m ago•0 comments

America's Loneliness Trap

https://slate.com/life/2026/08/men-lonely-social-skills-therapy-economy-crisis.html
1•hihelllono•12m ago•0 comments

Morse Code Trainer

https://www.perry.qa/morse
1•rickcarlino•14m ago•0 comments

DeepMind's Hassabis Pitched AI-Oversight Body Before Shake-Up

https://www.wsj.com/tech/ai/deepminds-hassabis-pitched-ai-oversight-body-before-shake-up-e25b3f71
1•Jimmc414•15m ago•0 comments

UploadPrep – make photos and files meet government upload requirements

https://www.uploadprep.com
1•shravankb•16m ago•1 comments

Show HN: Millennium – Steam Homebrew

https://steambrew.app/
2•therepanic•17m ago•0 comments

X testing shadowban test tool

https://www.engadget.com/2236672/x-is-testing-a-tool-that-will-let-users-see-if-their-posts-have-...
1•NordStreamYacht•18m ago•0 comments

Robinhood's New Fund Lets Anyone Invest in Y Combinator Startups, with a Catch

https://www.inc.com/brian-contreras/robinhood-new-fund-invest-y-combinator-startups/91385214
1•JumpCrisscross•18m ago•0 comments

Looks like a one shot vibe coded mess

https://johnathannader.com/looks-one-shot-vibe-coded-mess/
1•nadermx•19m ago•0 comments

Show HN: Agents that run your finances

https://blaze.money
1•faiyamrahman•20m ago•0 comments

BDH Dragon Hatchling:attention-based state space sequence learning architecture

https://github.com/pathwaycom/bdh
1•rasengan0•20m ago•0 comments

A hurricane has never crossed the equator. Here's why

https://www.accuweather.com/en/hurricane/a-hurricane-has-never-crossed-the-equator-heres-why/1783017
1•thunderbong•25m ago•0 comments

Trump orders Navy to return to old system launching jets off aircraft carriers

https://apnews.com/article/trump-aircraft-carriers-steam-catapults-ffa9f3ce102ecd5d6126db03e901a56f
2•petethomas•28m ago•1 comments

Apple Wants to Charge Developers Up to 15% for Linking Outside the App Store

https://www.macrumors.com/2026/08/13/app-store-fees-apple-link-outs/
5•ksec•28m ago•1 comments

Zimquattr – A Rapid Open Text-Logging Network

https://zimquattr.bolt.host/index.php
2•donald2063•34m ago•0 comments

Hacking xAI for unreleased models and confidential documents

https://schizo.org/blog/hacking-xai
1•parable•34m ago•0 comments

Silicon Valley's AI boom is remaking American charity

https://economist.com/international/2026/08/13/silicon-valleys-ai-boom-is-remaking-american-charity
1•andsoitis•35m ago•0 comments

The beginning of a process-builder API

https://lwn.net/Articles/1086330/
1•signa11•43m ago•0 comments

AXHook – 25-year-old COM bridging and 32/64-bit interop framework

https://github.com/IgorTebelev/AXHook
2•AngryIgor•46m ago•1 comments

The Gilbreath principle, made interactive

https://sleightless.com/tricks/math/gilbreath-principle/
1•davidharrisonal•50m ago•0 comments

Why Is Cracking a Whip So Loud? [video]

https://www.youtube.com/watch?v=DGH3GMiHNls
1•gmays•54m ago•0 comments

Life without vaccines: Americans need to understand what they save us from

https://www.statnews.com/2026/08/13/trump-vaccine-executive-order-mmr-separate-shots-policy/
5•EA-3167•55m ago•0 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/