frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Slate Notes and Todos

https://slate.andrewmitchell.com.au/
1•andrewmi•37s ago•0 comments

Show HN: PageBolt – Screenshot, PDF, narrated video recording API with MCP

https://pagebolt.dev
1•fbrooksssss•3m ago•1 comments

Show HN: Bt – Plan-first AI coding commands for OpenCode

2•ekadet•5m ago•1 comments

SETI@home: Data Acquisition and Front-End Processing

https://iopscience.iop.org/article/10.3847/1538-3881/ade5a7
2•tosh•8m ago•0 comments

Tehching Hsieh, Linda Montano

https://www.artforum.com/events/tehching-hsieh-linda-montano-224861/
1•thunderbong•9m ago•0 comments

QRTape – Audio Playback from Paper Tape with Computer Vision

http://www.theresistornetwork.com/2021/03/qrtape-audio-playback-from-paper-tape.html
1•austinallegro•9m ago•1 comments

Hacker News.love – 22 projects Hacker News didn't love

https://hackernews.love/
1•ohong•10m ago•0 comments

AI development tools shouldn't be faster horses

https://bayinformationsystems.substack.com/p/the-problem-with-faster-horses
1•anax32•13m ago•0 comments

Regular Building Maintenance

1•Servicecare•13m ago•0 comments

CLI to estimate Cloudflare bill before it surprises you

https://github.com/michaloo/flareclerk
1•michaloo•14m ago•1 comments

Hetzner Prices increase 30-40%

https://docs.hetzner.com/de/general/infrastructure-and-availability/price-adjustment/
4•williausrohr•14m ago•0 comments

Show HN: MCP tools for AI-driven E2E testing across 10 platforms

https://github.com/ai-dashboad/flutter-skill
1•charlie-w•21m ago•0 comments

How Nick Land Became Silicon Valley's Favorite Doomsayer

https://www.newyorker.com/culture/the-lede/silicon-valleys-favorite-doomsaying-philosopher
1•rbanffy•22m ago•0 comments

The Zen of DevOps

https://www.zenofdevops.org/
1•TBNL•22m ago•0 comments

Become the Main Character of Your Life Before It's Too Late

https://doingtheimpossible.substack.com/p/become-the-main-character-of-your
1•davidgoudet•22m ago•0 comments

Motia: A framework and language agnostic back end

https://www.motia.dev/
1•MaxMonteil•24m ago•0 comments

What I Learned After Building 3 TV Apps Coming from Mobile

https://dinkomarinac.dev/blog/what-i-learned-after-building-3-tv-apps-coming-from-mobile/
2•dinko7•25m ago•0 comments

Show HN: Implementing ping from the Ethernet layer (ARP,IPv4,ICMP in user space)

https://github.com/v420v/ping
1•ibuki256•25m ago•1 comments

What's good career for long run now? back end-dev – AI dev – DevOps

1•triggered_code•28m ago•1 comments

Show HN: I built a tool that generates and deploys websites in ~24h

https://www.promptpageai.com/
1•Tippel•35m ago•3 comments

Agents evolving in a SIM, who becomes the top dog and what are they fighting for

https://github.com/NetMindAI-Open/NexusAgent
1•Demi369•37m ago•1 comments

Corita Kent challenged the church and the art world with her creations

https://designexplained.substack.com/p/corita-kent-learning-by-heart
1•kaizenb•39m ago•0 comments

Turn your MacBook's Notch into a file sharing portal

https://www.filenotch.com/
2•EmuSad•44m ago•1 comments

Sam Altman would like to remind you that humans use a lot of energy too

https://techcrunch.com/2026/02/21/sam-altman-would-like-remind-you-that-humans-use-a-lot-of-energ...
5•sfifs•44m ago•3 comments

Drowse: Nix dynamic derivations made easy

https://github.com/figsoda/drowse
1•birdculture•46m ago•0 comments

Show HN: Elev8or - A structured creator marketplace for brands

https://www.elev8or.io
1•Sourabhsinr•49m ago•0 comments

Resonix AG – AI Agent Framework

https://github.com/mangiapanejohn-dev/Resonix-AG
1•Resonix•50m ago•1 comments

The Evolution of Software Engineering

https://djpardis.medium.com/the-evolution-of-software-engineering-from-fortran-to-llms-63d2427a3e73
1•djpardis•58m ago•1 comments

Show HN: AI Timeline – 171 LLMs from Transformer (2017) to GPT-5.3 (2026)

https://llm-timeline.com/
3•ai_bot•59m ago•4 comments

Mathematics in the Library of Babel

https://www.daniellitt.com/blog/2026/2/20/mathematics-in-the-library-of-babel
2•salutis•59m ago•0 comments
Open in hackernews

Automatically add missing "async/await" keywords to your TypeScript code

https://github.com/stanNthe5/typescript-autoawait
7•theThree•9mo ago

Comments

bastawhiz•9mo ago
Is this a problem that people actually have?
xeromal•9mo ago
Fun side project man!
primitivesuave•9mo 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•9mo 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•9mo ago
You can still control it by adding "//no-await". In fact, the "//no-await" makes me feel more clear.
nextweek2•9mo 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•9mo ago
It should be noted that there is already a lint rule for this: https://typescript-eslint.io/rules/no-floating-promises/