frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

1•hritik7742•22s ago

'Just a hobby, won't be big': Linus Torvalds introduced Linux 35 years ago

https://www.zdnet.com/article/just-a-hobby-linus-torvalds-introduced-linux-35-years-ago-almost-ca...
1•CrankyBear•2m ago•0 comments

Pushing the Limits of Serving DeepSeek-V4-Pro

https://www.lmsys.org/blog/2026-08-19-deepseek-v4-pro-engine-optimization-h20/
1•vzhou842•2m ago•0 comments

I Put 8.8B Tokens on My CV

https://victorantos.com/posts/i-put-8-billion-tokens-on-my-cv/
1•victorbuilds•4m ago•0 comments

One-handed clock – hyperbolic-map

https://jpivarski.github.io/hyperbolic-map/clock.html
1•ColinWright•4m ago•0 comments

The actually useful SaaS Agents no one is building

https://pulkitsharma.substack.com/p/the-actually-useful-saas-agents-no
1•pulkitsh1234•5m ago•0 comments

Show HN: Slab – minimal iOS stacking game I built while learning to code

https://apps.apple.com/us/app/slab-zen-stack/id6790939204
1•monetizedev•5m ago•0 comments

Bid City 2000

https://bidcity2000.lol/
1•levibrks•5m ago•0 comments

DOJ prosecutes single FOIA dodger while defending systemwide evasion

https://freedom.press/the-classifieds/doj-prosecutes-single-foia-dodger-while-defending-systemwid...
1•hn_acker•6m ago•0 comments

Canadian content on streaming platforms became a trade issue with the U.S.

https://www.cbc.ca/news/entertainment/canadian-content-streaming-trade-9.7318798
1•716dpl•6m ago•0 comments

Offshore wind projects along the East Coast are flailing

https://grist.org/business/offshore-wind-projects-east-coast-electric-grids/
1•speckx•10m ago•0 comments

ArcBrush 1.6: Native Node-Based Image Editor (Windows, Mac, & Linux)

https://arcbrush.com/press/arcbrush-1-6/
1•albiabia•11m ago•0 comments

A Manifesto for Responsible Agentic Coding

https://www.techwerkers.nl/en/posts/manifesto-responsible-agentic-coding/
1•lowbar•13m ago•1 comments

Don't Make Fun of Renowned Dan Brown

https://onehundredpages.wordpress.com/2013/06/12/dont-make-fun-of-renowned-dan-brown/
1•barry-cotter•13m ago•0 comments

Ryoku – Arch and Hyprland Omarchy Alternative

https://ryoku.dev/
2•grepex•15m ago•0 comments

The largest camera has taken its most mind-blowing images yet

https://www.sciencefocus.com/space/vera-c-rubins-first-year-of-cosmic-discoveries
1•dylan604•16m ago•1 comments

Run OpenBSD on DigitalOcean for $4/month

https://nil.wallyjones.com/run-openbsd-on-digitalocean-for-4month/
2•speckx•18m ago•0 comments

An MCP 2026-07-28 Server from Scratch

https://data4sci.com/blog/an-mcp-server-from-scratch
1•Anon84•18m ago•0 comments

Back to the Future: Hypertext the Way It Used to Be

https://www.xanadu.net/XanaduSpace/btf.htm
2•GaryBluto•20m ago•0 comments

HotChips 2026 Samsung LPDDR5X-PIM (processing-in-memory)

https://www.servethehome.com/samsung-lpddr5x-pim-at-hot-chips-2026/
2•cmrdporcupine•20m ago•1 comments

Robot Autodocking for Stretch 4

https://binitshah.github.io/blog/stretch-4-autodocking/
1•bshah_•22m ago•0 comments

Anatomy of a credit card rewards program (2024)

https://www.bitsaboutmoney.com/archive/anatomy-of-credit-card-rewards-programs/
1•simonebrunozzi•25m ago•0 comments

Software Firms Deploy Bluster and Buybacks to Counter AI Fears

https://www.bloomberg.com/news/articles/2026-08-21/salesforce-servicenow-fight-ai-fears-with-buyb...
1•toomuchtodo•27m ago•1 comments

Lightweight system monitor for Linux VPS written in Go

https://github.com/leodeim/vpsmon
4•ygagaga•27m ago•0 comments

Faithful, Reproducible, Wrong: Lessons from 900 Data-Agent Runs

https://xorq.dev/blog/faithful-reproducible-wrong/
1•mousematrix•28m ago•0 comments

Nvidia's Groq 3 LPX accelerator enters full production at 3,500 tokens/SEC

https://siliconangle.com/2026/08/24/nvidias-dedicated-inference-accelerator-groq-3-lpx-enters-ful...
1•metadat•28m ago•0 comments

AI/LLM Usage Becoming a "Denial of Service Attack" on Open-Source Maintainers

https://www.phoronix.com/news/AI-DoS-Attack-Maintainers
2•speckx•28m ago•0 comments

QEMU: Single reporter filed over 125 separate bug reports in under 10 minutes

https://hachyderm.io/@berrange/117155755806497654
3•e2le•29m ago•0 comments

Running a Java Spring Boot app on a 512 MB VPS with lightweight monitoring

https://pvrlabs.xyz/articles/spring-boot-512mb-vps.html
1•birdculture•29m ago•0 comments

Project SuperDex

https://projectsuperdex.com/
1•saucesaft•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/