frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Meta found to breach EU laws with 'addictive' Instagram, Facebook designs

https://www.cnbc.com/2026/07/10/meta-instagram-facebook-addictive-design-breach-eu-laws.html
1•1vuio0pswjnm7•1m ago•0 comments

The Company That Owns AOL Gets a Million Job Applications–and Rejects 99.9%

https://www.wsj.com/business/bending-spoons-jobs-hiring-stock-eaed2b8e
1•JumpCrisscross•1m ago•0 comments

MDN has a page that shows every web API update as it hits each browser

https://developer.mozilla.org/en-US/plus/updates
2•luispa•13m ago•0 comments

Overview of 2026 wrench (physical) attacks on crypto holders

https://www.certik.com/blog/2026-wrench-attacks-overview
2•decimalenough•15m ago•0 comments

NYT article on opening of dachau (1933)

https://www.nytimes.com/1933/07/27/archives/nazi-prison-camps-to-be-permanent-building-going-on-a...
2•marysminefnuf•17m ago•0 comments

Scutoid Papercraft

https://www.patreon.com/vihart/posts/scutoid-and-111945080
2•ry-gr•18m ago•0 comments

Using a Vision Pro to help install a POE doorbell

https://old.reddit.com/r/Ubiquiti/comments/1ut1atj/how_i_retrofit_poe_doorbells/
2•js2•19m ago•0 comments

I've been building this alone for months. Roast it before I lose any more time

https://peakd.io
2•GroguMaster•26m ago•0 comments

Plain Text Sports

https://plaintextsports.com/
2•bwoah•27m ago•0 comments

Hacked Paxel as tribute for my YC Startup School 26' application

https://obaid.wtf/jotbook/2026/07/11/yc-startup-school-26-application-i-hacked-paxel.html
3•wtfobaid•29m ago•1 comments

Paxel has been hacked

https://twitter.com/wtfobaid/status/2075742915226435755
2•wtfobaid•31m ago•0 comments

FreeCAD in the Browser

https://magik.net/freecad/
6•cui•35m ago•4 comments

Choosing the Right AI Agent Memory Strategy: A Decision-Tree Approach

https://machinelearningmastery.com/choosing-the-right-ai-agent-memory-strategy-a-decision-tree-ap...
2•eigenBasis•36m ago•0 comments

UNIGRID's sodium-ion home battery debuts in Europe, US is next

https://electrek.co/2026/07/10/unigrid-sodium-ion-home-battery-debuts-in-europe-us/
4•Bender•37m ago•0 comments

Email Verification Protocol – Chrome for Developers

https://developer.chrome.com/blog/email-verification-protocol-origin-trial
3•dmmalam•37m ago•0 comments

Meta pulls new AI image feature after days of backlash

https://www.bbc.com/news/articles/c2dy6e8klw0o
3•cdrnsf•39m ago•1 comments

Porting Doom to the Casio Loopy [Throaty Mumbo] [video]

https://www.youtube.com/watch?v=nDe06uY5C40
2•mrinfinite•39m ago•0 comments

Hannah Montana Linux v26.0

https://gitlab.com/DecaCagle/hannahmontanalinux26
2•birdculture•40m ago•0 comments

The iconic blue IKEA FRAKTA bag comes with a free lifetime warranty

https://ikeamuseum.com/en/explore/the-story-of-ikea/beloved-bag/
4•teleforce•40m ago•1 comments

Frog bacterium wiped out cancer tumors in mice with a single dose

https://www.sciencedaily.com/releases/2026/07/260709160655.htm
7•dcyfr•48m ago•0 comments

Boeing's Graveyard. Investigation is not detergent

https://zboralski.substack.com/p/boeings-graveyard
3•kugutsumen•49m ago•0 comments

Show HN: We beat Cloudflare's bot detection (open-source stealth browser)

https://tilion.dev/blog/cloudflare-blocks-agents
4•armanluthra_•53m ago•0 comments

Guardrails Against Duplicated Code

https://www.technology.org/2026/07/03/dupehound-deterministic-guardrails-against-ai-code-duplicat...
2•rafaepta•55m ago•0 comments

Atlassian ordered to reinstate engineer sacked over Slack clash with leadership

https://www.hcamag.com/nz/news/general/atlassian-ordered-to-reinstate-engineer-sacked-over-slack-...
8•toomanyrichies•58m ago•1 comments

SF Farmers Market allows laundering food stamps for drug purchases

https://thevoicesf.org/snap-to-cash-how-food-assistance-vouchers-were-traded-for-cash-at-the-hear...
5•AcesoUnderGlass•58m ago•1 comments

Metamaterial Antennas Enhance MRI of the Eye and Occipital Brain

https://advanced.onlinelibrary.wiley.com/doi/10.1002/adma.202517760
3•bookofjoe•59m ago•0 comments

AI2Web: Open protocol to make any website work with every AI agent

https://ai2web.dev/
3•rolandfarkas•1h ago•0 comments

One Wikipedia page costs your AI agent 68,000 tokens

6•arhamislam5766•1h ago•1 comments

Maura Gillison, who linked HPV to head and neck cancer, dies at 61

https://cancerletter.com/obituary/20260702_2/
3•tortilla•1h ago•0 comments

Math Visualizations of the AI Layoff Trap

https://mattlane.us/stories/dailemma
4•mmmaaatttttt•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/