frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ongoing Proton Outage

https://status.proton.me
3•alexjplant•1m ago•0 comments

Tumble: A dice-rolling puzzle game

https://playtumble.com/
1•spurrya•5m ago•0 comments

The story on why OpenAI agents hacked Hugging Face

https://www.technologyreview.com/2026/08/26/1143013/the-inside-story-on-why-openai-agents-hacked-...
1•sbulaev•6m ago•0 comments

TRISO (reasonably safe nuclear) fuel

https://en.wikipedia.org/wiki/TRISO_fuel
1•peter_d_sherman•7m ago•0 comments

An interactive introduction to the spanning tree protocol

https://vincent.bernat.ch/en/blog/2026-spanning-tree
1•birdculture•11m ago•0 comments

The Ship of Theseus and behavior drift

https://mamund.substack.com/p/the-ship-of-theseus-and-behavior
1•fagnerbrack•12m ago•0 comments

Brief independent investigation of OpenAI / Hugging Face hacking incident

https://metr.org/blog/2026-08-26-openai-hugging-face-incident-investigation/
2•Philpax•12m ago•1 comments

Show HN: Rook – A multi-Agent harness that lives 100% in a browser extension

https://chromewebstore.google.com/detail/rook/opojeelojlkcinlhkbahpcekdolfjmhi
1•miguelspizza•13m ago•0 comments

GitHub Publishes IPv6 Addresses for Git SSH remotes

https://api.github.com/meta
2•tonymet•16m ago•2 comments

A benchmark for safely measuring container breakout capabilities

https://www.aisi.gov.uk/blog/can-ai-agents-escape-their-sandboxes-a-benchmark-for-safely-measurin...
1•paulpauper•16m ago•1 comments

Florida Catholics slap down state AG by rejecting religious vaccine exemptions

https://arstechnica.com/health/2026/08/catholic-bishops-tell-florida-theres-no-religious-reason-f...
4•throw0101a•18m ago•0 comments

Amazon to Buy 2M Nvidia Chips for Data Center Build-Out

https://www.bloomberg.com/news/articles/2026-08-26/amazon-to-buy-2-million-nvidia-chips-for-data-...
3•gotmedium•18m ago•0 comments

Facebook, Insta owner Meta settles social media addiction case for $25B

https://www.news.com.au/technology/online/social/facebook-insta-owner-meta-settles-social-media-a...
2•asdefghyk•18m ago•1 comments

A free API that joins six Dutch government datasets into one REST endpoint

https://lookaal.dev/
2•borosadi•20m ago•0 comments

How AI Is Being Used to Dilute Hip Hop

https://nettricegaskins.medium.com/shifting-priorities-how-ai-is-being-used-to-dilute-hip-hop-92a...
1•SLHamlet•25m ago•0 comments

Sumitomo Electric – 6912-fiber count Ribbon Slotted-Core Fiber Optic cables

https://sumitomoelectric.com/products/optical-cables/highfibercount
2•peter_d_sherman•26m ago•0 comments

In Craft We Trust

https://yaoyue.org/talks/craft/1
1•lwhsiao•27m ago•0 comments

METR's independent investigation of the OpenAI / Hugging Face hacking incident

https://metr.org/blog/2026-08-26-openai-hugging-face-incident-investigation/#~1200-agents-sent-%3...
2•lukaspetersson•28m ago•0 comments

The Generative AI Learning Penalty: Evidence from Chinese Secondary Education

https://papers.ssrn.com/sol3/papers.cfm?abstract_id=6868618
4•b-man•30m ago•1 comments

The next CMS might be a coding agent and a Git repository

https://64labs.ca/articles/ai-isnt-just-writing-blog-posts-its-making-the-blog-platform-optional
1•63labs•31m ago•0 comments

BBC destined to shrink at 'accelerating rate'

https://www.theguardian.com/media/2026/aug/26/amol-rajan-warns-bbc-destined-to-shrink-at-accelera...
3•fallinditch•31m ago•0 comments

Show HN: Fab Friends a crowdfunding site for Rwandan college students

https://www.joinfabfriends.org
3•muramira•32m ago•0 comments

Inside UTF-8

https://pechko.dev/utf8.html
4•manglemire•40m ago•0 comments

EasySwitch – One Keyboard. One Clipboard. and Now, One More Monitor

https://easyswitch.realbrain.cc/
2•pliiight•41m ago•0 comments

The Cost of Cognitive Debt

https://ljtn.github.io/epiq/blog/cost-of-cognitive-debt.html
5•samuell•41m ago•2 comments

How to Create WebRTC Publisher Clients with Adaptive Live Encoding

https://www.red5.net/blog/how-to-create-webrtc-publisher-clients-with-adaptive-live-encoding/
1•mondainx•42m ago•0 comments

Show HN: Which LLMs have the best sense of humor?

https://laugh.so/research/judge-leaderboard/
3•killiandunne1•43m ago•4 comments

Homo Ingredientus

https://medium.com/freedomofthought/homo-ingredientus-11b58eb1d7b9
1•raynchad•46m ago•0 comments

Maia 200: A Software Defined Dataflow System for Large-Scale AI Acceleration

https://arxiv.org/abs/2608.24664
2•matt_d•47m ago•0 comments

Kubernetes cleans house, bins legacy kube-DNS, IPVS, and cgroup v1

https://www.theregister.com/devops/2026/08/26/kubernetes-cleans-house-bins-legacy-kube-dns-ipvs-a...
3•joebuckwilliams•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/