frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

OBASE: Object-Based Address-Space Engineering to Improve Memory Tiering

https://www.usenix.org/conference/osdi26/presentation/banakar
1•matt_d•36s ago•0 comments

Kalman Filter: The Tour

https://www.staszewski.xyz/blog/kalman-filter/
1•kamilstaszewski•50s ago•0 comments

Bigos (Polish Hunter's Stew) Recipe Builder

https://chefsbinge.com/bigos-recipe-builder/
1•doublepg23•1m ago•0 comments

The em-dash em-beds in Congress

https://arxiv.org/abs/2608.05889
1•jruohonen•1m ago•1 comments

AI-generated vulnerability patches still require expert human review

https://1password.com/blog/why-ai-generated-patches-still-require-human-review
1•jmmv•2m ago•0 comments

$1B of iPhone 18 Pro chips 'awaiting packaging' due to DRAM shortages

https://www.tomshardware.com/pc-components/dram/usd1-billion-of-iphone-18-pro-chips-on-the-shelve...
1•kristianp•4m ago•0 comments

Bacterial supplements may boost female fertility

https://medicalxpress.com/news/2026-08-bacterial-supplements-boost-female-fertility.html
1•OutOfHere•5m ago•0 comments

FDA Approves First Drug to Treat the Full Range of Narcolepsy Type 1 Symptoms

https://www.fda.gov/news-events/press-announcements/fda-approves-first-drug-treat-full-range-narc...
1•OutOfHere•6m ago•0 comments

Framework discloses data breach via Metabase 0-day

https://community.frame.work/t/framework-data-breach-discussion/83939
3•RobinHirst11•11m ago•0 comments

Nikita Bier stepping down from Head of Product on X (previous Twitter)

https://old.reddit.com/r/twitterhelp/comments/1vgkbid/nikita_bier_stepping_down_from_head_of_prod...
1•nomilk•13m ago•1 comments

You Are Not Confused. You Are Being Managed

https://mitchthelawyer.substack.com/p/you-are-not-confused-you-are-being
2•petethomas•13m ago•0 comments

Anthropic CEO reportedly worried new hires only care about money

https://finance.yahoo.com/technology/ai/articles/anthropic-ceo-reportedly-worried-hires-160000647...
4•frays•13m ago•0 comments

German Exit Tax Calculator

https://eidel.io/tools/german-exit-tax-calculator
1•olieidel•14m ago•0 comments

Proving you are AI, not just automated

https://blix.town/proof-of-agent
1•positronico•15m ago•0 comments

Domain-specific hyperspecialization: Winning the SC26 SAT track with LymphoSAT

https://c.mov/lymphosat/
1•matt_d•17m ago•0 comments

Team Documentation (GDrive vs. Markdown)

1•itstomo•18m ago•0 comments

Show HN: Clipboard Sync – Share a clipboard, mouse and keyboard on your LAN

https://clipboardsync.fuzhuo.me
1•droidfu•21m ago•0 comments

Nikita Bier steps back after 400 days; Zuckerberg and Bosworth keep shipping

https://runtimewire.com/article/nikita-bier-steps-back-after-400-days-zuckerberg-and-bosworth-kee...
1•ryanmerket•22m ago•0 comments

Financial Times: How Intel came back from the brink

https://d2pmk9g6g9k18j.archive.ph/
1•osnium123•29m ago•0 comments

Steven Pinker on How Common Knowledge Builds and Weakens Societies

https://www.persuasion.community/p/steven-pinker-common-knowledge
1•andsoitis•32m ago•0 comments

Slap ROM Patcher

https://nyuu.page/projects/slap/
1•apsec112•34m ago•0 comments

Cloudflare OS – Build the AI operating system for your company

https://os.cloudflare.app
1•ms7892•39m ago•0 comments

Ford's new EV truck Fathom to be priced starting at about $28,000

https://www.reuters.com/business/autos-transportation/fords-new-ev-truck-fathom-be-priced-startin...
2•alephnerd•42m ago•0 comments

ByteDance aims to rival Anthropic with new model reaching up to 10T parameters

https://www.ft.com/content/9b8383b1-a28d-4940-8c4e-2f0cd21556ef
1•mfiguiere•47m ago•0 comments

The Art of the Bromakase

https://yellowbellytv.substack.com/p/the-art-of-the-bromakase
1•zdc1•51m ago•0 comments

Show HN: Prompting Tool to Help Increase Output Results on First Prompt

https://www.promptme.host/
2•markquis91•58m ago•1 comments

Use the right model for every task – (you can't)

https://blog.grod.es/use-the-right-model-for-every-task
3•grodes•1h ago•0 comments

Benchmarking the Residual: What Long-Horizon Evals Add Beyond Short-Task Perf

https://arxiv.org/abs/2607.27283
1•matt_d•1h ago•0 comments

Why Is Everyone in Tech So Sad?

https://www.noemamag.com/why-is-everyone-in-tech-so-sad/
3•pauljonas•1h ago•2 comments

Constructor Theory – David Deutsch(2012)

https://arxiv.org/abs/1210.7439
2•nill0•1h 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/