Brian Scott

5.2K posts

Brian Scott banner
Brian Scott

Brian Scott

@brainscott

Tweets are my own. Automating everything, AI (cause why not) and Cloudy Operations. Ex-Disney. TechExec, Writer, Inventor & Speaker. See pinned tweet

Burbank, CA เข้าร่วม Nisan 2008
1K กำลังติดตาม2.2K ผู้ติดตาม
Brian Scott
Brian Scott@brainscott·
Found the photo when I launched MySpace Instant Messaging!
Brian Scott tweet media
English
0
0
3
108
Brian Scott รีทวีตแล้ว
Mitchell Hashimoto
Mitchell Hashimoto@mitchellh·
Libghostty now fully exposes the Kitty Graphics Protocol. This may be the first native embeddable terminal to support this. I added a full Kitty graphics renderer to Ghostling (the libghostty demo project) in ~270 LoC. Ghostling PR: github.com/ghostty-org/gh… Ghostty GUI has supported Kitty graphics since version 1.0 and I believe we have one of the most comprehensive Kitty graphics protocol implementations besides Kitty itself. For example, we support unicode placeholders which lets the protocol work in tmux, which is -- I think -- only supported by Ghostty besides Kitty. Now this robust, real world proven implementation is available to anyone embedding Ghostty. Enable it with a few lines of code and build a renderer with a couple hundred as shown in Ghostling. Amazing.
English
17
60
929
50.5K
Jesse Samuel
Jesse Samuel@jwsaml·
Has anyone fully replaced OpenClaw with their Claude setup?
Jesse Samuel tweet mediaJesse Samuel tweet media
English
62
0
39
7.2K
NOVA
NOVA@Its_Nova1012·
Do you listen to music while coding or does it depend on the situation?
NOVA tweet media
English
56
3
160
4.9K
Piyush
Piyush@piyush784066·
let's know the laptop you are using, drop the name in the comments
Piyush tweet media
English
38
4
87
2.5K
Brian Scott
Brian Scott@brainscott·
@md_kasif_uddin I think the "Human" still needs to have the foundation. AI still is in its infancy and good known techniques and best practices are still needed. Treat AI as a copilot, not the captain.
English
0
0
0
57
Kasif
Kasif@md_kasif_uddin·
Is coding still worth learning in the Al era?
Kasif tweet media
English
436
43
1.3K
112.2K
Brian Scott
Brian Scott@brainscott·
Looking for a great Markdown editor (library) -- using Rails 8 at the moment. @dhh any suggestions?
English
0
0
0
124
Brian Scott
Brian Scott@brainscott·
@MrHasanabas @callebtc @obsdmd @kepano actually its closed source but its a great product on top of an open format so it being closed doesn't matter. You can use anything to read the data.
English
0
0
2
428
calle
calle@callebtc·
obsidian is closed-source????
calle tweet media
English
84
5
1.4K
156.8K
Brian Scott
Brian Scott@brainscott·
@twtayaan You could already do this a year ago with AI Agents.. SRE's have been using AI for a while to achieve the same outcomes..
English
0
0
0
44
Ayaan 🐧
Ayaan 🐧@twtayaan·
🚨 AWS DevOps Agent is finally here! On March 31, 2026, AWS DevOps Agent became generally available. This is actually a big deal. It can: → Generate CI/CD pipelines → Debug failed deployments → Suggest infrastructure changes → Analyze logs and incidents → Help with Terraform & CloudFormation → Recommend cost optimizations → Explain AWS architecture issues Basically, it’s like having a junior DevOps engineer inside AWS. DevOps is slowly becoming AI-assisted operations. Source: aws.amazon.com/devops-agent/
Ayaan 🐧 tweet media
English
112
512
3.4K
2.2M
Brian Scott
Brian Scott@brainscott·
@ziwenxu_ Or you could just use Claude Code with Channels, it has everything you need to replace OpenClaw..
English
3
0
2
186
Ziwen
Ziwen@ziwenxu_·
Claude Banned OpenClaw OAuth? We Bypassed It. Anthropic killed 3rd-party OAuth for subs today (April 4), shoving everyone onto the expensive API. OpenClaw doesn't care. We're moving downstream. Instead of fighting the OAuth ban, we're piping Claude CLI directly into OpenClaw. Your subscription stays valid, your wallet stays shut, and the agents keep running. The "Bypass" Setup: - Confirm you're signed in on your host: claude auth status - Run this to flip your gateway from the banned API path to the CLI backend: - Bash openclaw models auth login --provider anthropic --method cli --set-default - OpenClaw now calls your local claude binary. It reuses your session IDs and sub limits withoricted OAuth endpoints. - use model claude-cli/opus-4.6 to access it Important note: Anthropic requires Extra Usage instead of included Claude subscription limits for this path. They can ban us but they can't stop us
Ziwen@ziwenxu_

Claude just banned OpenClaw and Hermes. Here's how to swap models and kill Claude MAX Oauth in under 2 mins Set this up NOW before you get locked out

English
126
80
865
253.4K
Brian Scott รีทวีตแล้ว
kepano
kepano@kepano·
New in Obsidian Reader: - Themes and typography settings - Highlighting - Save options Also added a beautiful new reading experience for deeply nested comments on Reddit and Hacker News. Available with Obsidian Web Clipper 1.3 on all browsers.
English
38
72
1.6K
130.3K
kepano
kepano@kepano·
More and more people are using Obsidian as a local wiki to read things your agents are researching and writing. It works best with a separate Obsidian vault that you can fill it with content, e.g. via Obsidian Web Clipper.
Andrej Karpathy@karpathy

