frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

A Generation on Antidepressants Searches for the Exit

https://www.nytimes.com/2026/08/07/opinion/antidepressants-ssris-side-effects-drugs-maha.html
1•bookofjoe•1m ago•1 comments

Sleep Alters the Velocity of Physiological Brain Pulsations in Humans

https://advanced.onlinelibrary.wiley.com/doi/10.1002/advs.202503745
1•cs1996•1m ago•0 comments

Hacker News MCP

https://hackernews.marcokittel.de
1•evlute•2m ago•1 comments

Downfall

https://downfall.page/
1•conferza•4m ago•0 comments

ROMbug Onion: A Tor Browser with Onion Routing, Privacy and a Separate Identity

https://rombugonion.com/
1•chainbuilder•5m ago•0 comments

Superdna – analyze your DNA raw file locally

https://github.com/Wolg/superdna
1•wolg•5m ago•0 comments

How Cleaning up space debris could grow to become a big business

https://www.cnbc.com/2026/08/08/space-debris-junk-spacex-rocket-moon-crash.html
1•ck2•5m ago•1 comments

The Caretakers

https://leejo.github.io/2026/08/08/caretakers/
1•leejo•5m ago•0 comments

Marimomono: A Marimo Simulator

https://www.zeldas.page/marimo
1•zeldahessler•9m ago•0 comments

MCP Is Dead; Long Live MCP – Revisited

https://chrlschn.dev/blog/2026/08/mcp-is-dead-long-live-mcp/
1•CharlieDigital•13m ago•0 comments

They don't make 'em like Sublime Text anymore

https://dbushell.com/2026/08/07/sublime-text/
1•vinhnx•15m ago•0 comments

Move 37 Is the Moment AI Changes Everything. It's Suddenly Happening Everywhere

https://www.wsj.com/tech/ai/move-37-ai-demis-hassabis-google-deepmind-alphago-ec832a41
1•fortran77•16m ago•1 comments

Ask HN: Is Ask HN Shrinking?

4•keiferski•19m ago•2 comments

Show HN: My AI agent built and shipped a browser game on its own

https://overlk.itch.io/afterimage
2•yoopla_dev•19m ago•0 comments

Building Groovie, an Advanced Web-Based Drum Machine / Beat Sequencer

https://pointersgonewild.com/2026-08-06-building-groovie-an-advanced-web-based-drum-beat-sequencer/
1•maxime_cb•21m ago•0 comments

Cave of the Crystals

https://en.wikipedia.org/wiki/Cave_of_the_Crystals
2•ColinWright•23m ago•0 comments

Git, CRDT, Markdown

https://replicated.live/blog/crdt.html
1•gritzko•24m ago•0 comments

A skills-based pathway to licensure is ordered in New Mexico [pdf]

https://web.archive.org/web/20260805102345/https://nmcourts.gov/wp-content/uploads/2026/07/Order-...
1•firefax•24m ago•0 comments

Ex-Amazon VP on What Gets You Promoted

https://www.youtube.com/watch?v=Gf0pR4_bv-o
1•tcp_handshaker•24m ago•0 comments

How software is changing – and how OpenAI is building the future

https://every.to/p/openai-infrastructure
1•samuel_kx0•28m ago•1 comments

Show HN: A free DOCX editor with MCP server for editing

https://revise.io/help/mcp-server
3•artursapek•31m ago•0 comments

Linux 7.3 to support Logitech HID++ 2.0 reprogrammable button support

https://www.phoronix.com/news/Linux-7.3-HIDPP-Reprogrammable
2•teleforce•32m ago•0 comments

Show HN: Ewwii, An extensible widget system for all of Linux

https://github.com/Ewwii-sh/ewwii
1•byson94•34m ago•0 comments

Laravel 13.24, Filament 90% faster, managed queues on Cloud – ADWL #063

https://a-day-with-laravel.happyto.dev/p/laravel-13-24-filament-90-faster-managed-queues-on-cloud...
1•happytodev•36m ago•0 comments

Gateway 2000's hilariously bad ads in the 90s (Part II)

https://buttondown.com/suchbadtechads/archive/gateway-2000-part-2/
3•rfarley04•47m ago•0 comments

Milankovitch Cycles

https://en.wikipedia.org/wiki/Milankovitch_cycles
2•cl3misch•49m ago•0 comments

Ask HN: Sane casual family co-op game on mobile?

4•minusf•49m ago•2 comments

Show HN: A Free Paper Trading Platform with AI Coaching for Global Markets

https://paper-trader.org
1•paperTraderOrg•50m ago•0 comments

Congo bans copper and cobalt concentrates exports

https://www.reuters.com/world/africa/congo-bans-exports-copper-cobalt-concentrates-official-order...
1•geox•53m ago•0 comments

SQRL wan't wrong, it was early

https://sjg.io/writing/sqrl-wasnt-wrong-it-was-early/
3•simonjgreen•54m 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/