frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Aiope – An on-device AI agent for Android (terminal, browser, SSH, MCP)

https://github.com/XNet-NGO/aiope
1•xnet-admin•22s ago•0 comments

Discovery Loop is raising again, now at $50B valuation

https://www.businessinsider.com/jeff-deans-startup-discovery-loop-is-eyeing-a-valuation-2026-9
2•utiiiD•6m ago•0 comments

Story Beyond the Eye: Glyph Positions Break PDF Text Redaction

https://arxiv.org/abs/2206.02285
1•jumpocelot•8m ago•0 comments

Harness as a Service

https://www.harnessasaservice.dev/
1•iacguy•8m ago•0 comments

Micron's Taiwan workers to get rewards worth up to 68 months of pay

https://www.reuters.com/world/asia-pacific/microns-taiwan-workers-get-rewards-worth-up-68-months-...
2•teleforce•9m ago•0 comments

Dance MIDI Sample Pack Creator

https://monictheory.com/genre/dance/
1•song_synth•12m ago•0 comments

Hip Hop MIDI Sample Pack Creator

https://monictheory.com/genre/hip-hop/
1•song_synth•13m ago•0 comments

Military aircraft reportedly blamed for UK air traffic control outage

https://www.theguardian.com/world/2026/sep/12/military-aircraft-reportedly-blamed-for-uk-air-traf...
1•tmnvix•17m ago•0 comments

Show HN: Fog 2.0: I removed the AI auto-organizing I built my first app around

https://apps.apple.com/us/app/smart-notes-folders-fog/id6760272134
1•akshatsaladi•18m ago•0 comments

Surviving What I Can't Forgive

https://www.thecut.com/article/surviving-without-forgiveness.html
1•littlexsparkee•19m ago•0 comments

iPhone Duo and iPhone 18 Pro – Not Justifiable

1•wwolfson97•21m ago•5 comments

OpenAI puts Pro subscriptions on hold due to Astra demand

https://techcrunch.com/2026/09/10/openai-puts-pro-subscriptions-on-hold-due-to-astra-demand/
2•josefchen•27m ago•0 comments

Building your own agent harness is fun

1•mrsirg•30m ago•1 comments

Starlink Signal Leakage Threatens Radio Astronomy's Most Critical Frequencies

https://www.gadgetreview.com/starlinks-signal-leakage-is-threatening-radio-astronomys-most-critic...
4•upofadown•31m ago•0 comments

A Decade of Hype, 3k Roofs, and One Redirect URL: Tesla Kills the Solar Roof

https://www.gadgetreview.com/a-decade-of-hype-3000-roofs-and-one-redirect-url-tesla-kills-the-sol...
5•upofadown•33m ago•0 comments

Our $106k Kalshi "Bailout," Explained

https://greed.bot/blog/combo-wombo
2•kylecarbs•40m ago•0 comments

I present to you: Game Index, a power user game library manager

https://github.com/atxoxx/GameIndex
1•atxoxx•41m ago•0 comments

Richat Structure

https://en.wikipedia.org/wiki/Richat_Structure
1•jonbaer•43m ago•0 comments

Bernie's AI bill proposes to sentence AI developers to 20 years in prison

https://twitter.com/venturetwins/status/2098456905526211026
3•bilsbie•47m ago•0 comments

Ask HN: How do we deal with "hacking" Hacker News?

1•jumploops•48m ago•2 comments

Learning Alzheimer signatures by bridging EEG with spiking neural networks

https://www.sciencedirect.com/science/article/pii/S0925231226022885
2•giorgiodidio•49m ago•0 comments

Evergarden

https://evergarden.moe/
1•birdculture•49m ago•0 comments

Sometimes it's better not to say anything

https://manuelmoreale.com/thoughts/sometimes-it-s-better-not-to-say-anything
1•theorchid•50m ago•0 comments

An agent fleet that turns an IAM audit log into signed Terraform

https://medium.com/@majid.fekri/building-colony-guard-an-agent-fleet-that-turns-an-iam-audit-log-...
3•supportm•52m ago•1 comments

The Nature of Dance

https://vester.si/blog/nature-of-dance/
2•wonger_•54m ago•0 comments

Show HN: Graphify C# – Compiler-accurate Find Usages for coding agents

https://github.com/zachsaw/graphify-csharp
6•zachsaw•55m ago•2 comments

All Decks

https://jeffbaumes.github.io/all-decks/
2•scoreandseven•56m ago•0 comments

Prompts Aren't Real

https://evaluation.club
4•mcfunley•1h ago•0 comments

New type of plastic-degrading enzyme discovered in bacteria

https://www.the-microbiologist.com/news/an-enzyme-with-potential-new-type-of-plastic-degrading-en...
2•geox•1h ago•0 comments

The robotics revolution won't be humanoid

https://techcrunch.com/video/the-robotics-revolution-wont-be-humanoid/
3•ciqufi•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/