frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

General-purpose large language models outperform specialized clinical AI tools

https://www.nature.com/articles/s41591-026-04431-5
2•benwen•2m ago•0 comments

Building a High-Throughput Fix Server

https://akinocal1.substack.com/p/building-a-high-throughput-fix-server
1•klaussilveira•5m ago•0 comments

A Baseless Copyright Claim Against a Web Host–and Why It Failed

https://www.eff.org/deeplinks/2026/03/baseless-copyright-claim-against-web-host-and-why-it-failed
1•laurex•5m ago•0 comments

Show HN: PromptShark – MitM proxy, C++ loop detector and replay for AI agents

https://github.com/apvcode/PromptShark
1•apvcode•5m ago•0 comments

Please, Use a Link

https://idiallo.com/blog/use-a-link-please
2•firefoxd•8m ago•1 comments

Show HN: Karpenter Provider for Hetzner

https://paperclip.inc/blog/karpenter-hetzner
1•stubbi•9m ago•0 comments

Data Compression Explained

https://mattmahoney.net/dc/dce.html
1•mtdewcmu•10m ago•0 comments

I Built Our Data Lake on DynamoDB Streams Instead of Kafka

https://medium.com/@yalovoy/i-built-our-entire-data-lake-on-dynamodb-streams-instead-of-kafka-218...
1•zero-ground-445•10m ago•0 comments

The Rain Spell

https://notas.grod.es/the-rain-spell
2•grodes•14m ago•0 comments

OpenAI's leaked financials reveal soaring losses as it prepares to go public

https://groups.google.com/a/netflix.com/g/ios-ui-kickoffs/c/772e4-hycBE
1•andsoitis•16m ago•2 comments

DOJ assists Musk's xAI in NAACP air pollution suit, asks court to toss case

https://www.cnbc.com/2026/06/16/usdepartment-of-justice-calls-for-dismissal-of-naacp-xai-lawsuit-...
1•ChrisArchitect•17m ago•0 comments

Workday isn't 75% of the ATS market. I checked 337 companies

https://withresumeai.com/blog/workday-ats-market-share-myth-2026
1•kzahiri•17m ago•0 comments

Drone Physics

https://iahmed.me/post/drone-physics/
3•hazrmard•21m ago•0 comments

Show HN: Steam City – Your Steam game library as a 3D city

https://thesteamcity.com
1•m1rsh0•22m ago•0 comments

Welcoming Our Newest Core Team Members

https://ziglang.org/news/welcoming-new-team-members/
2•yurivish•22m ago•0 comments

Swift-OS – operating system written in Embedded Swift for aarch64

https://github.com/asaptf/swift-os/tree/main
1•de_aztec•24m ago•0 comments

Eno – General Purpose Humanoid Robot

https://www.genesis.ai/
1•cheeko1234•25m ago•0 comments

UK Government Goes All-In on Digital Surveillance, Censorship and Control

https://www.nakedcapitalism.com/2026/06/the-uks-most-unpopular-government-on-record-just-went-all...
4•boticello•27m ago•1 comments

Software Is Not a Single-Player Game

https://www.davidpoll.com/2026/06/software-is-not-a-single-player-game/
2•depoll•27m ago•0 comments

How to Demolish a Bridge [video]

https://www.youtube.com/watch?v=7oi4yMr8Rjk
1•mhb•32m ago•0 comments

Ten Years of Just (and Lists)

1•rodarmor•33m ago•0 comments

Seattle Underground

https://en.wikipedia.org/wiki/Seattle_Underground
1•axelfontaine•36m ago•0 comments

AMD Pulls Memory Encryption from Ryzen CPUs

https://www.technology.org/2026/06/16/amd-strips-memory-encryption-consumer-ryzen-cpus/
4•KAMSPioneer•36m ago•0 comments

Update: Acabei de abrir O SDK no GitHub → github.com/mathhMadureira/orka

1•matteusmadu•38m ago•0 comments

The Battle with Anthropic Is the Start of a New Kind of Conflict

https://www.nytimes.com/2026/06/16/opinion/anthropic-fable-ai-trump-administration.html
1•furcyd•41m ago•0 comments

I built a fail-closed execution gate for AI agents

https://kronyqldemo.netlify.app/demo/ase-proof
1•Auditome•41m ago•0 comments

Total Iran Economic Damage Estimate

https://www.fdd.org/analysis/2026/04/23/total-iran-economic-damage-estimate/
13•littlexsparkee•43m ago•5 comments

Qode – The first AI agent that can generate 50k line codebases in one prompt

https://github.com/akshaylakkur/Q
1•akshayl284•44m ago•1 comments

Silicon Motion exec: Retail SSD market has almost disappeared

https://www.tomshardware.com/pc-components/ssds/the-retail-ssd-market-has-almost-disappeared-says...
8•Lihh27•49m ago•0 comments

Guardrails for Reuse in AI from ClimateSOS Foundational Charter

1•safiume•49m 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/