@tibor_tee -Centralize place for all the artifacts generated (w/out opening grok's comp)
-Reduce the weekly usage limit to every 5 days (is that too much to ask?)
ex-Apple engineer gave Grok 4.6 two jobs inside Cursor, went to sleep, and opened the results live the next morning:
no babysitting, no checking every generation, just a model left running on real work for hours.
• 00:42 - reveal the website Grok redesigned overnight
• 23:21 - go from a voice prompt to a full software stack
• 45:43 - inspect the generated code + architecture
• 01:21:26 - Grok 4.6 vs Opus 5
• 01:46:31 - live PR + Cloud Agent workflow
Most coding demos test an AI for 5 minutes. This tests the thing that matters for agents: can the model keep working when you stop watching it?
SpaceXAI built Grok 4.6 specifically around longer-running agent tasks, coding and more ambitious visual work.
The endgame isn’t prompting faster. It’s giving an agent a job at night and reviewing finished work in the morning.
Worth watching before you choose which model runs your overnight agent loops.
So everyones has been talking about AI Model costs and how opensource is taking over. I'm working on a video right now on my thoughts around this topic and how SOTA is not only a war on quality but a war on price.
In the meantime if you need to save some tokens try these methods.
My favorite is Caveman lol
https://t.co/HGv57vDhfE
La biología en PDF acaba de morir.
Un tío hizo una app donde exploras estructuras 3D como un videojuego.
UI: GPT Images 2. Código: Gemini 3.1 Pro.
Los libros de texto ya no sirven.
Why is no one talking about this?
@nvidia is offering around 80 AI models via hosted APIs absolutely for free.
You get access to MiniMax M2.7, GLM 5.1, Kimi 2.5, DeepSeek 3.2, GPT-OSS-120B, Sarvam-M etc.
This plugs straight into OpenClaude, OpenCode, Zed IDE, Hermes agent and even with Cursor IDE.
Setup:
– Grab API key: https://t.co/Wfdclm0hY2
– base_url = "https://t.co/VOGC10LmGP"
– api_key = "$NVIDIA_API_KEY"
– select model (e.g. minimaxai/minimax-m2.7)
If you’re building or experimenting, this is basically free inference.
Lock in and start building today anon.
Thank me later.
@Seminal_Church Hi, interested in buying the https://t.co/OHWASgnp7x domain name.
Are you open to selling it, and if so, what is your asking price? Could you please send me a DM? Thank you
Anyone telling you that you need to use Claude to run just about any OpenClaw spending a wacky $1000 or more per month is no expert you should trust.
Use @Grok. Great pricing and 4.3 is in another category. You won’t be burning $1000 a month.
You will absolutely thank me.
VERCEL GOT HACKED
ShinyHunters - the group behind the Ticketmaster breach - is selling Vercel's internal database for $2M on BreachForums
here's why every developer should care:
- they have NPM tokens and GitHub tokens
- Vercel owns Next.js - 6 million weekly downloads
- one malicious push = global supply chain attack
- Vercel confirmed the breach today, April 19
- they literally DMed the hackers on Telegram asking them to stop
rotate your env variables RIGHT NOW
🧵 My tips for getting the best results out of Claude Design! I’m on the verticals team at Anthropic which means I serve 7 different products. Claude Design makes it possible!
1. Set up your design system and your core screens. An hour of setup and refinement here is worth it
The SINKING SHIP checklist :
Run this before you ship anything built with AI.
SECURITY
[ ] No API keys or secrets in frontend code
[ ] Every route checks authentication (audit all endpoints, not just the obvious ones)
[ ] HTTPS enforced everywhere, HTTP redirected
[ ] CORS locked to your domain — not wildcard
[ ] Input validated and sanitized server-side
[ ] Rate limiting on auth and sensitive endpoints
[ ] Passwords hashed with bcrypt or argon2
[ ] Auth tokens have expiry
[ ] Sessions invalidated on logout (server-side)
DATABASE
[ ] Backups configured and tested (test restore, not just backup)
[ ] Parameterized queries everywhere — no string concatenation
[ ] Separate dev and production databases
[ ] Connection pooling configured
[ ] Migrations in version control, not manual changes
[ ] App uses a non-root DB user
DEPLOYMENT
[ ] All environment variables set on the production server
[ ] SSL certificate installed and valid
[ ] Firewall configured (only 80/443 public)
[ ] Process manager running (PM2, systemd)
[ ] Rollback plan exists
[ ] Staging test passed before production deploy
CODE
[ ] No console.logs in production build
[ ] Error handling on all async operations
[ ] Loading and error states in UI
[ ] Pagination on all list endpoints
[ ] npm audit run, critical issues resolved
Can't check every box? You're not ready to ship.
The post-launch patch costs 10x more than the pre-launch fix.
Bookmark this. Use it every time.