frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Rejourney – Finds user "leaks" in apps and websites

https://rejourney.co/demo/leaks
1•mrr7337•3m ago•0 comments

Pixel is a unit of length and area

https://www.nayuki.io/page/pixel-is-a-unit-of-length-and-area
1•speerer•6m ago•0 comments

Beta User for Proven Trips

https://proventrips.com
1•rohitnrl•8m ago•0 comments

Show HN: DNTLS – Decentralized Trust Layer for the Open Internet

https://dntls.net/
2•aliasxneo•9m ago•0 comments

Monthly Updates [Sept]

https://fmhy.net/posts/sept-2026
1•Cider9986•10m ago•0 comments

Girder – an MCP server that gives coding agents a code graph

https://github.com/dhishwasher/Girder
1•dhishwasher•11m ago•0 comments

Ollama replacement 2-4x faster for no extra compute cost

https://github.com/omgitsbase/llmash
1•wowitsbase•13m ago•0 comments

Wabi-sabi

https://en.wikipedia.org/wiki/Wabi-sabi
1•sdeframond•13m ago•0 comments

DeepSeek V4 Flash across 14 providers: cost, speed and caching

https://www.inference.academy/benchmarks/serving-tradeoffs
3•batuhanaktas61•14m ago•1 comments

From Spring Boot to Swift: The Business Logic Was the Cheap Part

https://leosolbach.medium.com/from-spring-boot-to-swift-the-business-logic-was-the-cheap-part-206...
1•frizlab•14m ago•0 comments

I put my Electron app on my landing page, no screenshots (React/CodeMirror/Waku)

https://www.devas.life/how-i-designed-my-saas-landing-page-with-ai-tools/
1•zazuke•15m ago•1 comments

Show HN: I was tired to check my mums WhatsApp last online, to see if she is ok

https://github.com/janrakete/healthcore-bulp.io
1•janrakete•16m ago•0 comments

Ask HN: What Happened to Removepaywalls.com?

1•maerF0x0•18m ago•0 comments

Compressed Sensing in Python

https://web.archive.org/web/20161113135531/http://www.pyrunner.com/weblog/2016/05/26/compressed-s...
3•joebig•19m ago•0 comments

Support multiple remote Herdr servers

https://github.com/herdrdev/herdr/discussions/515
1•Bluestein•19m ago•0 comments

Bulgaria's .bg TLD is run by a private company with no mandate from the state

https://eualternative.eu/guides/bulgaria-bg-private-registry/
2•mrtksn•20m ago•0 comments

Show HN: Create perceptually-uniform color palettes with optimization

https://zkingston.com/precept/
1•zak_kingston•21m ago•0 comments

Why the AfD Wins

https://firstthings.com/why-the-afd-wins/
29•cwwc•25m ago•28 comments

Macbeth and His Problems

https://porticoquarterly.com/essay/macbeth-and-his-problems/
6•apophatic•26m ago•0 comments

Show HN: HealthAPI – hosted REST API over Apple Health

https://healthapi.app
1•jdbloodstone•26m ago•0 comments

Leaving VMware Just Got Harder After Broadcom Pulled VDDK Downloads

https://www.virtualizationhowto.com/2026/09/leaving-vmware-just-got-harder-after-broadcom-pulled-...
2•josephcsible•27m ago•1 comments

DESI Legacy Imaging Surveys: catalogs and sky viewer for 31,000 sq deg of sky

https://www.legacysurvey.org/
1•Jimmc414•29m ago•0 comments

Show HN: Bamboo – build-time, Rust/Oxc, type-safe, zero-runtime CSS-in-JS

https://bamboocss.com/docs/overview/getting-started/
1•gajus•30m ago•2 comments

We're disrupting the creator management industry

https://peachandcherry.com/blog/welcome
2•zyloquenstar•31m ago•1 comments

Kenyans Made a Living Writing College Essays. Then A.I. Arrived

https://www.nytimes.com/2026/09/05/technology/kenya-college-essays-ai.html
1•porridgeraisin•31m ago•0 comments

Use Vsock with Libzmq

https://blog.remijouan.net/posts/libzmq-vsock-pyzmq/
1•remijouannet•35m ago•1 comments

AI chatbots wrongly reassure sleep apnoea patients their symptoms aren't serious

https://www.ersnet.org/news-and-features/news/in-a-third-of-cases-ai-chatbots-wrongly-reassure-sl...
2•DeepLogin•37m ago•0 comments

CallerCheck.co.uk: UK reverse phone lookup

https://www.callercheck.co.uk
1•rosszt•38m ago•0 comments

A Tesla ran a stop sign and killed a man, Full Self-Driving/Autopilot was on

https://electrek.co/2026/09/07/tesla-driver-assist-stop-sign-buena-vista/
7•FabHK•39m ago•0 comments

Tech explores Argentina's Patagonia for mega data centers

https://www.reuters.com/business/energy/tech-companies-look-argentinas-windswept-patagonia-build-...
1•reqo•39m 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/