frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

How to Download Canvas and Panopto Lecture Videos

https://www.scholarshipsads.com/blog/how-to-download-canvas-and-panopto-lecture-videos
1•behindai•8m ago•0 comments

Trump's 'narco‑terrorism' war in Latin America evokes Reagan

https://theconversation.com/trumps-narco-terrorism-war-in-latin-america-evokes-reagan-then-as-now...
1•robtherobber•10m ago•0 comments

Pioneer of 'extreme male brain' theory of autism now says phrase unhelpful

https://www.theguardian.com/society/2026/jul/05/autism-extreme-male-brain-simon-baron-cohen
1•Michelangelo11•10m ago•0 comments

India's IT industry is shrinking general hiring while AI roles rose 16%

https://twitter.com/rohanpaul_ai/status/2073314619423174678
1•rustoo•10m ago•0 comments

Veteran Coder, Modern Delivery: The Hunt for the Perfect Technical TPM Role

https://www.mariusb.net/blog/2026/07/veteran-coder-modern-delivery-the-hunt-for-the-perfect-techn...
1•mariusb16•11m ago•0 comments

Google disrupts NetNut proxy network used in malware operations

https://www.reuters.com/business/media-telecom/google-disrupts-netnut-proxy-network-used-malware-...
1•angst•12m ago•0 comments

Mercury – Hermes HF Modem

https://github.com/Rhizomatica/mercury
1•noyesno•19m ago•0 comments

UN chief warns AI is developing faster than rules can keep up

https://www.reuters.com/technology/un-chief-warns-ai-is-developing-faster-than-rules-can-keep-up-...
2•adithyaharish•26m ago•0 comments

A Skiing Accident Put Our Development Practices to the Test

https://blog.enioka.com/2026/07/03/how-a-skiing-accident-put-our-development-practices-to-the-test/
4•hebus•28m ago•0 comments

14× faster embeddings: how we rebuilt the ONNX path in Manticore

https://medium.com/@s_nikolaev/14-faster-embeddings-how-we-rebuilt-the-onnx-path-in-manticore-fab...
2•snikolaev•30m ago•0 comments

Looking Forward to Postgres 19: Split Personality

https://www.pgedge.com/blog/looking-forward-to-postgres-19-split-personality
1•rellem•31m ago•1 comments

Defeat air-gapped systems by exfiltrating data using Apple Find My network

https://github.com/HouzuoGuo/hzgl-air-bridge
2•austinallegro•31m ago•0 comments

DJ USB T[ool]kit

https://github.com/haivala/dj-usb-tkit
1•chipheadi•32m ago•0 comments

Show HN: WatermarkGo – Gemini Watermark Remover

https://watermarkgo.com
2•qwikhost•34m ago•0 comments

HN: An automated CI/CD testing harness for Model Context Protocol servers

https://github.com/vaquarkhan/mcp-test-harness
2•vaquarkhan•34m ago•0 comments

AI-powered product photography suite designed specifically for Amazon sellers

https://loomadesign.ai/
1•loomadesignai•38m ago•0 comments

Show HN: Excalibur. The open-source AI coding agent for product engineers

https://getexcalibur.dev
4•Rafael_Casuso•39m ago•0 comments

Thoughts on the Near Future

https://x.com/bayeslord/article/2072056960430789032
1•grodriguez100•42m ago•0 comments

What America has meant to me

https://twitter.com/swyx/status/2073657149067321412
1•pretext•49m ago•0 comments

Built a Website for People Who Miss the Old Web

https://www.dailicle.com/
2•lucky-solanki•50m ago•0 comments

China wants to solve the hardest problem in robotics – making hands

https://www.theguardian.com/technology/ng-interactive/2026/jul/06/china-dextrous-robotic-hands-hu...
4•sandebert•52m ago•0 comments

Interdict: Stop agents from destroying production databases

https://github.com/prisharai/Interdict
1•handfuloflight•53m ago•1 comments

Building Software Is Learning

https://registerspill.thorstenball.com/p/building-software-is-learning
1•kiyanwang•54m ago•1 comments

TinyRetroPad: A working, Notepad-style Windows text editor in roughly 2.5 KB

https://github.com/plummersSoftwareLLC/TinyRetroPad
3•doener•55m ago•0 comments

Phi Browser 2.0: Spaces, Profiles, and Room for Your Agents

https://phibrowser.com/news/phi-browser-v2/
2•sjdhoome•56m ago•1 comments

When AI Costs More Than the Engineer

https://tomtunguz.com/ai-spend-breakeven-2029/
17•kiyanwang•58m ago•4 comments

Generate parametric, manufacturable 3D models in seconds

https://kyrall.com/
5•OsamaAtwi•59m ago•2 comments

How Russia Blackmails Ordinary Ukrainians to Spread Terror in Ukraine [video]

https://www.youtube.com/watch?v=1ypMQlXlWIg
2•consumer451•59m ago•1 comments

Revised Rules of Engineering Leadership

https://lethain.com/revised-rules-of-engineering-leadership/
2•kiyanwang•59m ago•0 comments

When Gemma Thinks About Resources – It Fails: A Behavioral Experiment

https://www.lesswrong.com/posts/9Gj9anZi95RgHQPv6/when-gemma-thinks-about-resources-it-fails-a-be...
2•joozio•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/