Joined May 2022
349 Photos and videos
RT retweeted
If you love fine-tuning open-source models (like me), then listen. > Start with 1B, 2B, 4B, and 8B models. (Don't start with a 27B model or bigger at first.) > Use WebGPU providers. I use Google Colab Pro for any model smaller than 9B. A single A100 80GB costs around $0.60/hr, which is cheap. Enough for small models. > Don’t buy GPUs unless you fine-tune 7 to 10 models. You'll understand the nitty-gritty in the process. > Use Codex 5.5 × DeepSeek v4 Pro to create datasets. Codex to plan, DeepSeek v4 Pro to generate rows. > Use Unsloth's instruct models as a base from Hugging Face. Yes, there are others too, but Unsloth also provides fast fine-tuning notebooks. > Use Unsloth's fine-tuning notebooks as a reference. Paste them into Codex, and Codex will write a custom notebook with the configs you need. > Spend 1 day learning about: - SFT (supervised fine-tuning) - RL training (GRPO, DPO, PPO, etc.) - LoRA / QLoRA training - Quantization and types - Local inference engines (llama.cpp) - KV cache and prompt cache > Just get started. Claude, Codex, and ChatGPT can design a step-by-step plan for how you can fine-tune your first AI model. Future tech is moving toward small 5B to 15B ELMs (Expert Language Models) rather than general 1T LLMs. So fine-tuning is an important skill that anyone can acquire today. Tune models, test them, use them. Then fine-tune for companies and make a career out of it. (Companies pay $50k to fine-tune models on their data so they can get personalized AI models.) Shoot your questions below. I'll be sharing in-depth raw findings about this topic in the coming days.
97
313
2,541
187,782
RT retweeted
The smartest people on the internet just open-sourced their brain. 11 GitHub repos worth bookmarking: - iFixAi — Open-source AI misalignment diagnostic. 32 tests. Grades your AI stack in under 5 minutes. github.com/ifixai-ai/iFixAi - andrej-karpathy-skills — Karpathy's AI coding wisdom in a single markdown file. 109K stars. github.com/forrestchang/andr… - MemPalace — Milla Jovovich co-built this AI memory system with Claude Code. Near-perfect LongMemEval score. github.com/MemPalace/mempala… - OpenClaw — Peter Steinberger's personal AI assistant. 300K stars. Fastest growing repo in GitHub history. github.com/openclaw/openclaw - autoresearch — Karpathy's research automation framework. 23K stars in three days. github.com/karpathy/autorese… - awesome-claude-code — The canonical Claude Code playbook. Used inside FAANG, OpenAI, and Anthropic. github.com/hesreallyhim/awes… - agent-skills — Addy Osmani's production-grade engineering skills for AI coding agents. 30K stars. github.com/addyosmani/agent-… - AI-Agents-for-Beginners — Microsoft's free 12-lesson course on building AI agents. github.com/microsoft/ai-agen… - awesome-llm-apps — 106K stars. The largest collection of working AI apps on GitHub. github.com/Shubhamsaboo/awes… - hermes-agent — Self-evolving AI agent. Gets smarter the more you use it. github.com/NousResearch/herm… - qlib — Microsoft's full quant investment platform. A hedge fund brain, free to clone. github.com/microsoft/qlib Save this post! Follow me for more ♻️ Repost so others don't miss it.
30
139
772
95,413
May 8
Pfizer, this is it. $PFE
54
$SOUN (SoundHound AI) #earnings are out:
8
28
138
28,810
RT retweeted
Your Hermes Agent can now build full videos with the official HyperFrames skill by @HeyGen HyperFrames videos are HTML-native, so your agent has total control over the final output Video made entirely by Hermes using the HyperFrames skill
156
368
4,398
371,730
RT retweeted
You are bored because you are not doing side quests. Life is not just work and lying in bed doing nothing. Here are 50 side quests every man should complete:
18
239
2,170
629,156
Apr 14
SHORT BRENT CRUDE $OIL Ticker: BZ=F Entry: $95.16 Stop: $96.59 ( 1.5%) Target: $92.31 (-3.0%) R/R: 1:2 Size: 50% capital (day trade only) Hold: 24 hours max
1
104
RT retweeted
The hidden health crisis ruining millions of men over 40: Andropause. It's why you feel stressed, tired and struggle to lose weight. But it's not just "aging". Here's what the "male menopause" is and 7 ways to fix it before it gets worse: 🧵
23
53
306
81,323
RT retweeted
🚨BREAKING: Claude has a secret mode called "First Principles Breakdown." It strips any complex topic down to its raw fundamentals like Elon Musk thinks through problems. Here's how to activate it:
60
490
3,931
466,440
RT retweeted
Claude Code just made the traditional startup team obsolete. I don't say that lightly. Look at this .claude/agents/ folder structure: 30 specialized agents — each a single markdown file with one focused role. Engineering. Product. Marketing. Design. Legal. Finance. Testing. All of it. One folder. One person. No hiring. No managing. No overhead. Just: "Hey rapid-prototyper, build this." "Hey growth-hacker, find me users." "Hey legal-compliance-checker, is this okay?" This is the unfair advantage most founders don't know exists yet. Bookmark this before they do. 🔖
67
122
1,012
100,771
RT retweeted
🚨 This is how engineers at Amazon, Google, and Shopify actually use Claude Code. It's called GSD (Get Shit Done) and it solves context rot the quality degradation that destroys your Claude Code sessions as the context window fills up. No BMAD. No enterprise sprint theater. No Jira nonsense. Here's how it works: You run one command → /gsd:new-project → It interviews you until it fully understands your idea → Spawns parallel research agents to investigate your stack → Creates atomic task plans with XML structure Claude actually understands → Executes in fresh 200k context windows per task → Commits every single task to git automatically Here's the wildest part: Your main context window stays at 30-40% the entire time. All the heavy lifting happens in subagent contexts. No degradation. No "I'll be more concise now." Just clean, consistent execution. Engineers at Amazon, Google, Shopify, and Webflow trust this thing. MIT license. One command to install: npx get-shit-done-cc@latest Link in the first comment 👇
83
167
1,816
206,799
RT retweeted
Extracted version. Including typo fixes. Enjoy ## Workflow Orchestration ### 1. Plan Node Default - Enter plan mode for ANY non-trivial task (3 steps or architectural decisions) - If something goes sideways, STOP and re-plan immediately – don't keep pushing - Use plan mode for verification steps, not just building - Write detailed specs upfront to reduce ambiguity ### 2. Subagent Strategy - Use subagents liberally to keep main context window clean - Offload research, exploration, and parallel analysis to subagents - For complex problems, throw more compute at it via subagents - One tack per subagent for focused execution ### 3. Self-Improvement Loop - After ANY correction from the user: update `tasks/lessons.md` with the pattern - Write rules for yourself that prevent the same mistake - Ruthlessly iterate on these lessons until mistake rate drops - Review lessons at session start for relevant project ### 4. Verification Before Done - Never mark a task complete without proving it works - Diff behavior between main and your changes when relevant - Ask yourself: "Would a staff engineer approve this?" - Run tests, check logs, demonstrate correctness ### 5. Demand Elegance (Balanced) - For non-trivial changes: pause and ask "is there a more elegant way?" - If a fix feels hacky: "Knowing everything I know now, implement the elegant solution" - Skip this for simple, obvious fixes – don't over-engineer - Challenge your own work before presenting it ### 6. Autonomous Bug Fizing - When given a bug report: just fix it. Don't ask for hand-holding - Point at logs, errors, failing tests – then resolve them - Zero context switching required from the user - Go fix failing CI tests without being told how ## Task Management 1. **Plan First**: Write plan to `tasks/todo.md` with checkable items 2. **Verify Plan**: Check in before starting implementation 3. **Track Progress**: Mark items complete as you go 4. **Explain Changes**: High-level summary at each step 5. **Document Results**: Add review section to `tasks/todo.md` 6. **Capture Lessons**: Update `tasks/lessons.md` after corrections ## Core Principles - **Simplicity First**: Make every change as simple as possible. Impact minimal code. - **No Laziness**: Find root causes. No temporary fixes. Senior developer standards. - **Minimat Impact**: Changes should only touch what's necessary. Avoid introducing bugs.
3
33
1,341
RT retweeted

399
1,617
12,599
5,411,265
RT retweeted
Future of education may look something like every child has an AI device and they interact with it to learn about the world. The AI device specializes in educational development, exploration, humility, mystery, strong ethics etc. It teaches each child in their own best way. This feels almost certainly true for middle school and above education, but then will expand to different domains like corporate workplace. On the short side the best i can do is $FC, $COUR, $UDMY, $SCHL, $WLY, $PSO, etc and a few other consulting firms. On the long side, the best i can do is stuff like $GOOG, $SMH, $NVDA, $TSM, etc etc.
2
1
3
861
RT retweeted
23 Sep 2025
I love this visual so much
110
3,150
27,316
1,113,717
RT retweeted
I obviously disagree a bit. $COUR quarter looked and was bad on margin compression and NRR trends. They have shit ton of cash. Cannot short too much. I do not believe that the OpenAi or anthropic partnerships will yield good lt results for $COUR. Why go on chatgpt to learn on $COUR? This is obviously oriented around a consumer product. But the enterprise segment is where these names are trying to focus, presumably because of better margins. But even on the consumer side, if someone doesn't think COUR is worth it when learning directly on their platform, why would learning COUR content be worth it on chatgpt? Doesn't really make sense to me intuitively because COUR can use opensource qwen models to replicate that experience on their own platform. I don't see it
Fine quarter for $COUR. Will continue to hold - New CEO has a lot of wood to chop bringing the Amazon Way to Coursera, but I am happy with the progress he is making. Tightening up the conversion funnel, fixing pricing, bringing in new leadership. 2-3 year journey here. - Consumer segment revenue is accelerating, which was the core thesis as AI drives massive demand for upskilling. You can just hear the higher level of execution here w/ focus on pressing gas when they see higher ROAS, esp. w/ funnel now going to durable subscription v single course sign-up - Coursera Plus is now 50% of consumer revenue. This is a structural, positive change that gives them more visibility in to revenue and more confidence to invest. Content Portfolio is growing nicely, which helps make subscription more valuable - Anthropic joins as partner. Another notch in the thesis that Coursera is the default partner for tech upskilling - Registered learners sustained 18% growth. I'll be interested to see if the ChatGPT integration can help this inflect - Some real weakness in Enterprise, which slowed to 6% rev growth with really bad NDR (89%). They hired the Microsoft VP of Edu to lead the Enterprise segment so let's see if he can turn things around - Cash pile has grown to $800M with no debt. Plenty of room to maneuver and get aggressive with something interesting when the opportunity arises
3
1
3
3,328
RT retweeted
8 Sep 2025

4,716
43,688
279,404
22,674,242
RT retweeted
$TSLA isn't primed for an explosive move at all. - Momentum falls on several time frames, especially 4D - $TSLA has built up a bearish contracting triangle - Next target is at least $186 - After that correction, you can call me the biggest $TSLA bull
$TSLA is primed for an explosive move to $400 in the upcoming weeks… Breaking out a 3 month consolidation phase followed by heavy amounts of calls being loaded $TSLA will explode. This breakout can send $TSLA beyond all time highs. $500 incoming this year. Mark my words…
24
13
107
26,789
RT retweeted
$TSLA is primed for an explosive move to $400 in the upcoming weeks… Breaking out a 3 month consolidation phase followed by heavy amounts of calls being loaded $TSLA will explode. This breakout can send $TSLA beyond all time highs. $500 incoming this year. Mark my words…
66
97
988
109,527