Nick Sgobba

429 posts

Nick Sgobba banner
Nick Sgobba

Nick Sgobba

@nicksgobba

AI Product Scientist | 3x Techpreneur | ex-IBM Senior Inventor | Strategic Advisor | International Speaker

Katılım Ağustos 2010
854 Takip Edilen98 Takipçiler
Nick Sgobba retweetledi
ᴅᴀɴɪᴇʟ ᴍɪᴇssʟᴇʀ 🛡️
Claude Code is about to release a feature called /workflows that I think will be extremely significant. Especially for Enterprise AI. I talked about this in 2024 in a post called Companies Are Just Graphs of Algorithms. Basically the idea is that all work is just an algorithm, i.e., a series of steps to accomplish a goal. Skills and Cowork have been heading in this direction already, and we've seen what that's done to company valuations in various spaces. Well this is closer to the final form. It's turning the regular, expected work that's done in companies into pseudo-deterministic workflows that follow defined SOPs. The human role will be determining what problems to solve (taste, expeirence, etc), building new products from that, and then optimizing these workflows from above. But the work itself will be these workflows executed according to SOPs.
ᴅᴀɴɪᴇʟ ᴍɪᴇssʟᴇʀ 🛡️ tweet media
English
212
431
3.1K
321.7K
Nick Sgobba retweetledi
Nick Sgobba retweetledi
Wall St Engine
Wall St Engine@wallstengine·
GOOGLE JUST SHOWED HOW INSANE AI DEMAND HAS GOTTEN Monthly tokens processed across Google surfaces: May 2024: 9.7T May 2025: ~480T May 2026: 3.2Q+ That is 7x Y/Y growth.
Wall St Engine tweet media
English
83
322
2.6K
367.3K
Nick Sgobba retweetledi
Hedgie
Hedgie@HedgieMarkets·
🦔Microsoft canceled its internal Claude Code licenses this week after token-based billing made the cost untenable, even for a company with effectively infinite cloud resources. Uber's CTO sent an internal memo warning the company burned through its entire 2026 AI budget in just four months. American AI software prices have jumped 20% to 37%, and GitHub (owned by Microsoft) is dropping flat-rate plans for usage-based billing across its products. My Take The AI subsidy era is ending in real time. The same company that put $13 billion into OpenAI and built the Azure infrastructure powering most of Anthropic's compute just looked at the bill from a competitor's coding tool and decided it was not worth paying. That is not a productivity failure on Anthropic's end. Token-based pricing is forcing every enterprise customer to confront the actual cost of running these models at scale, and the number turns out to be far higher than the flat-rate experiments suggested. This ties directly to my Gemini Flash post yesterday. Anthropic, OpenAI, and Google all raised effective prices in the last six months. Enterprises that built workflows assuming AI costs would keep falling are now watching annual budgets evaporate in months. Two outcomes look likely from here. Either enterprises scale back AI usage to fit budgets, which slows the revenue ramp the labs need to justify their valuations ahead of IPOs, or the labs cut prices and absorb the losses, which makes the unit economics worse at exactly the wrong moment. Both paths land in the same place, the numbers stop working, and somebody has to take the writedown. Hedgie🤗
Hedgie tweet media
English
1.1K
4K
20K
8.3M
Nick Sgobba
Nick Sgobba@nicksgobba·
Prolonged constraints completely rewire your decision-making. Survival mode operates on a different frequency than growth mode. This is why unsolicited advice from a position of comfort rarely helps... Good advice without shared context is noise... not guidance.
English
0
0
0
3
Nick Sgobba retweetledi
XREAL 👓
XREAL 👓@XREAL_Global·
Get ready for Project Aura, developed in partnership with @Android XR. These wired XR glasses blend the physical and digital worlds like never before. Experiences that live inside the real world. A catalog of differentiated Android XR experiences. Your favorite Android apps from day one. A massive 70° field of view, intuitive hand and voice controls, and with Gemini as your assistant. To deliver the ultimate XR experience, the Android XR Developer Catalyst Program is officially open. Whether you're a consumer ready to see what’s next, or a developer ready to build it, hit the link below to learn more. 👇 xreal.com/aura?utm_sourc… #AndroidDev #AndroidXR #ProjectAura #GoogleIO
XREAL 👓 tweet media
English
46
151
585
79K
Nick Sgobba retweetledi
Yash Bhardwaj
Yash Bhardwaj@ybhrdwj·
I turned sam altman's texts to mira murati into 2011 style emo teenage heathrob anthem🫶
English
114
199
2.9K
278.7K
Nick Sgobba retweetledi
kache
kache@yacineMTB·
you can outsource your thinking but you cannot outsource your understanding
English
276
4.1K
18.3K
2.8M
Nick Sgobba retweetledi
Aaron
Aaron@aaronp613·
Apple accidentally left Claude.md files in today's Apple Support app update (v5.13)
Aaron tweet mediaAaron tweet media
English
284
1K
13.6K
2.6M
Nick Sgobba retweetledi
Years Progress
Years Progress@YearsProgress·
2026 is 33% complete.
Years Progress tweet media
English
52
901
3.2K
190.2K
Nick Sgobba retweetledi
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
Nick Sgobba retweetledi
Patsnap
Patsnap@Patsnap·
Everyone knows GLP-1 drugs are changing medicine. But fewer people are talking about what's actually powering the race behind the scenes. 👩‍🔬 It's called fast-follow innovation. Companies analyze existing molecules, patents, and clinical data, then move quickly to improve on what works. Pfizer's early small-molecule research may have ended, but it sparked a wave of next-generation candidates now driving programs at AstraZeneca, Merck, and Hansoh. Our latest report gives you the full picture. 🔬 Download for free: bit.ly/4dDZFj1 #GLP1 #Ozempic #Innovation #DrugDiscovery #GLP
English
0
1
1
62
Nick Sgobba retweetledi
Brian Roemmele
Brian Roemmele@BrianRoemmele·
“Every software company in the world needs to have a Claw strategy" - Jensen Huang, Nvidia Indeed. This and more.
English
118
617
4.2K
610.9K
Nick Sgobba retweetledi
🚨 AI News | TestingCatalog
🚨 AI News | TestingCatalog@testingcatalog·
BREAKING 🚨: Exclusive look at a future agentic design tool from Google. It feels like it has been designed as a VR workspace with voice controls and a new agent widget. Stitching… What's coming: - A new "wide" canvas layout - 🔥 Voice Live Mode - 🔥 Voice selector with 8 different options: Puck, Charon, Kore, Fenrir, Autonoe, Leda, Orus, Zephyr - 🔥 A new Agent widget instead of the old sidebar - A new Design system selector with presets - 🔥 New Studio section with loads of generations, like Marketing kit and developer handoff - 🔥 Stitch React prototype - a fully functional React app based on generated screens - Instant prototype - an editable prototype that links generated screens, allowing users to navigate between them - 🔥 A new "Imagine new screen" option for Instant Prototypes - Figma linking - Loads of smaller tweaks The design-to-production flow will shorten drastically. The line between design and development will fade away.
English
22
76
752
113.9K
Nick Sgobba retweetledi
Codie Sanchez
Codie Sanchez@Codie_Sanchez·
“Learn to code," they said. Meanwhile, the electrician is billing $180/hour and booked out 3 weeks.
English
581
2.1K
47.2K
7.1M
Nick Sgobba retweetledi
mrinank
mrinank@MrinankSharma·
Today is my last day at Anthropic. I resigned. Here is the letter I shared with my colleagues, explaining my decision.
mrinank tweet mediamrinank tweet media
English
2.5K
5.1K
35.9K
15.1M
Nick Sgobba retweetledi
NotebookLM
NotebookLM@NotebookLM·
Because you wouldn’t let it slide… these are rolling out today for our most requested feature: Prompt-Based Revisions: Tweak, tailor, and tune your slides just by prompting the revisions you want PPTX Support: You can now export your Slide Decks (Google Slides coming next!)
English
442
1.6K
11.9K
3.7M
Nick Sgobba retweetledi
Lior Alexander
Lior Alexander@LiorOnAI·
Ilya Sutskever (OpenAI cofounder) top 30 must-read research papers. "If you really learn all of these, you’ll know 90% of what matters today"
Lior Alexander tweet media
English
43
375
3.2K
151.7K
Nick Sgobba retweetledi
Years Progress
Years Progress@YearsProgress·
2026 is 10% complete.
Years Progress tweet media
English
98
934
4.3K
228.3K
Nick Sgobba retweetledi
The SEO Guy
The SEO Guy@theseoguy_·
I think about this SEO legend every day
The SEO Guy tweet media
English
149
2.5K
40.9K
890K