frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Support queue is a documentation audit

https://www.knowledgeowl.com/blog/posts/support-queue-as-docs-audit
1•eigenBasis•1m ago•0 comments

ATS Job API Reference: nine applicant tracking systems, verified live

https://conorscode.github.io/ats-api-reference/
1•Wevegotscrapys•2m ago•0 comments

Is M365 Copilot sending some prompts to Anthropic?

https://thatrobot.ai/claude-residency-gap-m365-copilot/
1•soundworlds•3m ago•0 comments

We spend $45,000 on doing more weird every month

https://posthog.com/blog/on-doing-more-weird
1•herbertl•3m ago•0 comments

4 Fundamental constants reveal minimum scales where physics ends: Planck scale

https://www.youtube.com/watch?v=IPnmssrwGcg
1•lioeters•4m ago•0 comments

What I think about when I edit blog posts

https://ianv.substack.com/p/what-i-think-about-when-i-edit-blog
1•herbertl•5m ago•0 comments

Generalized Consensus: An Alternate Approach to Distributed Durability (2025)

https://multigres.com/blog/generalized-consensus
1•zX41ZdbW•6m ago•0 comments

OpenAI gives first detailed debrief of the Hugging Face incident at Black Hat

https://www.groundlevel-ai.com/p/openai-gives-first-detailed-debrief
2•josephwegner•10m ago•1 comments

Proposing a new lower bound for n=17 square packing problem

https://twitter.com/samb_tech/status/2085158495569977636
2•sam-bee•15m ago•1 comments

The Planck Scale with Countable Measure for All Quantities of Length and Time

https://vixra.org/abs/2212.0215
1•lioeters•17m ago•0 comments

The Mentor: How Roy Cohn Taught Donald Trump Everything

https://www.newyorker.com/magazine/2026/08/10/roy-cohn-profile
2•petethomas•19m ago•0 comments

Show HN: Clank Cut – Let your coding agent make video walkthroughs

https://www.clankcut.com
1•hamzers•19m ago•0 comments

TechCrunch Launch: Outernet turns your scrolling into IRL adventuring

https://techcrunch.com/2026/08/03/outernet-turns-your-saved-posts-into-real-world-adventures/
2•rawandferal•20m ago•0 comments

Prime Agent a general-purpose coding harness. On ARC-AGI-3 scored 95.5%

https://x.com/PrimeIntellect/thread/2085087002769379520
2•mromanuk•24m ago•0 comments

Relativistic Algebra over Finite Ring Continuum

https://doi.org/10.3390/axioms14080636
2•lioeters•24m ago•0 comments

How to build an agent to automate your on-call

https://12gramsofcarbon.com/p/agentics-how-we-use-background-agents
1•theahura•25m ago•0 comments

Symbolics Genera now available free for non-commercial use (inv-only early beta)

https://hachyderm.io/@gmpalter/117044268951603975
2•self•25m ago•0 comments

Dspy.Flex lets optimizers rewrite the code for faster, cheaper, better programs

https://www.cmpnd.ai/blog/let-the-model-write-the-code.html
1•dbreunig•25m ago•0 comments

The Orange Cloud Report – Ratings for Cloudflare Services

https://orangecloud.report/
2•gurjeet•29m ago•0 comments

Three Times I Measured Nothing

https://medium.com/@alanscottencinas/three-times-i-measured-nothing-72023fc7d73f
2•encinas88•30m ago•0 comments

Liberals Are Now Fighting a Two-Front War

https://www.theatlantic.com/ideas/2026/08/michigan-abdul-el-sayed-election/688181/
3•donsupreme•30m ago•2 comments

Why Are Birthrates Down? Two New Studies Point to Phones

https://www.nytimes.com/2026/06/08/us/iphone-birthrate-decline-studies.html
1•hsuduebc2•32m ago•1 comments

Rendering 100k sensor readings with LTTB

https://aranajhonny.github.io/writing/sensor-chart-lttb.html
1•akatsutki•33m ago•0 comments

The Live Shopping App Where Some People Bid Until They're Broke

https://www.wsj.com/business/retail/whatnot-live-shopping-app-48b67987
2•JumpCrisscross•34m ago•0 comments

DHS Wants Protesters' Signal Group Chats

https://www.wired.com/story/dhs-wants-protesters-signal-group-chats/
14•sbulaev•35m ago•1 comments

WaitPerk: sponsors in your Claude Code status line, you get paid

https://waitperk.com/
1•SamPentz•39m ago•0 comments

Apple Vision Pro as a wearable display for endoscopic [surgical procedure]

https://www.sciencedirect.com/science/article/pii/S2950253526000651
2•mch82•39m ago•0 comments

Semantic Thermodynamics – 79% LLM token reduction via narrative constraints

https://github.com/tauansloboda/semantic-thermodynamics
2•tauanvinicius•41m ago•0 comments

Synthetic Aperture Radar (SAR) Imaging Using the MIT Laptop Based Radar (2011)

https://ocw.mit.edu/courses/res-ll-003-build-a-small-radar-system-capable-of-sensing-range-dopple...
1•joebig•42m ago•0 comments

Getting Started with Muse Code: CLI Commands, Syntax and Purpose

https://qainsights.com/getting-started-with-muse-code-cli-commands-syntax-and-purpose/
1•qainsights•44m 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/