frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Civilization Sid Meier Considered Making Civilization an RTS

https://www.pcgamer.com/games/strategy/civilization-is-the-most-iconic-turn-based-series-of-all-t...
1•Michelangelo11•59s ago•0 comments

FruityScale: FOSS app to analyze piano roll and help with beats in FL Studio

https://github.com/3060s/FruityScale
1•3060s•1m ago•1 comments

Mosby – More Secure Secure Boot

https://github.com/pbatard/Mosby
1•fuzzfactor•1m ago•1 comments

Who decides when AI is too dangerous?

https://www.theverge.com/podcast/951542/anthropic-claude-fable-5-mythos-ban-pentagon-ai-regulatio...
1•andrewstetsenko•2m ago•0 comments

Windows ME released June 19, 2000

https://dfarq.homeip.net/windows-me-released-june-19-2000/
1•HotGarbage•2m ago•0 comments

Tell HN: Raspberry Pi Connect Terms of Service Go Full GDPR

https://www.raspberrypi.com/acceptable-use/
1•cf100clunk•3m ago•1 comments

Building a robotics research setup that lives next to my desk

https://dfdxlabs.com/research/2026/robotics-setup/
1•mplappert•3m ago•0 comments

Show HN: Ironsmith – Generate personal native Mac apps with local LLMs

https://github.com/Jeidoban/Ironsmith
1•jeidoban•4m ago•1 comments

Making Type Coverage Visible in Dify's CI

https://pyrefly.org/blog/dify-pyrefly-coverage-ci/
1•ocamoss•4m ago•0 comments

If AI is sentient, then so is "Age of Empires II"

https://www.404media.co/if-ai-is-sentient-then-so-is-age-of-empires-ii/
1•chipotle_coyote•5m ago•0 comments

Launch HN: TesterArmy (YC P26) – Agents that test web and mobile apps

https://tester.army
5•okwasniewski•5m ago•0 comments

What it's like being the only security company in your YC batch

https://ventureinsecurity.net/p/what-its-like-being-the-only-security
2•alexchantavy•6m ago•0 comments

Hacker Simulator 2077 – Terminal-based hacking game (open source)

https://github.com/DlopedDtorred/hacker-simulator
1•Dloped•6m ago•0 comments

Perplexity Is Open-Sourcing Bumblebee

https://www.perplexity.ai/hub/blog/perplexity-is-open-sourcing-bumblebee
1•speckx•6m ago•0 comments

Hugeicons: An icon library for modern products

https://hugeicons.com
1•masum_parvej•7m ago•0 comments

Show HN: SunCalc v2 – a tiny JavaScript library for sun and moon calculations

https://github.com/mourner/suncalc
1•mourner•7m ago•0 comments

Sooner than expected? Useful quantum error correction promised for 2028

https://arstechnica.com/science/2026/06/amazon-quera-promise-useful-quantum-error-correction-by-2...
1•Brajeshwar•7m ago•0 comments

Show HN: Language1 – Benchmarking LLM comprehension of vague prompts via Taboo

https://language1.app/
1•kaandemirel•8m ago•0 comments

Sentinel- map any codebase for AI agents in 55s, no cloud, zero deps

https://github.com/Ntooxx/Sentinel
1•Ntox•9m ago•0 comments

What was nice about the UI of Windows 2000

https://movq.de/blog/postings/2026-06-16/0/POSTING-en.html
1•npongratz•9m ago•0 comments

ACLU: Do Automatic License Plate Readers violate privacy under the 4th Amendment

https://www.aclu.org/cases/schmidt-v-norfolk
3•StatsAreFun•10m ago•0 comments

Annotate Git diff with explanation generated by AI for easier reviews

https://github.com/kooskoos20/git-diff-ai-explainer-interactive-filter
2•kooskoos•11m ago•1 comments

Drilling Holes in the Space Station to Fix Leaks in the Space Station [video]

https://www.youtube.com/watch?v=4VpD9KgbId4
1•newer_vienna•11m ago•0 comments

.NET: Introducing the Half type (2020)

https://devblogs.microsoft.com/dotnet/introducing-the-half-type/
2•tosh•12m ago•0 comments

Gregory Williams, Academic with an Uncommon Perspective on Race, Dies at 81

https://www.nytimes.com/2026/06/16/books/gregory-williams-dead.html
1•leephillips•13m ago•0 comments

OpenAI is a non profit after all

https://lemmy.ml/post/48910247
2•trilogic•15m ago•3 comments

Layr – a modular UX and product constraint system for AI-built interfaces

https://github.com/layr-hq/layr
6•layrhq•15m ago•0 comments

Mea Maxima Culpa

https://ozybrennan.substack.com/p/mea-maxima-culpa
1•barry-cotter•17m ago•0 comments

If your Mac blocks a Terminal command paste or script

https://support.apple.com/en-us/127377
1•mritzmann•17m ago•0 comments

Show HN: RottenFiles a lightweight Windows app that auto-deletes files

https://www.producthunt.com/products/rottenfiles
1•Shashvi_l•18m 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/