frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Fenzo – Build an interactive course on any topic

https://fenzo.ai/
1•fahimulhaq•14s ago•0 comments

Show HN: Display Big Text on Screen

https://bigtext.net/
2•liquid99•2m ago•0 comments

Show HN: Spendict – a performance marketer's verdict for AI agents, over MCP

https://www.spendict.com/
2•ds246•6m ago•0 comments

Cloud Rebuild (Preview)

https://learn.microsoft.com/en-us/windows/configuration/cloud-rebuild/
1•taubek•11m ago•0 comments

Turbocharged solo dev – zooming out a couple of clicks

https://adjohu.com/blog/turbocharged-solo-dev/
1•adjohu•12m ago•0 comments

Children (Composition)

https://en.wikipedia.org/wiki/Children_(composition)
1•doener•14m ago•0 comments

Show HN: Lip Sync AI – Create Your Talking Videos Instantly

https://lipsyncai.co/
1•vtoolpro•17m ago•0 comments

AI-powered video generator SaaS Application for Sale

https://flippa.com/13365327-ai-powered-video-generation-platform-for-creating-viral-short-form-co...
1•kilincarslan•17m ago•1 comments

Movement Is Not Progress

https://frederickvanbrabant.com/blog/2026-07-10-movement-is-not-progress/
1•TheEdonian•18m ago•0 comments

Onemind.md – give your repo a memory without any extra tooling

https://github.com/lazardanlucian/onemind.md
1•lazardanlucian•20m ago•0 comments

I don't need you. I do

https://www.sunilshenoy.com/2026/07/12/i-dont-need-you-i.html
1•cybersunil•21m ago•0 comments

Yakr – a social-relay messaging protocol with Python and Rust implementations

https://github.com/MY20-PHEV/yakr
1•MY10-PHEV•28m ago•0 comments

Show HN: Grinta – a local-first coding agent built for long autonomous runs

https://github.com/josephsenior/Grinta-Coding-Agent
1•JosephSenior•29m ago•0 comments

How does a Dev's job look like in a few years?

1•korrak•30m ago•1 comments

Show HN: Runeward: Sandboxing AI agents with policy gates

https://runewardd.github.io/runeward/
1•tha_infra_guy•33m ago•0 comments

Big Tech to face fines for consumer protection failures, says EU official

https://www.ft.com/content/25640be5-a5bd-4548-81f9-bd0e16f87f35
3•giuliomagnifico•35m ago•1 comments

Leaked Documents Reveal Secret Russia-China Military Plan to Disable Starlink

https://united24media.com/world/leaked-documents-reveal-possible-secret-russia-china-military-pla...
3•vrganj•36m ago•0 comments

Show HN: DPDK vs. Af_XDP Latency Benchmarks Tested on Real NICs

https://github.com/ASherjil/ABTRDA3
1•CoreCppEngineer•37m ago•1 comments

Cuelume: Interface Sound Design Kit

https://cuelume-site.pages.dev/
1•handfuloflight•37m ago•0 comments

Itanium: Market Reception

https://en.wikipedia.org/wiki/Itanium
1•tosh•37m ago•1 comments

Meta u-turns on AI feature amid privacy backlash

https://thehill.com/policy/technology/5964282-privacy-concerns-instagram-ai/
3•Alien1Being•41m ago•0 comments

Test Your Webcam and Microphone

https://webcamtester.io/en/
1•QOOBRA•41m ago•0 comments

Remembering Ken Iverson (2004)

https://web.archive.org/web/20180412035431/https://keiapl.org/rhui/remember.htm
1•tosh•52m ago•0 comments

I needed one feature for my SaaS. 6 hours later I had launched another SaaS

https://www.floatingvideo.com
1•astonfred•54m ago•1 comments

Think preprints are unreliable? Analysis of 70000 studies might change your mind

https://www.nature.com/articles/d41586-026-02167-3?linkId=62708614
2•XzetaU8•54m ago•1 comments

A proper Docker image for WebCalendar: SQLite-backed and self-contained

https://projects.rocks/blog/webcalendar-docker.html
1•mysterhawk•57m ago•0 comments

Jiki – Learn to Code the Fun Way

https://jiki.io
1•phil-pickering•59m ago•1 comments

The Hard-Line Activists Ramping Up for the War with AI

https://www.wsj.com/tech/ai/anti-ai-activists-disappearance-sam-kirchner-6872879f
3•thm•1h ago•0 comments

The Gen X Career Meltdown (2025)

https://www.nytimes.com/interactive/2025/03/28/style/gen-x-creative-work.html
2•Michelangelo11•1h ago•0 comments

In Praise of Exhaustive Destructuring

https://antoine.vandecreme.net/blog/exhaustive-destructuring-praise/
1•avandecreme•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/