Sean Tierney

4.5K posts

Sean Tierney banner
Sean Tierney

Sean Tierney

@scrollinondubs

🎓Teach at https://t.co/Dj1j4qZu4v ✏️Blog at https://t.co/bU6ak7HQT5 💰Investor at https://t.co/PFVx4gRcDd "Get busy livin' or get busy dyin'" -Andy Dufresne

Lisbon, Portugal Katılım Kasım 2007
295 Takip Edilen1.1K Takipçiler
John Karp - @NFCsummit mode until June 4/6
What does an art event look like when it’s born from internet culture? We’ve been testing that question for years Still unfinished. Good.
English
11
4
80
1.8K
Sean Tierney
Sean Tierney@scrollinondubs·
Yeah exactly. It’s this -> behalf.bot and yes I’m using it for the use cases you describe (morning briefing, customer service, onboarding, community digest across groups). It’s also handling complex customer installs, tracking my macros/workouts, running my dating profiles, quizzing me on book content… uses SiYuan as 2nd brain for long-term persistence. Email is just one channel it has (also in Discord, Slack, Telegram, WhatsApp). Learn more at link
English
0
0
1
25
afonsocrg
afonsocrg@afonsocrg·
@mick__net @scrollinondubs just shipped Behalf Bot. A bot that acts on your behalf. I think it’s a bit similar to what you’re saying :))
English
1
0
1
32
Mick.net - Saas 💻 & Aviation ✈️
Hope agentic email will soon make it easier to handle things like: customer emails, accounting/invoices, AI email morning briefing. Saw this repo too. Hope agentic email will be used for good and not for shitty spam purposes Authenticated email gateway for AI agents — SPF/DKIM verified inbound, HMAC-signed delivery, webhook + WebSocket fan-out, CLI + SDKs github.com/Mnexa-AI/e2a
English
2
0
2
85
Sean Tierney
Sean Tierney@scrollinondubs·
What if the proliferation of tons of bespoke applications built by people at the edges with high degree of domain expertise and low degree of software engineering proficiency actually leads to the next golden era for software devs? I explore this question in my latest substack here: scrollinondubs.substack.com/p/what-the-nay…
English
0
0
0
25
Sean Tierney
Sean Tierney@scrollinondubs·
What if all the naysayers who are proclaiming that vibe coding is destroying the software profession have it wrong?
Sean Tierney tweet media
English
1
0
1
29
Sean Tierney
Sean Tierney@scrollinondubs·
So @MJ_C12 and I built a thing yesterday at AgentsDay: a single MCP that lets you (or your agent) analyze a webpage, scan the top three prediction markets and returns any positive EV bets related to the content of the webpage. MIT open source. Built on @Cloudflare link below.
Sean Tierney tweet media
English
1
1
3
136
Sean Tierney
Sean Tierney@scrollinondubs·
You can now attend "Build School" remotely! Our next cohort starts on May 4th. We help non-technical founders and displaced employees to create their dream app without knowing how to code.
Sean Tierney tweet media
English
1
0
0
29
Sean Tierney
Sean Tierney@scrollinondubs·
@karpathy says stop shipping apps. Ship blueprints. Let the user's agent build their own version. Basically software distribution is becoming less like cloning and more like sexual reproduction.
Sean Tierney tweet media
English
1
0
0
25
Sean Tierney
Sean Tierney@scrollinondubs·
@JesperBylund All good. There should be a recording available on the event page tomorrow. These are always free for attendees and €15 for non-attendees
English
0
0
1
7
Jesper Bylund -- just/acc
Jesper Bylund -- just/acc@JesperBylund·
@scrollinondubs Super sad to have to cancel on the event tonight, was hoping to get your thoughts on how to use claude as a claw. Looking forward to more ai talks!
English
1
0
0
59
Sean Tierney
Sean Tierney@scrollinondubs·
knowledge base idea is essentially@fortelabs “Second Brain” system piloted by the LLM... exposing it as an idea open to interpretation vs code is a cool way to distribute software. One’s agent can consume your recipe and instantiate a sensible variant adapted based on unique goals/constraints/resources. Blurs the line of what software even is…
English
0
0
0
449
Andrej Karpathy
Andrej Karpathy@karpathy·
Wow, this tweet went very viral! I wanted share a possibly slightly improved version of the tweet in an "idea file". The idea of the idea file is that in this era of LLM agents, there is less of a point/need of sharing the specific code/app, you just share the idea, then the other person's agent customizes & builds it for your specific needs. So here's the idea in a gist format: gist.github.com/karpathy/442a6… You can give this to your agent and it can build you your own LLM wiki and guide you on how to use it etc. It's intentionally kept a little bit abstract/vague because there are so many directions to take this in. And ofc, people can adjust the idea or contribute their own in the Discussion which is cool.
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
1.1K
2.8K
26.7K
7.1M
Sean Tierney
Sean Tierney@scrollinondubs·
Anthropic lays the smack down on Open Claw users open.substack.com/pub/scrollinon… Here's how to keep an Opus-powered, subscription-based autonomous agent running legally per their TOS.
Sean Tierney tweet media
English
0
0
1
53
Sean Tierney retweetledi
Patrick Arbuthnott
Patrick Arbuthnott@parbuthnott·
Loved hosting @scrollinondubs at @LBS the other day to lead a workshop on Claude Code. Packed house, enormous appetite for students for this sort of practical content.
Patrick Arbuthnott tweet mediaPatrick Arbuthnott tweet mediaPatrick Arbuthnott tweet media
English
0
1
2
65
Sean Tierney
Sean Tierney@scrollinondubs·
@claudeai I'm current with my bill but your app is locking me out reporting that my invoice is past due. I've tried to resolve this via your support chat however it closes the conversation each time with this "card declined" misguided snippet. It's impossible to reach a human to get this resolved. You already have my money but the service is not working. Please fix.
Sean Tierney tweet media
English
1
0
0
46
Sean Tierney
Sean Tierney@scrollinondubs·
Good to know. I’ve asked it 3 times to escalate to a human and each time it indicates that it’s about to do so only to then close the conversation automatically with some boilerplate reponse to a “card declined” error (which is not my issue). Will keep trying other chats and report if I figure out how to get a case number
English
1
0
1
16
Cory Pleasance
Cory Pleasance@CoryPleasance·
@scrollinondubs @claudeai I have the same issue. Even the invoice page says I have paid. The customer support options are pretty limited. You have to tell the bot to "escalate to a human". That was the only way I got a case number.
English
1
0
0
28
Sean Tierney retweetledi
MJ
MJ@MJ_C12·
@scrollinondubs Claude-pilling the startup scene in Lisboa 🤖🇵🇹
MJ tweet media
English
0
1
3
54