frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Australian cops cuff alleged TeamPCP masterminds

https://www.theregister.com/security/2026/08/28/australian-cops-cuff-alleged-teampcp-masterminds/...
2•jruohonen•1m ago•0 comments

Ireland Moves $38M in Bitcoin Tied to Drug Dealer's Lost Fishing Rod

https://cryptonews.net/news/bitcoin/33367182/
1•mywacaday•1m ago•0 comments

Why Living Past 115 Is Almost Impossible [video]

https://www.youtube.com/watch?v=WKi9FHrGAjA
1•mgh2•2m ago•0 comments

Trees for a Changing Climate and Resilient Urban Forest (2022)

https://www.coolboulder.org/news/trees-for-a-changing-climate-resilient-urban-forest
1•mooreds•3m ago•0 comments

Envault –- A local, minimum, encrypted vault for coding agents

https://github.com/MildyNora/envault
1•MildyNora•3m ago•0 comments

Algebra Explorer

https://dreksh.github.io/algebra-explorer/blog/
1•vismit2000•3m ago•0 comments

Discovering Productive Numbers

https://prodgang.github.io/prod/words/intro.html
1•vismit2000•4m ago•0 comments

Show HN: SHOOK - A Hook for ASD Simplified English

https://github.com/viktorinkov/shook
1•viktorinkov•4m ago•0 comments

Spect2test – Playwright Test Generation

https://spec2test-intelligence.streamlit.app/
1•gaya3bollineni•9m ago•1 comments

One 'absolutely prolific' male bird is keeping his species alive in the U.K

https://www.cbc.ca/radio/asithappens/monatgus-harriers-9.7323206
2•ohjeez•10m ago•0 comments

The growing divide between AI hype and software engineering reality

https://optimizedbyotto.com/post/why-open-source-projects-ban-ai/
1•jruohonen•10m ago•0 comments

In less than a year, Google made scraping 10× harder

https://growtika.com/blog/google-goto-links-study
2•Growtika•16m ago•0 comments

Show HN: Idea Miner – I stopped ranking ideas by how often they're mentioned

https://idea-miner.com/en/
1•alexstarks•17m ago•0 comments

Why aren't my two Cortex-A9 cores cache coherent?

https://thejpster.org.uk/blog/blog-2026-08-22/
1•ingve•17m ago•0 comments

OpenSEO – open-source SEO Platform

https://openseo.so/
1•fkozlowski•19m ago•0 comments

Parselbox

https://github.com/thesanjeetc/parselbox
1•sanjeetc•21m ago•0 comments

Eggshell – Local work memory across independent Codex chats

https://github.com/o8vm/eggshell
1•o8_vm•27m ago•0 comments

Rails Pulse: a comprehensive performance monitoring and debugging gem

https://github.com/railspulse-org/rails_pulse
1•ksec•28m ago•0 comments

I built free SEO tools that answer 3 questions before you write anything

https://www.serpstep.com
1•dongli23•29m ago•0 comments

We open-sourced SIMURG. Bye-bye hallucinations in local quantized models

https://github.com/doofzoff/SIMURG
1•doofzz•30m ago•0 comments

An island mysteriously appeared – then disappeared – on B.C.'s largest reservoir

https://www.cbc.ca/news/canada/british-columbia/floating-island-williston-lake-bc-9.7324586
1•pseudolus•31m ago•0 comments

Play with Putty – Collaborative Vibe Coding App by Google

https://labs.google/playwithputty
1•ms7892•32m ago•0 comments

Show HN: LayoverGuard – automatic payouts when delays threaten your connection

https://www.layoverguard.com
2•layoverguard•34m ago•0 comments

Listen in on the Sounds of a Jurassic Period Forest

https://nautil.us/listen-in-on-the-sounds-of-a-jurassic-period-forest-1284593
1•Brajeshwar•35m ago•0 comments

The Everything Theory of Mass Transit

https://worksinprogress.co/issue/the-everything-theory-of-mass-transit/
2•karakoram•35m ago•0 comments

54% Americans in Their 40s Have Both an Ageing Parent and Own Child

https://www.pewresearch.org/short-reads/2026/08/27/more-than-half-of-americans-in-their-40s-are-s...
1•karakoram•37m ago•0 comments

Show HN: I was getting tired of looking for my travel info so I built this

https://skaoot.com
1•sarbogast•38m ago•0 comments

Nancy Grace Roman Space Telescope

https://science.nasa.gov/mission/roman-space-telescope/
4•JumpCrisscross•39m ago•0 comments

Thailand: Where does the planned cut in visafree stays from 60 to 30 days stand?

https://visasnews.com/en/thailand-where-does-the-planned-cut-in-visa-free-stays-from-60-to-30-day...
1•Markoff•40m ago•0 comments

The first AI use case that genuinely saves me time (outside of programming)

https://ducret.dev/grocery-shopping-with-ai/
1•tducret•41m 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/