Now at Santander AI Lab. GDE for Cloud and ML Machine Learning Spain Meetup Co-author La pastilla Roja

Joined March 2007
1,188 Photos and videos
juantomas (mAGIa is coming ) retweeted
Woha
The US government, citing national security authorities, has issued an export control directive to suspend all access to Fable 5 and Mythos 5 by any foreign national, whether inside or outside the United States, including foreign national Anthropic employees. The net effect of this order is that we must abruptly disable Fable 5 and Mythos 5 for all our customers to ensure compliance. Access to all other Claude models is not affected. We apologize for this disruption to our customers. We believe this is a misunderstanding and are working to restore access as soon as possible. Read our full statement: anthropic.com/news/fable-myt…
1
1
168
juantomas (mAGIa is coming ) retweeted
He ido a las portadas de los medios generalistas españoles a buscar cómo se estaba tratando el embargo a los modelos de Anthropic y el papel de Europa. Parece que el asunto no ha pasado el corte editorial. Debemos de estar ocupados con cosas más importantes.
26
95
331
52,312
juantomas (mAGIa is coming ) retweeted
This is really big news. Google introduced the Open Knowledge Format (OKF) - a standardized way to store information in a directory of markdown files. Makes it really easy to make a digital brain that agents can use. These files can serve as a living wiki. You can give agents the ability to query them or edit them. They can interlink. Seems to me this could replace Notion or Obsidian. I can think of so many uses for this. Google's blog post: cloud.google.com/blog/produc… An easier to understand explanation is the SPEC.md file: github.com/GoogleCloudPlatfo… I gave those two links to Antigravity and asked how we could use it for any of the projects we're working on. It came up with so many ideas. I would imagine Claude Fable 5 would whip up some pretty amazing things based on this system. Currently creating an OKF library of our pepper garden. It's going to be a fun weekend.
164
800
6,577
935,675
juantomas (mAGIa is coming ) retweeted
GBrain just shipped v0.40.0 gives your OpenClaw/Hermes Agent GBrain a voice agent. It's based on Gemini Live. (Thanks @demishassabis it's amazing) Large context, great tool use, full brain access. Mars is a friend, Venus is your EA. My open source gift to you.
77
72
968
135,269
100% compañero!!
Microsoft cancelando licencias de Claude Code, Uber ha gastado en 4 meses el presupuesto de IA de todo el año. Los precios de IA subiendo hasta un 40%... Muchas empresas adoptaron IA pensando que los costes seguirían bajado pero ha pasado lo contrario. Los números no cuadran y alguien tendrá que asumir las pérdidas... Creo que los modelos locales van a asumir más protagonismo.
4
446
juantomas (mAGIa is coming ) retweeted
Microsoft cancelando licencias de Claude Code, Uber ha gastado en 4 meses el presupuesto de IA de todo el año. Los precios de IA subiendo hasta un 40%... Muchas empresas adoptaron IA pensando que los costes seguirían bajado pero ha pasado lo contrario. Los números no cuadran y alguien tendrá que asumir las pérdidas... Creo que los modelos locales van a asumir más protagonismo.
🦔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🤗
133
573
4,575
797,770
juantomas (mAGIa is coming ) retweeted
Personal update: I've joined Anthropic. I think the next few years at the frontier of LLMs will be especially formative. I am very excited to join the team here and get back to R&D. I remain deeply passionate about education and plan to resume my work on it in time.
7,989
11,150
150,230
27,568,218
juantomas (mAGIa is coming ) retweeted

47
97
793
239,273
juantomas (mAGIa is coming ) retweeted
Replying to @disco_elyzard
Here’s the prompt: Create a single page html that documents workflows between packages and components in the app. Have all the components/packages on the page and I can click on different actions like "Invite new user" or "todesktop build" or {insert other flows here} and then it will highlight the flow between the packages and annotate how things are passed between each package to complete the action. This should be driven from a JSON document which documents all the flows. Does that make sense? Any questions?
17
32
684
29,012
juantomas (mAGIa is coming ) retweeted
May 10
Neural Network Visualization
41
637
5,423
625,997
juantomas (mAGIa is coming ) retweeted
Replying to @addyosmani
Inspired by your post on agent harness engineering!
1
1
15
5,136
juantomas (mAGIa is coming ) retweeted
Replying to @FredKSchott
This is super well done, Fred!
1
1
14
5,759
juantomas (mAGIa is coming ) retweeted

