frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

An agent opened this pull request. Nobody asked it to

https://www.marcoziccardi.com/blog/ai-agents-open-pr-autonomously
1•marcoziccardi•1m ago•0 comments

Distributism

https://en.wikipedia.org/wiki/Distributism
1•supermdguy•3m ago•0 comments

Universal Basic Income

https://en.wikipedia.org/wiki/Universal_basic_income
2•andsoitis•3m ago•0 comments

WATaBoy: JIT-Ing Game Boy Instructions to WASM Beats a Native Interpreter

https://humphri.es/blog/WATaBoy/
2•energeticbark•3m ago•0 comments

It's Linux, on a Sega Genesis

https://hackaday.com/2026/06/29/its-linux-on-a-sega-megadrive/
2•HardwareLust•4m ago•1 comments

WebGL Without a GPU

https://microlink.io/blog/webgl-without-a-gpu
3•Kikobeats•4m ago•0 comments

Rejection Emails Should Be Written Like Error Messages

https://landedstar.com/blog/posts/rejection-emails-should-be-written-like-error-messages/
1•lifefeed•4m ago•0 comments

Brain2Qwerty: Brain-to-text decoder by Meta

https://facebookresearch.github.io/brain2qwerty/
1•Sathwickp•4m ago•0 comments

Extracting standalone HTML files from Lovable, Figma make, Canva code and more

https://productnow.ai/blogs/extracting-html-from-ai-prototyping-tools
1•kadhirvelm•5m ago•0 comments

Did a bar scan your face this Pride weekend?

https://sfstandard.com/2026/06/29/catro-faceid-delete-patronscan/
1•tobadzistsini•5m ago•0 comments

Stop Paying More for Less Transit

https://ifp.org/stop-paying-more-for-less-transit/
1•surprisetalk•5m ago•0 comments

Brain2Qwerty v2

https://github.com/facebookresearch/brain2qwerty
1•ilreb•5m ago•0 comments

Wall of Fame

https://www.walloffame.live/
1•tuliSinger•6m ago•0 comments

Infini – Audit your agent project for loop portability (0-100 score)

https://github.com/NickAiNYC/infini
1•alt313•9m ago•0 comments

Eyes Do Not Work the Way They Appear To

https://ishan.co/no-way/
1•speckx•9m ago•0 comments

Deezer's new tool can identify AI music from Spotify, Apple Music, and others

https://techcrunch.com/2026/06/11/deezers-new-tool-can-identify-ai-music-from-spotify-apple-music...
1•austinallegro•10m ago•0 comments

BT Group and Verizon to form joint venture

https://www.verizon.com/about/news/verizon-bt-group-international-joint-venture
2•qainsights•10m ago•0 comments

Working with AI

https://htmx.org/essays/working-with-ai/
2•comma_at•12m ago•0 comments

Hard-Boiled Prediction Markets and the End of the World

https://thebestworstcase.substack.com/p/hard-boiled-prediction-markets-and
1•shmublu•13m ago•0 comments

Nukes for All (But Finland First) [video][3 mins]

https://www.youtube.com/watch?v=q_7-T4mXxdI
1•Bender•16m ago•0 comments

Hangul, the only major writing system with a known inventor

https://spacedaily.com/d-the-korean-alphabet-called-hangul-is-the-only-major-writing-system-in-hu...
1•softwarebakery•16m ago•0 comments

F. A. Hayek and the World of Tomorrow [pdf]

https://cosmosandtaxis.org/wp-content/uploads/2022/09/nientiedt_ct_vol10_iss11_12.pdf
1•brandonlc•17m ago•0 comments

Token Run: Score While Coding

https://www.youtube.com/watch?v=1_zyz-caAE4
1•ebimirsafian•18m ago•0 comments

Evaluation order and nontermination in query languages

https://www.rntz.net/post/2026-06-11-datalog-nontermination.html
1•rntz•18m ago•0 comments

Hire Me (Taylor) via API

https://taylor.town/looop-000
4•surprisetalk•20m ago•0 comments

Tulsi Gabbard Exposes US Global Biolab Program [video][3 Mins]

https://www.youtube.com/watch?v=gFc3oqQIJDw
1•Bender•20m ago•1 comments

TreeSheets (Hierarchical Spreadsheet)

https://strlen.com/treesheets/
1•jxmorris12•22m ago•0 comments

AI Is Dogshit at Design

https://tomcreighton.com/AI-is-dogshit-at-design/
1•speckx•22m ago•4 comments

Flap: A deterministic parser with fused lexing

https://arxiv.org/abs/2304.05276
2•fanf2•23m ago•0 comments

Doom on the Mi Band 10

https://github.com/atc1441/MiBand10-BES2700iMP-BEST1503-Hacking
1•kmmbvnr_•23m 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/