🧬 AI NO LONGER JUST SEARCHES FOR INFO — IT STRAIGHT UP INVENTS NEW SCIENTIFIC TERMS AND EVOLVES ITS OWN THINKING? MIT JUST BLEW UP THE GAME IN 2026 🤯
Yo bro, if you still think AI is just some overpowered search bar that spits out answers when you ask nicely… you’re living in 2023, fr.
Back then everyone was like “AI just remixes what already exists.” But 2026 hit different.
MIT dropped a real breakthrough: they built a system that doesn’t just search or remix. It self-revises. It literally changes its own scientific “language” — invents new concepts, new terms, new ways of thinking that weren’t in its original setup. And then it tests them like a proper scientist.
This ain’t random hype. It’s called self-revising discovery. Old AI worked in a fixed box: “search → combine known stuff.” This one can look at the box and go “nah, this schema is trash” and build a whole new one. Then it proves the new stuff actually works with real experiments.
They already showed it on wild cases — like figuring out super complex rules in proteins and how fiber networks get their strength. No human had to spoon-feed it every step. The AI figured out the new vocabulary itself and used it to make actual discoveries.
This ain’t a chatbot anymore.
This is an AI scientist that works 24/7, never gets tired, and can think in ways we didn’t program it to.
And here’s the craziest part…
This isn’t some 2035 sci-fi movie. This is a real framework that dropped in 2026. We’re literally watching the moment when AI stops being just a “helpful tool” and starts becoming a legit partner in making brand new science.
So tell me… we ready for AI that doesn’t just help us discover stuff, but actually evolves its own way of discovering?
Or is this the beginning of something way bigger than we can even imagine yet? 👀
Drop your thoughts below, no cap 🔥
#AI #MIT #Science2026 #AgenticAI
Este tío vibe-codeó un bot de trading con Claude y ganó $80.000 en Polymarket.
Su bot ejecuta 51,2 operaciones por hora y usa una estrategia de sniping de resolución tardía en mercados cripto de corto plazo Up/Down.
Su estrategia es simple:
>Trackea el precio actual del activo y lo compara con el precio en Polymarket
>A medida que el mercado se acerca a la resolución y el resultado es casi seguro, el bot coloca una orden límite a 99¢
>La orden la rellenan vendedores que no quieren esperar a la resolución y prefieren cerrar sus posiciones antes
Cuenta de Polymarket de este tipo:
https://t.co/hLNdE1QSpK
Con esta estrategia, mantiene un winrate constante del 100%.
Después repite la misma micro ventaja miles de veces para hacer crecer su capital.
ANTHROPIC QUIETLY TURNED CLAUDE CODE INTO A TEAM OF SPECIALISTS YOU CAN RUN IN PARALLEL, AND ALMOST NOBODY IS USING IT RIGHT
It's called sub-agents. Instead of one chat doing everything and choking on its own context, the main session becomes an orchestrator that delegates to specialist workers, each running in its own clean context, on its own model, in parallel.
Here's how to actually use it:
1. Spin one up instantly. Ask in plain English: "kick off a sub-agent to research [tool], give me features, pricing, how it works." It runs in its own context and only the summary comes back, so your main chat stays clean.
2. Build a custom one. Run /agents, go to the Library tab, hit Create new agent, choose Project (lives in the repo) or Personal (follows you everywhere). Pick Generate with Claude and describe it. Claude writes the file.
3. Make it read-only. During setup, give it read-only tools if it should never edit files. This is a real permission layer, not just a prompt instruction.
4. Put it on Haiku. Set the sub-agent to Haiku (Claude's cheapest, fastest model) for research and summarizing, keep Opus for your main session. Smart boss, cheap workers, big savings.
5. Trim the description. A sub-agent is a markdown file with YAML at the top, and the description is the trigger. Keep it tight and specific ("use when I say roast my plan") or it misfires.
6. Borrow ready-made ones. Search "awesome-claude-code-subagents" on GitHub for prebuilt specialists (API designers, SQL experts, security auditors). They're just markdown files you drop in. Scan them before running.
When to use one: a task that dumps a pile of output you'll never reread, anything that runs in parallel, or when you want a fresh-eyes unbiased review. Skip it for quick edits or steps that depend on each other.
Bookmark this
When vibe coding a game one of the most time consuming part is to lock down a coherent art style.
My goal with Seas of Spark is to have such workflows that I can then input into Spark agent as rulesets so I can get other people who'll vibe code benefit from what takes much longer into agentic loops and workflows.
The good part about Spark is, it works with something called domain chips, that can train on workflows, and get better at them.
If we can get agents to do the slow parts faster, and with higher quality, then everyone can make better games.
So while I build Seas of Spark, I get a lot of stuff that will later benefit everybody that uses Spark in similar objectives.
I've been working on PvP systems today, and already getting something ready for the first version of the game.
A FORMER AMD ENGINEER JUST SHOWED A FARM OF $1,800 AI BOXES RUNNING CLAUDE CODE WITHOUT THE INTERNET
this doesn’t look like a normal desk setup. it looks like a small server rack full of black machines, but the crazy part is what each box is supposed to replace: a $5,040/year AI stack that most people keep paying for every month.
the machine behind it is the gmktec evo-x2, built on amd’s ryzen ai max+ 395 with 128gb of unified memory shared between cpu, gpu and npu. on linux, that unlocks up to 110gb of usable vram for local AI workloads.
that memory pool is the whole trick. instead of renting cloud compute forever or building a $10k gpu tower, you can stack these mini pcs and turn one rack into a private AI farm that runs serious models inside the room.
qwen3-coder 30b, llama 3.3 70b, deepseek v3 and even 200b-class models can fit on hardware smaller than a console. one box is useful. a full rack starts looking like a private Claude Code backend with no cloud meter attached.
the subscription math gets ugly fast. claude code max is $200/month, chatgpt pro is $200/month and cursor is another $20/month. that is $420/month, or $5,040/year, before you even start counting API usage.
with evo-x2, you install linux, pull ollama, load the model and point claude code at localhost. same terminal flow, same agent loop, but every request stays local and the cost after setup is basically electricity.
full breakdown in the article below
Github acaba de ☠️ al vibe coding
Acaba de publicar spec-kit y en pocos días tiene 95k estrellas y 8.3k forks
Esto no es un proyecto cualquiera. Es GitHub diciéndote cómo se programa con IA de verdad.
El problema con los agentes de IA no es el modelo
Es que le mandas una idea en texto y él interpreta lo que quiere
Spec-kit resuelve eso con 6 comandos que convierten tu idea en una especificación estructurada antes de escribir una sola línea de código
✅ /speckit.constitution → las reglas del proyecto: calidad, testing, arquitectura
✅ /speckit.specify → describes QUÉ construir, no el stack
✅ /speckit.clarify → el agente pregunta lo que no entiende antes de empezar
✅ /speckit.plan → ahora sí eliges la tecnología
✅ /speckit.tasks → lista de tareas ordenada por dependencias
✅ /speckit.implement → el agente construye
El entregable ya no es código generado a lo loco
Es una especificación viva que tu IA lee, valida y ejecuta paso a paso
Funciona con Claude Code, Cursor, Copilot, Codex, Gemini CLI y más de 25 agentes
La diferencia real es esta
Antes: "hazme una app de tareas" y rezas para que el agente no se pierda a mitad
Ahora: especificación primero, código después
El agente sabe exactamente qué construir, en qué orden y por qué
95k estrellas. 8.3k forks. Publicado por el propio GitHub. Licencia MIT.
el repo aquí ⬇️
You don't have to trust the agent. You can just watch it.
The multiplayer cloud computer for AI agents. Watch every action on a shared P2P desktop and jump in to take control at any moment.
Anthropic just filed for IPO at $965B valuation.
But few people know the truth:
Every time you ask Claude to "help write a resume" — someone in San Francisco gets one step closer to their first billion.
You just wanted to get the job done 😅
#AI#Anthropic#IPO#Tech
AMD just dropped a $1,499 box that runs AI locally — no cloud, no subscriptions.
It beat Nvidia’s $1,000 GPU by 3x on real AI workloads.
The math hits different 👇
Claude + ChatGPT + Cursor + Gemini = $5,280/year. This box pays itself off in 9 months. Then runs free forever.
@adiix_official It looks like the race among industry leaders is set to completely transform the artificial intelligence sector, and things are moving at breakneck speed overall. It used to take years to start “Googling” something, but now you can find any information in a matter of minutes😱
Someone vibe coded a Chrome extension that wraps Claude/ChatGPT in a fake Google Docs UI so nobody knows you’re using AI in public 💀 It’s called GPTDisguise and honestly? Genius fix for AI embarrassment at school/work 🫡
@undefinedKi Bro zero design skills → $9k/month? The pipeline slaps but let’s be real — the tool handles the craft, YOU still need the clients 😭 Also “Moonchild”?? Never heard of it and that’s either based or a red flag 💀
@0xchromium one prompt and he's got a sellable game?? whole map animated, towers, enemies, moving portal, runs in browser no engine?? that's not a demo that's a finished product 😳 the "afternoon vs months+budget" thing is wild if real, got a link to the guide?
@TaraBull bro 10 hours vs 8 years and $1B?? rockstar execs rn 💀 ngl kinda wild if true, but I'll believe it when I see actual gameplay not just hype. drop a clip 👀