frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Two Pillars Protocol – a maturity model for AI-era software engineering

https://assess.rlabs.cl/
1•rlabbe•35s ago•0 comments

Two Brothers Are Trying to Put the Person Back into AI

https://www.wearefounders.uk/how-two-brothers-are-trying-to-put-the-person-back-into-ai/
1•snoren•2m ago•0 comments

Get-a-Waymo: How a burglar used a robotaxi to flee the scene

https://www.sfchronicle.com/crime/article/waymo-burglary-camera-video-22277358.php
1•breve•3m ago•0 comments

AI Notepad

https://online-notepad.com/
1•ent101•3m ago•0 comments

Show HN: Nudgra – Open-source, self-hostable alternative to ManyChat

https://github.com/MaikoCode/nudgra-oss
1•Maiko11•4m ago•0 comments

A Fixation and Distance-Dependent Color Illusion

https://arxiv.org/abs/2509.11582
1•robert-boehnke•4m ago•0 comments

Melia: A Privacy-First, Modern Desktop Email Client Made Just for Linux

https://itsfoss.com/melia/
1•mikece•4m ago•0 comments

Is 'Just Buy an Index Fund' Enough? 20 Years of Backtested Data

https://ctrl-trade.com/blog/long-term-investment-strategies-compared/
1•frenxi•7m ago•0 comments

Did Ahmes find the best expansions for 2/n?

https://blog.plover.com/2026/03/17/#egyptian-fractions-2
1•surprisetalk•9m ago•0 comments

Show HN: Batch printing Avery label paper name label generator

https://name-tag-template.com
1•66k•9m ago•0 comments

Value Numbering

https://bernsteinbear.com/blog/value-numbering/
1•surprisetalk•9m ago•0 comments

Show HN: Pokayoke – deterministic guardrails for agentic coding

https://pokayoke.codes
1•sarreph•10m ago•0 comments

Classifying animal behaviour from acceleration data using a U-Net

https://www.sciencedirect.com/science/article/pii/S1574954126001676?via%3Dihub
1•PaulHoule•12m ago•0 comments

Bending Spoons Form F-1

https://www.sec.gov/Archives/edgar/data/2004711/000110465926071170/tm2613674-7_f1.htm
1•ea016•14m ago•0 comments

HN Alerts: get an email when a story is trending

https://hnalerts.com/
1•davidbarker•14m ago•0 comments

Kilo Code: Getting my Hands dirty

https://www.mariusb.net/blog/2026/06/kilo-code-getting-my-hands-dirty/
1•mariusb16•15m ago•0 comments

The quiet problem with unnecessary async

https://allthingssmitty.com/2026/06/08/the-quiet-problem-with-unnecessary-async/
1•AllThingsSmitty•15m ago•0 comments

DeepSeek Made AI Cheap. Now It Needs Billions to Keep It Cheap

https://chinacompany.substack.com/p/deepseek-made-ai-cheap-now-it-needs
1•zacfire•18m ago•0 comments

Datasette is a tool for exploring and publishing data

https://github.com/simonw/datasette
1•andsoitis•19m ago•0 comments

The iPhone explains 33–52% of fertility decline among women aged 15–44

https://www.nber.org/papers/w35310
4•delichon•20m ago•1 comments

Anthropic's Project Glasswing Update

https://www.schneier.com/blog/archives/2026/06/anthropics-project-glasswing-update.html
12•mikece•21m ago•0 comments

Y Combinator: Paxel, understand how you build with AI

https://paxel.ycombinator.com/
2•edweis•21m ago•1 comments

The Artificial Intelligence Revolution (2015)

https://waitbutwhy.com/2015/01/artificial-intelligence-revolution-1.html
1•chr15m•21m ago•0 comments

Dario's fictional origin story using Seedance 2

https://xcancel.com/cuimao/status/2058458683781365873
1•hmokiguess•24m ago•0 comments

Great Saunter (2021)

https://shorewalkers.org/great-saunter/
1•surprisetalk•24m ago•0 comments

Using SwiftUI to Build a Mac-Assed App in 2026

https://pfandrade.me/blog/mac-assed-swiftui-app/
1•Luc•24m ago•0 comments

Stop Vibecoding Screen Readers

https://fireborn.mataroa.blog/blog/stop-vibecoding-screen-readers/
1•calcifer•25m ago•0 comments

Show HN: Tech Team Agents – Famous Tech Teams as AI Agent Personas

https://github.com/cliffano/tech-team-agents
1•cliffano•27m ago•0 comments

AI Doesn't Write Good Software: The Environment Does

https://adrianferrera.dev/en/blog/ai-does-not-write-good-code
2•RyeCombinator•28m ago•0 comments

Nvidia partners with LG robotics to build humanoid robots in South Korea

https://blogs.nvidia.com/blog/nvidia-and-lg-group-ai-factory/
11•spwa4•29m 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/