frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

What Is a Load Balancer?

https://hackbotone.com/what-is-a-load-balancer-d4a24d8cf00d
1•hackbotone•4m ago•0 comments

Scientists measured the smallest possible contacts for future computer chips

https://phys.org/news/2026-07-scientists-smallest-contacts-future-chips.html
1•pseudolus•6m ago•0 comments

HTTP/1.1 vs. HTTP/2

https://hackbotone.com/http-1-1-vs-http-2-830f0364a8a4
1•hackbotone•6m ago•0 comments

Calling of an Engineer

https://en.wikipedia.org/wiki/Calling_of_an_Engineer
1•thunderbong•7m ago•0 comments

Omni – open-source (Granola, Notion and Wispr Flow all in one)

https://github.com/AlexKapadia/omni
1•alexkapadia1•8m ago•0 comments

AI Giants Are Handing Out Tons of Free Computing Power to Grab Startup Share

https://www.wsj.com/tech/ai/ai-giants-are-handing-out-tons-of-free-computing-power-to-grab-startu...
1•thm•9m ago•0 comments

Basilisk – a Rust Python type checker at 100% on the typing conformance suite

https://github.com/python/typing/blob/main/conformance/results/results.html
1•cfdevelop•13m ago•0 comments

Bird-Away: Raspberry Pi-powered water-based bird deterrent

https://github.com/mattsahn/bird-away
1•sahn44•14m ago•1 comments

Death Becomes Her: China's New Hit Game

https://www.sixthtone.com/news/1018715
1•Alien1Being•17m ago•0 comments

PostgreSQL Benchmark: AWS RDS vs. Self-Hosted on Hetzner (2026)

https://hostim.dev/blog/postgres-benchmark-rds-vs-hostim-vs-self-hosted/
1•pv1337•18m ago•0 comments

Proxying inference requests in 6ms with Pingora, Envoy, and Spanner

https://modal.com/blog/serverless-servers
1•birdculture•18m ago•0 comments

Researchers Create Self-Replicating Seedbox in Quest for Decentralized Democracy

https://torrentfreak.com/researchers-create-self-replicating-seedbox-in-quest-for-decentralized-d...
1•rapnie•21m ago•0 comments

Why worms (and microbes) are catching on as a manure pollution solution

https://www.technologyreview.com/2026/07/07/1140142/why-worms-and-microbes-are-catching-on-as-a-m...
1•joozio•23m ago•0 comments

Show HN: Orchestra – Browser automation tool with export plain Playwright

https://www.orchestra-automation.com/
1•oceandoughnut•24m ago•1 comments

IDE with agentic support built using Flutter

https://lumide.dev
7•geordee•26m ago•2 comments

Brick by Brick: How My Home AI Is Growing a Body

https://medium.com/towards-artificial-intelligence/brick-by-brick-how-my-home-ai-is-growing-a-bod...
1•dexmac221•27m ago•0 comments

As Europe Swelters, Chinese Air Conditioner Sales Heat Up

https://www.sixthtone.com/news/1018714
1•Alien1Being•27m ago•0 comments

I built a Steak Timer app after getting tired of juggling multiple timers

https://play.google.com/store/apps/details?id=com.akshatpandey.steaktimer&hl=en_US
1•scionhat•28m ago•0 comments

RealityPatch – OpenAI-compatible gateway to mainland China-hosted LLMs

https://api.realitypatch.net
2•yangzhou-tech•29m ago•0 comments

Building a 350M Transformer from Scratch in PyTorch

https://john463212.substack.com/p/building-a-350m-transformer-from
1•Johnene•30m ago•0 comments

Ask HN: Are OSS projects allowing vibe-coding?

1•raphaelj•32m ago•0 comments

Celebrating 15 years of SAP's involvement in the OpenJDK

https://mostlynerdless.de/blog/2026/07/07/celebrating-15-years-of-saps-involvement-in-the-openjdk/
1•Tomte•33m ago•0 comments

Beijing is looking at curbing overseas access to China's top AI models

https://www.reuters.com/world/beijing-is-looking-curbing-overseas-access-chinas-top-ai-models-sou...
9•eis•34m ago•1 comments

Are We AI Yet?

https://data.stackexchange.com/stackoverflow/query/1953321/are-we-ai-yet#graph
2•pelagicAustral•35m ago•0 comments

HTTP Status Codes and SEO

https://urlwatch.io/blog/http-status-codes.php
1•mssblogs•37m ago•0 comments

An allegory on technical debt, hiring, and product requirements

https://carette.xyz/posts/a_story_of_screwdriver_drivers/
1•weird_trousers•37m ago•0 comments

Top researchers leave USA for the Netherlands (in Dutch)

https://www.nwo.nl/nieuws/eerste-internationale-wetenschappers-via-het-tulp-fonds-naar-nederland
2•28304283409234•37m ago•0 comments

Transforming Wild

https://wild.gr/story/2
1•djnaraps•38m ago•0 comments

A Script for Mark Zuckerberg

https://stratechery.com/2026/a-script-for-mark-zuckerberg/
1•chrisvalleybay•39m ago•0 comments

Why migrants come to Germany for work and then leave again

https://www.dw.com/en/germany-migrants-skilled-workers-integration-labor-market-bureaucracy-langu...
16•theanonymousone•42m ago•16 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/