frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

TMOG – task manager for macOS, Windows, and Linux

https://tmog.org/
1•gjvc•1m ago•0 comments

The Remote Work Challenge: Lessons from 5 Cities

https://www.pew.org/en/research-and-analysis/reports/2026/05/the-remote-work-challenge-lessons-fr...
2•softwaredoug•6m ago•0 comments

Yuval Harari: AIs will control civilisation and what it would mean to be human

https://www.economist.com/insider/the-insider/an-interview-with-yuval-noah-harari
1•andsoitis•6m ago•0 comments

Verifiable Domains Will Eat the World

https://twitter.com/jon_stokes/status/2091383885569405025
1•barry-cotter•6m ago•0 comments

Building an AI Agent for PCB Design

https://luvsheth.com/p/building-an-ai-agent-for-pcb-design
1•Reviving1514•9m ago•1 comments

Experimental compound helps burn fat without muscle loss

https://www.sciencedaily.com/releases/2026/08/260823014953.htm
1•toomuchtodo•9m ago•0 comments

DefCon 34 – Stalking the Wily Hacker: 40 years later [video]

https://www.youtube.com/watch?v=656058JxTM0
2•AJRF•14m ago•1 comments

FCC pulls HoverAir Versa certification three days after launch

https://www.tomshardware.com/tech-industry/drones/fcc-pulls-hoverair-versa-certification-three-da...
1•sbulaev•14m ago•0 comments

Erik Brynjolfsson says an AI "job apocalypse" is unlikely

https://wpintelligence.washingtonpost.com/topics/ai-tech/2026/08/19/wpi-conversation-why-an-ai-jo...
1•gumby•14m ago•0 comments

Basic iPhone Tricks I Built with iOS 27's Revamped Shortcuts App

https://www.wired.com/story/7-basic-iphone-tricks-i-built-with-ios-27s-revamped-shortcuts-app/
1•joozio•21m ago•0 comments

20 years after Pluto was made a dwarf planet, some still can't let go

https://www.nbcnews.com/science/space/pluto-dwarf-planet-20-years-rcna593156
2•croes•21m ago•1 comments

Only Apple Can Abolish the Job Application

https://loitery.substack.com/p/only-apple-can-abolish-the-job-application
3•mchannon•24m ago•1 comments

Isometric Plotter

https://notion-images.laravel.cloud/
1•lopespm•24m ago•0 comments

Show HN: Tiny uptime monitor (account-less, agent-native)

https://upok.dev
2•flomllr•26m ago•0 comments

A website for debloated open source alternatives

https://debloat.dev/
14•ryanvogel•27m ago•1 comments

Show HN: Anagnorisis – local recommendation engine (v0.4.10 update)

https://github.com/volotat/Anagnorisis
2•volotat•28m ago•0 comments

GenAI in the Wild

https://koenvangilst.nl/lab/genai-in-the-wild
1•vnglst•28m ago•0 comments

RSoC 2026: Eevdf for Redox

https://www.redox-os.org/news/rsoc-eevdf/
3•akshitgaur2005•32m ago•1 comments

I've tested some local LLMs on prosumer hardware, here are some findings

1•felineflock•32m ago•0 comments

An Introduction to Canvas in GNU Emacs

https://monadicsheep.org/blog/an-introduction-to-canvas-in-emacs.html
1•birdculture•36m ago•0 comments

Best Friendship Quiz

1•HPhammad123•37m ago•0 comments

Show HN: Mnemosyne Local hierarchical memory engine for AI agents (MCP Native)

https://github.com/M4F-S/mnemosyne
2•mfathy7•38m ago•0 comments

Phoenix tried a reflective coating on black asphalt; noon surface heat fell 12°F

https://economictimes.indiatimes.com/news/international/us/phoenix-swapped-black-asphalt-for-a-re...
4•djoldman•38m ago•2 comments

A no sprite, no texture, no audio file isometric game kit for agents

https://www.reddit.com/r/ClaudeAI/s/90HUruevpF
1•achandratre•38m ago•1 comments

A Fast Unit Converter for Mac, iPhone, and iPad

https://medium.com/@chris.ahrweiler/a-fast-unit-converter-for-mac-iphone-and-ipad-eaa852b1dae0
1•docjojo•39m ago•0 comments

Why GitHub is the best knowledge base

https://ykdojo.github.io/claude-code-tips/content/why-github-is-the-best-knowledge-base.html
1•yoyoyosss•39m ago•1 comments

Show HN: Renotify – A WhatsApp operations platform for teams and agencies

https://renotify.app
1•richbowen•42m ago•0 comments

Keeping Shai-Hulud Off the Mélange

https://blog.barthe.ph/2026/08/23/keeping-shai-hulud-off-the-m%C3%A9lange/
1•jackjeff•43m ago•0 comments

Harvard's $699 startup bootcamp offers AI avatars of its instructors

https://techcrunch.com/2026/08/22/harvards-699-startup-bootcamp-offers-ai-avatars-of-its-instruct...
1•Brajeshwar•44m ago•0 comments

Why Silicon Valley Is Losing Public Trust in AI Data Centers and Surveillance CM

https://moztako.me/ai-data-centers-and-surveillance-cameras/
3•Jefmz•46m ago•1 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/