frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Finding Community Events in SF Easily

https://alexroginski.com/stuff_to_do/
1•alexroginski•17s ago•0 comments

Ask HN: What's a pirate's favorite programming language?

2•dieselgate•2m ago•1 comments

Erdős problem #870 solved with ChatGPT-5.5-Pro and Lean

https://twitter.com/DavidTurturean/status/2070531663461756950
1•asparagui•2m ago•0 comments

A personal meta harness for work on the go

https://herd.gehirn.ai/
1•nickguyai•4m ago•1 comments

Open AI SDR – An Open Source Version of the Artisans Ava BDR

https://opencomputer.dev/blog/open-ava-bdr-agent/
1•iacguy•4m ago•0 comments

Using GitHub Actions to Build Linux Kernels – 萌え豚's Blog

https://moebuta.org/posts/using-github-actions-to-build-linux-kernels/
2•abdelhousni•5m ago•0 comments

Reviewing the Experience of Italy in the 1970s

https://mondediplo.com/1998/09/11negri
1•jruohonen•6m ago•0 comments

Cairn – self-hosted health OS that connects labs, training and meals

https://github.com/zilet/cairn
1•miloszikic•6m ago•0 comments

Baguette: Headless iOS Simulator control via private SimulatorKit APIs

https://github.com/tddworks/baguette
1•loa_observer•7m ago•0 comments

MySQL's New Governance Model: Two steps forward and one step backwards

https://villagesql.com/blog/mysql-governance/
2•deesix•9m ago•2 comments

The Industry Mourns the Loss of Bruce Clay – The Father of SEO

https://www.seroundtable.com/bruce-clay-rip-41581.html
1•speckx•10m ago•0 comments

New split layout framework for nearly all Apple platforms (macOS, iOS, etc.)

https://twitter.com/mitchellh/status/2070273858154987537
1•simonebrunozzi•14m ago•0 comments

Rejecting Emails on AS Level

https://blog.vasi.li/june-spam-wave/
1•vsviridov•15m ago•1 comments

Tachio – Free esports API covering 13 games

https://tachiosports.com
1•domktt•16m ago•0 comments

YayText

https://yaytext.com/
1•visviva•18m ago•0 comments

Show HN: Mantis, A self-hosted LLM gateway

https://github.com/mantis-llm-gateway
2•rizsyed1•20m ago•0 comments

VibePHP

https://github.com/mnapoli/vibephp
1•_Microft•21m ago•0 comments

Building Voice AI Workflows with Branches Instead of One Giant Prompt

https://github.com/team-telnyx/telnyx-code-examples/tree/main/build-conversational-workflow-nodejs
2•anushathukral•21m ago•0 comments

Show HN: A free ACP payments module that adds Stripe payments to MCP tools

https://www.afcommerce.com/free-acp-payments-module/
1•abratabia•23m ago•0 comments

From API to Ontology: An Architecture for On-Demand Semantic Digital Twins

https://blog.ptidej.net/from-api-to-ontology-an-architecture-for-on-demand-semantic-digital-twins/
4•viniciusmioto•23m ago•0 comments

Summary of METR's predeployment evaluation of GPT-5.6 Sol

https://metr.org/blog/2026-06-26-gpt-5-6-sol/
1•pongogogo•23m ago•1 comments

Long Wave radio era set to end with Droitwich switch-off

https://www.bbc.com/news/articles/c74yn7v7k4qo
1•speckx•23m ago•0 comments

Amazon wouldn't let me, so I built my own 20TB Snowball [video]

https://www.youtube.com/watch?v=v0DEI4Ad7Ik
3•tambourine_man•23m ago•0 comments

Akrites: The Latest Attempt to Protect Open-Source from AI Attacks Has Arrived

https://devops.com/akrites-the-latest-attempt-to-protect-open-source-from-ai-attacks-has-arrived/
1•CrankyBear•25m ago•0 comments

A list of software and other offerings with free developer tiers

https://github.com/ripienaar/free-for-dev
2•faradtech•28m ago•0 comments

The French are painting their windows with chalk to beat the heat

https://www.bbc.com/future/article/20260625-why-the-french-are-painting-chalk-on-their-windows
4•geox•29m ago•0 comments

My-Pi Coding-Agent

https://github.com/spences10/my-pi
2•mainsong•29m ago•0 comments

HTML: Composer and Perl HTML Templating

https://rawley.xyz/posts/html-composer.html
1•rawleyfowler•31m ago•0 comments

My Love-Hate Relationship with Page Builders

https://eliotdill.substack.com/p/my-love-hate-relationship-with-page
1•DillyDally125•31m ago•0 comments

New Intel Linux Driver Patches Enable HDR over DP MST Connections

https://lore.kernel.org/dri-devel/20260626175510.3899476-1-gildekel@google.com/
1•DemiGuru•32m 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/