frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

China's CXMT Is Set to Challenge DRAM Incumbents

https://newsletter.semianalysis.com/p/chinas-cxmt-is-set-to-challenge-dram
1•ma2kx•21s ago•0 comments

Primed for Malware: Stop Selling Compromised Android Devices

https://www.eff.org/deeplinks/2026/06/primed-malware-stop-selling-compromised-android-devices
1•leephillips•2m ago•0 comments

FBI: Russian hackers now target Signal backup recovery keys

https://www.bleepingcomputer.com/news/security/fbi-russian-hackers-now-target-signal-backup-recov...
1•Brajeshwar•4m ago•0 comments

Dr. Alan Kay on the meaning of "object-oriented programming"

https://notes.shixiangxi.com/en/docs/appendix/alan-kay-on-oop/
1•sxx0•4m ago•0 comments

Seven LAWS the animal farm revisted

https://www.mureka.ai/song-detail/4rkp25fs4iUJv4ej35LjrF?is_from_share=1
1•silvestromedia•4m ago•0 comments

Keep Your Windows Closed or Open During a Heatwave?

https://www.the-independent.com/life-style/health-and-families/windows-open-shut-closed-heatwave-...
1•dtj1123•4m ago•0 comments

Cybersecurity company 360, "China's version of Mythos" unveils

https://www.techradar.com/pro/security/chinese-cybersecurity-company-360-unveils-chinas-version-o...
1•Alifatisk•5m ago•0 comments

Show HN: I built a keyboard-first window switcher for macOS

https://github.com/gouwsxander/Reef
1•xandergouws•5m ago•0 comments

Show HN: FPGA design acceleration – idiomatic Python to synthesizable Verilog

https://holoso.digital
1•spym_•5m ago•0 comments

Show HN: GemmaTrans – On-device translation for macOS, built with MLX

https://github.com/Rand01ph/gemma-trans
1•Rand01ph•7m ago•0 comments

Impact of Screen Time, Media&Technology Use on Under 2s during first 1001 Days [pdf]

https://static1.squarespace.com/static/68230d36099adb5f88e3536f/t/6a3d5230859005198ef50f68/178240...
1•bookofjoe•9m ago•0 comments

Vessel – Agentless, local-first VPS control plane in Tauri and Rust

https://github.com/shihebamrii/vessel
2•shihebamrii•11m ago•0 comments

Zuckerberg's Increasingly Bizarre War on Whistleblowers

https://pluralistic.net/2026/06/27/zuckerstreisand-2/
4•HotGarbage•15m ago•0 comments

Show HN: Proton a Pure go, no CGO GUI library for building applications

https://protonlib.pages.dev/
2•CzaxTanmay•15m ago•0 comments

Corv: An SSH client for AI agents (and humans)

https://github.com/khalid-src/corv-client
2•khalid_0002•15m ago•1 comments

Show HN: Looking for help finishing up my privacy focused web scrapper

https://github.com/bilbywilby/god_stack
2•EddieMunsterrr•16m ago•0 comments

AI Anxiety Is Fueling Burnout Across Silicon Valley's Tech Workers

https://www.bloomberg.com/news/articles/2026-06-26/ai-anxiety-is-fueling-burnout-across-silicon-v...
4•littlexsparkee•17m ago•1 comments

Completion Rate Is a Vanity Metric

https://www.formaly.io/blog/completion-rate-is-a-vanity-metric
2•Arindam1729•17m ago•0 comments

Logical Physical Clocks and Consistent Snapshots in Globally Distributed DB [pdf]

https://cse.buffalo.edu/tech-reports/2014-04.pdf
2•teleforce•18m ago•0 comments

Show HN: The stock research terminal that remembers

https://finqos.com
2•marmmaz•21m ago•0 comments

Data Privacy while using API tools

3•11shyam11•22m ago•1 comments

Anonymous GitHub account mass-dropping undisclosed 0-days

https://github.com/bikini/exploitarium
7•binyu•22m ago•0 comments

Miglite – raw SQL migrations for Go projects

https://inhere.github.io/en/blog/2026/gookit-miglite-intro/
2•jxia•23m ago•0 comments

Why Germany's Deutsche Bahn will face delays for many years

https://www.dw.com/en/why-germanys-deutsche-bahn-will-face-delays-for-many-years/a-77721079
2•rustoo•25m ago•1 comments

Permissive vs. Copyleft Open Source

https://shazow.net/posts/permissive-vs-copyleft/
2•vortex_ape•27m ago•0 comments

We Can Fly

https://silvestro2026.substack.com/p/we-can-fly
3•silvestromedia•28m ago•0 comments

Post-Mythos Cybersecurity: Keep calm and carry on

https://cephalosec.com/blog/cybersecurity-in-the-post-mythos-era-keep-calm-and-carry-on/
10•Versipelle•29m ago•2 comments

We refactored half the business to fix a janky script

https://swizec.com/blog/code-is-the-easy-part-or-how-we-refactored-half-the-business-to-fix-a-jan...
2•mooreds•29m ago•0 comments

The Bottleneck Strikes Again

https://cutlefish.substack.com/p/tbm-427-the-bottleneck-strike-again
2•mooreds•30m ago•0 comments

Autonomous AI Software Development: Good Idea, or Bad Idea?

https://adrianavillela.com/post/the-great-autonomous-ai-experiment/
3•mooreds•31m 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/