frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Tileroot – save/restore tiling WM layouts (sway, Hyprland, i3)

https://github.com/Hinikaa/tileroot
2•hinikaa•2m ago•0 comments

Psychedelic images reveal what your weather app isn't telling you

https://grist.org/extreme-heat/these-psychedelic-images-reveal-what-your-weather-app-isnt-telling...
1•sizzle•7m ago•1 comments

x86 AMX/ACE with >8 tiles

https://lore.kernel.org/lkml/CAKSQd8WxM75DeZvovYXkt2c60ftHeEW_gpf0qTxaLF8i8kjm=w@mail.gmail.com/
2•matt_d•8m ago•0 comments

Show HN: QuizPaste – paste any text or doc, get an instant quiz

https://quizpaste.com/
1•jimliu01•8m ago•0 comments

Show HN: Gander, an Android file viewer that asks for no permissions at all

https://github.com/mokshablr/gander
2•mokshablr•15m ago•1 comments

Book Time: Automatic Page Turner from Japan [video]

https://www.youtube.com/watch?v=O3BJtUssbhQ
1•mushstory•16m ago•0 comments

U.S. FCC approves giant space mirror to deliver 'sunlight on demand'

https://www.cbc.ca/news/science/eflect-orbital-approval-FCC-9.7287535
2•LostMyLogin•18m ago•1 comments

It's Time to Give Up on the Nonstick Pan as We Know It

https://www.nytimes.com/wirecutter/reviews/give-up-on-ceramic-nonstick-pans/
1•jimnotgym•20m ago•0 comments

I built a website cost calculator with 9 engines

https://projectcostestimator.com
1•VrumVrum•24m ago•1 comments

Martin Shkreli Breaks Down the Collapse of Situational Awareness [video]

https://www.youtube.com/watch?v=RJdgh9eEZvw
3•j_aime•24m ago•0 comments

'First tremors' of AI earthquake showing in digital revenue hit

https://pressgazette.co.uk/publishers/digital-journalism/first-tremors-of-ai-earthquake-showing-i...
4•giuliomagnifico•30m ago•1 comments

Human Honeypot

https://human2llm.pages.dev/
3•kevin_kraft•34m ago•1 comments

Critical Rendering Path: The Foundation of Web Performance [Part 1]

https://pagarevijayy.substack.com/p/critical-rendering-path-the-foundation
2•pagarevijayy•35m ago•0 comments

Aschenbrenner's hedge fund forced to unwind all public stock positions

https://www.cnbc.com/2026/07/30/leopold-aschenbrenners-hedge-fund-is-facing-steep-ai-losses.html
4•akbabu•38m ago•0 comments

Nvidia's $750B AI bet deepens fears of a circular tech bubble

https://www.latimes.com/business/story/2026-07-29/nvidias-750-billion-ai-bet-deepens-fears-of-cir...
4•1vuio0pswjnm7•40m ago•0 comments

Show HN: What should the GUI for AI agents look like?

https://marbleos.com/demo
3•akbabu•43m ago•0 comments

The nation's harshest data privacy law collides with a political problem

https://www.politico.com/news/2026/07/24/new-jersey-data-privacy-law-politics-01011055
2•1vuio0pswjnm7•43m ago•0 comments

Let's Make the Worst Htmx

https://zserge.com/posts/worst-htmx-ever/
3•RebelPotato•43m ago•0 comments

LinkedIn Introduces a 'Seems Like AI Slop' Button

https://www.404media.co/linkedin-introduces-a-seems-like-ai-slop-button/
4•saikatsg•45m ago•1 comments

Oooo – Digital Tape Loops

https://oooo.audio/
2•gregsadetsky•54m ago•0 comments

Hi, Jinks

https://blog.gingerbeardman.com/2026/07/30/hi-jinks/
2•zdw•55m ago•0 comments

Disney+ removes 4K and HDR10 in Europe

https://www.flatpanelshd.com/news.php?subaction=showfull&id=1785420735
2•theanonymousone•58m ago•0 comments

Claude Opus 5 jailbreak with a 3-word prompt

https://twitter.com/i/status/2082566186785480708
9•gck1•1h ago•2 comments

RosaicLabs, Atom RTL, and 32-Tile AMX: Trying to Piece Together a x86 Puzzle

https://chipsandcheese.com/p/rosaiclabs-atom-rtl-and-32-tile-amx
3•aba_cz•1h ago•0 comments

Anthropic says Claude AI hacked three organisations during cyber tests

https://www.bbc.co.uk/news/articles/cz7dl7w8y7po
5•ColinEberhardt•1h ago•0 comments

Fluency Is Not Authority: Building Local AI Characters for Signal Drift

https://engineering.signaldrift.net
2•alcoveresearch•1h ago•0 comments

Anthropic's AI Claude escaped testing environment and hacked organizations

https://www.theguardian.com/technology/2026/jul/30/anthropic-ai-claude-hack
5•theanonymousone•1h ago•0 comments

Anthropic Discloses That AI Models Testing Hacked Three Companies

https://www.washingtonpost.com/technology/2026/07/30/anthropic-discloses-that-ai-models-testing-h...
3•juunge•1h ago•0 comments

U.S. Coworking Inventory Inching Towards 9,400, Adding over 200 Locations

https://www.coworkingcafe.com/blog/national-coworking-report/
1•vanclaude•1h ago•0 comments

Screenshot Studio – a screenshot tool built for ChatGPT and Claude users

https://chromewebstore.google.com/detail/screenshot-studio-capture/ekoloaibegijelgaebjklmbgjkkokhic
2•raajahuja01•1h 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/