dstoc
dstoc.dev
dstoc
@dstoc.dev
I used to work on Chrome, these days I'm a rust hacker, llm whisperer and wannabe gamedev.
Updated evals-pwa support for the Prompt API in Chrome. Here's an example that you can run directly in the browser with no other setup. #builtinai #promptapi
evals.tbuckley.com
September 12, 2025 at 1:12 AM
It's perhaps not surprising, but still curious, that when given a shell tool, gpt-oss assumes that it can call the apply_patch tool from Codex.
August 29, 2025 at 2:14 AM
Perhaps every dev should build their own cli #agent? I built this: github.com/dstoc/llment pairs best with #gpt-oss in #llama-server, has providers for #ollama, #openai and #gemini too!
August 28, 2025 at 1:30 AM
Made a game for #GMTK2025 - Purrpetual!

dstoc.itch.io/purrpetual

#godot #cats #cat
Purrpetual by dstoc
Cozy cat-wheel simulator
dstoc.itch.io
August 6, 2025 at 12:09 AM
3/3 Follow the sign in steps, then if you can't reach the redirect endpoint from the browser, copy the URL into another shell: `curl 'http://localhost:40733/oauth2callback?...'`
July 2, 2025 at 6:32 AM
2/3 Copy and paste the URL printed when you start the Gemini CLI sign in flow into a browser: `https://accounts.google.com/o/oauth2/v2/auth?redirect_uri=...`
July 2, 2025 at 6:32 AM
If you need to sign into Gemini CLI in a shell without a browser (e.g. in a container):

1/3 Run `gemini -d` (for debug mode, which will print console messages).
July 2, 2025 at 6:32 AM
I participated in Bevy Jam #6! Here's my game: dstoc.itch.io/bevy-jam-6
The Lumina Network by dstoc
Forge electrified pathways in the heart of a mysterious cosmic network
dstoc.itch.io
June 11, 2025 at 4:25 AM
deep-mind.bsky.social is on your list, but looks a bit suspicious.
November 25, 2024 at 11:44 PM
2. Content scripts can't define custom elements <https://issues.chromium.org/issues/41118431>. Best workaround seems to be to inject a script directly into the page.
November 25, 2024 at 2:02 AM
A couple of things I learned:
1. As soon as you publish something, you'll get a bunch of email from shady folk trying to sell "organic" reviews and downloads.
November 25, 2024 at 2:02 AM
I made a Chrome extension that visualizes keypresses and combos. Useful for screencasts and presentations. chromewebstore.google.com/detail/webke...
webkey - Chrome Web Store
Visualizes keys as you press them, for screencast or presentation.
chromewebstore.google.com
November 25, 2024 at 2:01 AM
Is the bsky link facet supported, how do I post one?

docs.bsky.app/docs/advance...
Links, mentions, and rich text | Bluesky
Posts in Bluesky use rich text to handle links, mentions, and other kinds of decorated text.
docs.bsky.app
November 25, 2024 at 1:59 AM
Is it reasonable to apply the same to the callback type?

type OnBar<T = void> = T extends void
? () => void
: (data: T) => void;
November 20, 2024 at 12:52 AM
Conditional types?

```
type Options<T = void> = T extends void
? BaseOptions<void>
: BaseOptions<T> & { data: T };
```
November 19, 2024 at 11:24 PM