frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Global renewable capacity factors datasets

https://bayesian.energy/blog
1•p44v9n•1m ago•0 comments

I Built a Telegram Client for Pi

https://www.npmjs.com/package/@atharva-again/pi-tg
1•atharva-again•1m ago•1 comments

Show HN: Orchestrate parallel Claude Code and Codex agents on a live map

https://github.com/Latand/live-log-viewer-next
1•latand6•1m ago•0 comments

Show HN: We track 1,397 AI agents. 43 famous ones (402k stars) have gone dark

https://agentcrush.xyz/ghost-report
1•AgentCrush•1m ago•0 comments

The Nature of Launch Day

https://seths.blog/2026/06/the-nature-of-launch-day/
1•herbertl•2m ago•0 comments

Show HN: Captchainbox – make senders work to get into your inbox

https://www.captchainbox.com
1•felixdoerp•3m ago•0 comments

Microsoft joins AI-driven tech layoff wave with 4,800 job cuts

https://www.reuters.com/business/world-at-work/microsoft-joins-ai-driven-tech-layoff-wave-with-48...
1•root-parent•4m ago•0 comments

Loop Engineering's Missing Half

https://x.com/compose/articles/edit/2073814852167184384
1•sankarn_ai•4m ago•0 comments

Show HN: Flying Drones with Natural Language

https://jakedecamp.com/product/flying-drones-with-natural-language/
1•silksowed•4m ago•0 comments

We asked AI agents to fix real security bugs. This is what happened

https://mobb.ai/blog/we-asked-ai-agents-to-fix-real-security-bugs-this-is-what-happened
1•k1r111•5m ago•0 comments

Will GPUs Accelerate Your Traditional SQL Workload?

https://www.starburst.io/blog/will-gpus-accelerate-your-traditional-sql-workload/
1•abadid•5m ago•1 comments

Show HN: Quiet Sky, a weather app built for privacy

https://github.com/NW-Hiker-Skier/quietsky-privacy-proxy
1•Aaron_NW•5m ago•0 comments

Ask HN: Is anyone using Jujutsu version control (JJ) exclusively?

2•cabyambo•6m ago•0 comments

CppRTOS

https://github.com/borisRadonic/CppRTOS
2•BorisRadonic•8m ago•0 comments

Go Report Card has been sunset

https://goreportcard.com/
1•atkrad•9m ago•0 comments

Xbox to Lay Off Up to 3,200 in 'Most Significant Restructure' in Company History

https://variety.com/2026/gaming/news/xbox-layoffs-3200-4-studios-sold-1236802326/
3•drayfield•9m ago•0 comments

Show HN: I check grocery "sale" prices against government data (190 cities)

https://lowtein.com
1•barneycorp•10m ago•0 comments

Domain-specific agents: composition against the bloated agent

https://leocavalcante.dev/en/agentes-de-dominio-especifico-composicao-contra-o-agente-inchado/
1•leocavalcante•10m ago•0 comments

How old are you?

https://orchidfiles.com/how-old-are-you/
1•theorchid•11m ago•0 comments

Show HN: OnlyFoundrs – Twitter for founders, minus the flex

https://onlyfoundrs.com/
2•Quise2003•11m ago•0 comments

OpenAI's apparent failure to visit key site raises questions over UK investment

https://www.theguardian.com/technology/2026/jul/04/openai-apparent-failure-visit-key-site-questio...
4•_tk_•13m ago•0 comments

UEFA slams FIFA's 'unprecedented, unjustifiable' Balogun decision

https://www.reuters.com/sports/soccer/uefa-slams-fifas-unprecedented-incomprehensible-unjustifiab...
2•root-parent•13m ago•0 comments

Cognitive Aging and Brain Health: Comparison of Super Movers vs. Nonsuper Movers

https://www.neurology.org/doi/10.1212/WNL.0000000000214776
2•bookofjoe•13m ago•0 comments

Uniform Invoice

https://en.wikipedia.org/wiki/Uniform_Invoice
2•redbell•14m ago•0 comments

Nintendo's EU Switch 2 gets a 1% smaller battery and is 10 grams heavier

https://hanafuda.report/articles/nintendo-switch-2-eu-battery-change/
2•brandrick•14m ago•0 comments

Blatant nepotism among various groups of Indians in Amazon

https://old.reddit.com/r/amazonemployees/comments/1uoj25w/blatant_nepotism_among_various_groups_o...
3•root-parent•14m ago•0 comments

Invisible Companies

https://colossus.com/article/invisible-companies/
2•herbertl•15m ago•0 comments

Hackers replace D.C.'s Broken 311 App

https://www.notus.org/metro/washington-dc-311-app-ai
2•therealcamino•16m ago•0 comments

Mira – New OSS World Model from Kyutai

https://mira-wm.com/blog-post/
1•pain_perdu•16m ago•0 comments

Modeling the 2026 World Cup as a Status Page

https://sajarin.com/blog/worldcup-statuspage/
1•Sajarin•16m 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/