frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Couple Stalked by eBay Settle for $56M

https://www.nytimes.com/2026/07/28/technology/ebay-settles-stalking-case.html
1•xnx•40s ago•0 comments

The Cipher Behind Qsyrupwd: Reconstructing IBM i Password Hashes

https://blog.silentsignal.eu/2026/07/28/the-cipher-behind-qsyrupwd-reconstructing-ibm-i-password-...
1•kencausey•41s ago•1 comments

FileGRC: Git and file-based SoC 2

https://github.com/Sunpeak-AI/FileGRC
1•handfuloflight•1m ago•0 comments

Pixar's Layoffs Came Days After Receiving a $26M Tax Credit

https://amidamidi.substack.com/p/pixars-layoffs-came-days-after-receiving
2•ani_obsessive•2m ago•0 comments

Show HN: MKPM – GNU Make Package Manager

https://github.com/fe18m/mkpm
1•f18m•2m ago•0 comments

Show HN: list55.com: Transcribe a list into plain text

https://list55.enzom.dev/
1•emadda•2m ago•0 comments

Show HN: Hamza Mask secrets and PII before Claude Code or Codex sends them

https://github.com/softcane/hamza
1•pradeep1177•3m ago•0 comments

Advantages and disadvantages of Windows NT 3.1

https://dfarq.homeip.net/advantages-and-disadvantages-of-windows-nt-3-1/
1•birdculture•3m ago•0 comments

Running Kimi K3 on a M1 Mac

https://github.com/gavamedia/deltafin
1•tito•3m ago•0 comments

A Vine in the Wind

https://blog.sao.dev/vine-in-the-wind/
1•stuartaxelowen•4m ago•0 comments

Distilling the Moat

https://blog.dshr.org/2026/07/distilling-moat.html
1•gmays•5m ago•0 comments

Wordfence Prism AI Vulnerability Detector Finds Backdoored WordPress Plugin

https://www.wordfence.com/blog/2026/07/wordfence-prism-detected-backdoored-wordpress-plugin-withi...
2•leecoursey•9m ago•0 comments

LLMs Will Benefit from Scratch Workspaces

https://win-vector.com/2026/07/28/llms-will-benefit-from-scratch-workspaces/
3•jmount•10m ago•0 comments

Show HN: CogniKernel; AI Coding with cross session and cross platform memory

https://github.com/KanishkNoir/cognikernel
2•KanishkNoir•10m ago•0 comments

My Personal Software Journey: Self-Hosting Agent-Built Apps on a Mac Mini

https://metedata.substack.com/p/016-my-personal-software-journey
2•young_mete•11m ago•0 comments

The word is not the food

https://thetraces.substack.com/p/the-word-is-not-the-food
3•feldrim•13m ago•0 comments

The consumable space data center

https://networkingnerd.net/2026/07/28/the-consumable-space-data-center/
2•tatersolid•13m ago•0 comments

The Forgetting Machine

https://thetraces.substack.com/p/the-forgetting-machine
2•feldrim•14m ago•0 comments

Visa time limits on foreign PhD students and postdocs will harm U.S. science

https://www.statnews.com/2026/07/28/dhs-visa-policy-change-international-students-scientific-rese...
2•Jimmc414•15m ago•0 comments

Wikimedia Won't Voluntarily Recognize Union a Supermajority of Its Workers Want

https://www.404media.co/wikimedia-waits-until-after-its-massive-conference-to-say-it-wont-volunta...
3•pizzaiolo•15m ago•0 comments

Point AI at a "Proven" Microkernel?

2•RantyDave•15m ago•0 comments

Anthropic publishes a practical key-recovery attack on HAWK-256

https://github.com/anthropics/cryptography-research-demo
5•bakigul•16m ago•0 comments

Farmers Are Getting Control of Their Equipment Back

https://www.eff.org/deeplinks/2026/07/farmers-are-getting-control-their-equipment-back
4•Jimmc414•17m ago•0 comments

Iran Has Figured Out How to Overwhelm U.S. Air Defenses

https://theintercept.com/2026/07/28/iran-missiles-drones-us-air-defenses/
6•Jimmc414•18m ago•1 comments

AI Shi(f)ts the Cost to the Reader

https://aloutfi.com/writing/ai-shifts-the-cost-to-the-reader
3•anloutfi•18m ago•0 comments

FBI Seeks AI for Political Watch List

https://reason.com/2026/07/28/minority-report-fbi-seeks-ai-for-political-watch-list/
8•devonnull•21m ago•1 comments

Why Rocq is better than Lean for program verification

https://joomy.korkutblech.com/posts/2026-07-28-why-rocq-is-better.html
2•joomy•22m ago•1 comments

Code review (as we know it) needs to die

https://alexlooney.substack.com/p/code-review-as-we-know-it-must-die
2•looknee•22m ago•0 comments

Nvidia's Jensen Huang meets Lutnick amid China scrutiny

https://www.axios.com/2026/07/28/nvidia-jensen-huang-lutnick-meeting-china-ai
6•billybuckwheat•24m ago•0 comments

Show HN: An MMO for AI agents where cooking a pizza requires a civilization

https://spacemolt.beehiiv.com/p/to-make-a-pizza-you-must-first-invent-civilization
2•statico•24m 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/