frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Scheduling jobs across Slurm clusters (and K8s, and cloud) from one place

https://skypilot.ai/blog/multi-slurm
1•alex000kim•35s ago•0 comments

Fenix Flexin Admits He Used AI for "Rubberz"

https://stereogum.com/2507554/fenix-flexin-finally-admits-he-used-ai-for-rubberz/news
1•jenthoven•1m ago•0 comments

Show HN: I scored my Kalshi bot with Brier score. It was worse than guessing

https://predictandprofit.io
1•stfarm•2m ago•0 comments

Music Speed Changer Web App

https://app.musicspeedchanger.com/
1•EvansFunTime•3m ago•0 comments

A Goodbye from SvelteJobs

https://sveltejobs.com/
3•Leftium•4m ago•0 comments

I Audited My Trading Bot and Found It Had No Skill (Brier 0.2858 vs. 0.2439)

https://stfarm.substack.com/p/i-audited-my-own-trading-bot-and
1•stfarm•5m ago•0 comments

Coderbyte Coding Assessment Questions: What Candidates Should Expect

https://prachub.com/resources/coderbyte-coding-assessment-questions-what-candidates-should-expect
2•nian2326076•7m ago•0 comments

McDonald's Built a 515-Page Dossier on Me. It Says I'll Never Stop Eating There

https://www.wired.com/story/mcdonalds-built-a-515-page-dossier-on-me-it-says-ill-never-leave/
3•CGMthrowaway•7m ago•0 comments

NYC's wealthiest neighborhood has zero Flock cameras

https://maps.deflock.org/
3•CGMthrowaway•7m ago•1 comments

Palantir Decomposition Interview Guide: How to Structure Ambiguous Problems

https://prachub.com/resources/palantir-decomposition-interview-guide-how-to-structure-ambiguous-p...
2•nian2326076•8m ago•0 comments

The deep history behind the Road to Nowhere inside the Great Smoky Mountains

https://www.wunc.org/environment/2026-08-10/road-to-nowhere-great-smoky-mountains
2•yareally•11m ago•0 comments

Show HN: Ballet – Workflow automation that writes integrations against any API

https://www.ballet.dev/
5•danielkimber•11m ago•0 comments

Saber Interactive Denies Replacing Lead Writer with ChatGPT, CEO Responds

https://thisweekinvideogames.com/news/saber-interactive-acknowledges-undisclosed-genai-use-in-rid...
4•ceejayoz•14m ago•1 comments

Use Dreams to create memories your AI agent can access

https://davenporter.substack.com/p/give-an-agent-access-to-memories
3•davenportjw•16m ago•0 comments

Happy 45th Birthday to the IBM PC and Model F/XT

https://sharktastica.co.uk/articles/pc-fxt-45
3•tart-lemonade•22m ago•0 comments

SIMD in the 90s: Programming Intel's Pentium MMX

https://pikuma.com/blog/programming-intel-pentium-mmx-simd
2•atan2•24m ago•0 comments

Show HN: GreenTree – Cache test results by Git tree, not commit SHA

https://github.com/Reachpad/greentree
4•officezage•25m ago•0 comments

Context Bombs: stopping AI attackers in their tracks

https://agentic.tracebit.com/context-bombs/
2•decimalenough•26m ago•0 comments

What's New in Flutter 3.47

https://flutter.dev/blog/whats-new-in-flutter-3-47
2•gumby271•27m ago•0 comments

The Asset with No Line Item

https://medium.com/@alanscottencinas/the-asset-with-no-line-item-f17d0e657ea4
3•encinas88•29m ago•1 comments

Build Wide, Ship Narrow

https://adapt.com/blog/build-wide-ship-narrow
4•ashumz•29m ago•0 comments

The Wrong Defaults is why enterprise AI agents fail at adoption

https://imphan.substack.com/p/the-wrong-defaults-an-ai-agent-manifesto
4•pltc•31m ago•1 comments

Leeching Free Compute from Corporate Chatbots

https://www.youtube.com/watch?v=zYnoQxOZQ44
4•htk•32m ago•0 comments

Show HN: ponzy.io, a online multiplayer trading game in the browser

https://ponzy.io
2•ponzy_io•35m ago•0 comments

Pentagon missile buildup changing the factory floor

https://spacenews.com/pentagon-missile-buildup-changing-the-factory-floor/
3•defrost•36m ago•0 comments

Not Ready for Prime Time: The Current State of Legal Ethics and AI

https://www.techdirt.com/2026/08/12/not-ready-for-prime-time-the-current-state-of-legal-ethics-an...
3•hn_acker•37m ago•0 comments

White House Lifts Ban on TikTok from US Government Devices

https://www.bloomberg.com/news/articles/2026-08-11/white-house-lifts-ban-on-tiktok-from-us-govern...
2•mfiguiere•37m ago•0 comments

Apple Leasing Program

https://www.apple.com/shop/apple-upgrade
5•MehrdadKhnzd•37m ago•0 comments

White House Authorizes Private U.S. Companies to Hack Foreign Cybercrime Groups

https://www.whitehouse.gov/presidential-actions/2026/08/expanding-capabilities-to-combat-transnat...
7•iamronaldo•43m ago•1 comments

Cursor Design Mode

https://cursor.com/blog/design-mode
2•indigodaddy•43m 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/