LLM Knowledge Bases Something I'm finding very useful recently: using LLMs to build personal knowledge bases for various topics of research interest. In this way, a large fraction of my recent token throughput is going less into manipulating code, and more into manipulating knowledge (stored as markdown and images). The latest LLMs are quite good at it. So: Data ingest: I index source documents (articles, papers, repos, datasets, images, etc.) into a raw/ directory, then I use an LLM to incrementally "compile" a wiki, which is just a collection of .md files in a directory structure. The wiki includes summaries of all the data in raw/, backlinks, and then it categorizes data into concepts, writes articles for them, and links them all. To convert web articles into .md files I like to use the Obsidian Web Clipper extension, and then I also use a hotkey to download all the related images to local so that my LLM can easily reference them. IDE: I use Obsidian as the IDE "frontend" where I can view the raw data, the the compiled wiki, and the derived visualizations. Important to note that the LLM writes and maintains all of the data of the wiki, I rarely touch it directly. I've played with a few Obsidian plugins to render and view data in other ways (e.g. Marp for slides). Q&A: Where things get interesting is that once your wiki is big enough (e.g. mine on some recent research is ~100 articles and ~400K words), you can ask your LLM agent all kinds of complex questions against the wiki, and it will go off, research the answers, etc. I thought I had to reach for fancy RAG, but the LLM has been pretty good about auto-maintaining index files and brief summaries of all the documents and it reads all the important related data fairly easily at this ~small scale. Output: Instead of getting answers in text/terminal, I like to have it render markdown files for me, or slide shows (Marp format), or matplotlib images, all of which I then view again in Obsidian. You can imagine many other visual output formats depending on the query. Often, I end up "filing" the outputs back into the wiki to enhance it for further queries. So my own explorations and queries always "add up" in the knowledge base. Linting: I've run some LLM "health checks" over the wiki to e.g. find inconsistent data, impute missing data (with web searchers), find interesting connections for new article candidates, etc., to incrementally clean up the wiki and enhance its overall data integrity. The LLMs are quite good at suggesting further questions to ask and look into. Extra tools: I find myself developing additional tools to process the data, e.g. I vibe coded a small and naive search engine over the wiki, which I both use directly (in a web ui), but more often I want to hand it off to an LLM via CLI as a tool for larger queries. Further explorations: As the repo grows, the natural desire is to also think about synthetic data generation + finetuning to have your LLM "know" the data in its weights instead of just context windows. TLDR: raw data from a given number of sources is collected, then compiled by an LLM into a .md wiki, then operated on by various CLIs by the LLM to do Q&A and to incrementally enhance the wiki, and all of it viewable in Obsidian. You rarely ever write or edit the wiki manually, it's the domain of the LLM. I think there is room here for an incredible new product instead of a hacky collection of scripts.

English
48
92
2.1K
168K
Brian Scott
Brian Scott@brainscott·
@kepano Wait there are skills from obsidian??
English
1
0
0
200
kepano
kepano@kepano·
The four pieces: 1. Obsidian app 2. Obsidian Web Clipper extension to capture content in .md format 3. Obsidian CLI so agents can interact with the full feature set of the app (e.g. backlinks, bases, etc) 4. Obsidian Skills so agents know how to create .md, .base and .canvas
English
14
18
398
19.5K
Bear - Markdown Notes
Bear - Markdown Notes@BearNotesApp·
You asked for a distraction-free writing environment. We finally built it. Introducing our newest theme “THE Zen Mode”: 🤍 White text on a white background 🖱️ Completely invisible navigation 📎 Auto-transparent images and attachments 0% distraction. 100% focus. Try it now!
Bear - Markdown Notes tweet media
English
4
3
92
7.8K
Brian Scott
Brian Scott@brainscott·
Used Self-Hosted Fizzy from @37signals & @dhh to manage work I assign to my Claude Code Agent. #the-fizzy-side" target="_blank" rel="nofollow noopener">brianlscott.com/blog/fizzy-to-…
English
0
0
1
69
Brian Scott รีทวีตแล้ว
Felix Rieseberg
Felix Rieseberg@felixrieseberg·
Computer Use is now available in Claude Code, too - where it provides Claude with the ability to use your mouse and keyboard. Just like in Cowork, you allow specific apps only and select whether the model should be able to just look or also click & type. To enable it, enter /mcp and turn on computer-use!
English
124
75
1K
140.9K
Brian Scott รีทวีตแล้ว
Boris Cherny
Boris Cherny@bcherny·
I wanted to share a bunch of my favorite hidden and under-utilized features in Claude Code. I'll focus on the ones I use the most. Here goes.
English
553
2.5K
23.1K
3.9M
Brian Scott
Brian Scott@brainscott·
@kepano Thank you and the obsidian team for everything you do for humans @kepano
English
0
0
0
65
kepano
kepano@kepano·
It's part of Obsidian Web Clipper, and doesn't require Obsidian. It runs on all browsers that support extensions, including mobile (Safari and Firefox). obsidian.md/clipper
English
15
27
576
34.3K
kepano
kepano@kepano·
I have been working on Obsidian Reader for a over a year. I didn't want to share it until I felt it was good enough. It's finally there. Consistent formatting for any article. Outline, syntax highlighting, nice footnotes, adjustable typography. Runs locally. Just rules, no AI.
English
178
319
5.5K
343.4K