85
488
3,368
841,353
juantomas (mAGIa is coming ) retweeted
Chinese researchers have developed the best shortest-path algorithm in 41 years! Dijkstra’s Algorithm has been the undefeated king of the shortest path for over 40 years. Whether you’re using Google Maps, booking a flight, or routing internet packets, Dijkstra is the engine running in the background. Since 1984, textbooks have taught that its efficiency was hit by a "sorting barrier." To find the shortest path, you have to sort the points by distance. And sorting has a mathematical floor you can’t cross. Until now. A research team from Tsinghua University just published a paper that shatters the 41-year-old record. They proved that Dijkstra is not optimal. By combining the logic of the Bellman-Ford algorithm with a revolutionary "recursive partial ordering" method, they figured out how to find the path without fully sorting the nodes. The results are a massive shift in theoretical computer science: - The first deterministic improvement to the Single-Source Shortest Path (SSSP) problem since 1984. - A new time complexity of $ O(m \log^{2/3} n)$, officially beating the long-standing $ O(m n \log n)$ limit. - On massive sparse graphs (like the web or global logistics), this means finding the best route significantly faster than previously thought possible. For four decades, the greatest minds in algorithms believed this limit was absolute. Last year, even the legendary Robert Tarjan won an award proving Dijkstra was "optimally efficient" at sorting distances. Tsinghua’s answer? Stop sorting. The world’s most settled problem is suddenly wide open again. If we can break a 40-year-old law in basic graph theory, what other "impossible" speed limits are waiting to be crushed?
92
594
4,056
825,153
juantomas (mAGIa is coming ) retweeted
We implemented @karpathy 's MicroGPT fully on FPGA fabric. No GPU. No PyTorch. No CPU inference loop. Just a transformer burned into hardware, generating 50,000 tokens/sec. The model is small, but the idea is not: inference does not have to live only in software 👇
266
696
7,508
851,037
juantomas (mAGIa is coming ) retweeted
Apr 24
Replying to @juantomas @gregpr07
El post explica una idea clave para agentes IA en browsers: **no envuelvas el LLM ni sus herramientas**. En vez de crear abstracciones como click(), type() o scroll(), dale acceso directo al CDP (Chrome DevTools Protocol), que el modelo ya conoce de su entrenamiento. Con solo 4 archivos (run.py, helpers.py, daemon.py y SKILL.md) el agente puede editar su propio código, arreglar errores y auto-repararse. Resultado: más libertad, menos bugs y tareas complejas (subidas de archivos, iframes, shadow DOM) resueltas solas. Es “The Bitter Lesson” aplicada: máxima acción, mínima restricción. Repo: github.com/browser-use/brows…

1
2
144
juantomas (mAGIa is coming ) retweeted
🚨Breaking: Someone open sourced a knowledge graph engine for your codebase and it's terrifying how good it is. It's called GitNexus. And it's not a documentation tool. It's a full code intelligence layer that maps every dependency, call chain, and execution flow in your repo -- then plugs directly into Claude Code, Cursor, and Windsurf via MCP. Here's what this thing does autonomously: → Indexes your entire codebase into a graph with Tree-sitter AST parsing → Maps every function call, import, class inheritance, and interface → Groups related code into functional clusters with cohesion scores → Traces execution flows from entry points through full call chains → Runs blast radius analysis before you change a single line → Detects which processes break when you touch a specific function → Renames symbols across 5 files in one coordinated operation → Generates a full codebase wiki from the knowledge graph automatically Here's the wildest part: Your AI agent edits UserService.validate(). It doesn't know 47 functions depend on its return type. Breaking changes ship. GitNexus pre-computes the entire dependency structure at index time -- so when Claude Code asks "what depends on this?", it gets a complete answer in 1 query instead of 10. Smaller models get full architectural clarity. Even GPT-4o-mini stops breaking call chains. One command to set it up: `npx gitnexus analyze` That's it. MCP registers automatically. Claude Code hooks install themselves. Your AI agent has been coding blind. This fixes that. 9.4K GitHub stars. 1.2K forks. Already trending. 100% Open Source. (Link in the comments)
68
279
2,079
137,877
juantomas (mAGIa is coming ) retweeted
Por si es de tu interés, @juantomas#MOOC Materiales Digitales Accesibles #MOOCMatDigAcc 10ª Edición ¡Foro muy recomendable! Apúntate y participa en: iedra.uned.es/courses/course… @UNEDAbierta #UNED

1
2
286