Anthropic CEO: "AI will write 100% of code within a year"
developers spend 4 years in university learning to code
Claude learned it from every book ever written
if the hardest skill is already handled - the gap is no longer about what you know
it's about how well you've configured the tool that knows everything
most people haven't done that yet
the article below is where you start
Anthropic's applied AI team just dropped a 24-minute workshop on how to actually prompt Claude properly.
Free. From the people who built it.
You've been prompting Claude for months without the 6 elements they teach in this.
I built a skill that applies them automatically. Full guide below.
Bookmark it.
Follow @codewithimanshu for more high-signal content that actually moves your skills forward.
Cet atelier de 30 minutes, animé par le créateur de Claude Code, vous en apprendra plus sur le
vibe-coding que 100 tutoriels vidéo sur YouTube.
Ajoutez-le à vos favoris et consacrez-y 30 minutes dès aujourd'hui.
Cette vidéo transformera votre utilisation de Claude à jamais.
Esse cara que apresenta esse podcast tem um intelecto tão limitado que Reinaldo Azevedo deu um drible sem graça nele numa perguntinha basica:
-Você leu a sentença da juíza?
-Não.
Como um cara que quer ser comunicador não se municia de “informações”?
Next.js 15.3: useLinkStatus
Define inline feedback to show while navigations complete.
Tip:
• Avoid an unnecessary flicker of pending UI on fast loads by adding an initial animation delay (e.g. 100ms) and fading in from 0 opacity.
3. Use a Starter Kit Instead of Starting From Scratch
Starting a project from zero wastes time. I always use a starter kit to speed up my development process.
I had my own starter kit but recently @cj_zZZz shared that he added 6 starter kits in CodeGuide. Those are actually good. Now I use @CodeGuidedev Starter Kits to start.
My ideal tech Stack for MVPs:
- NextJS with App router
- Typescript
- TailwindCSS
- Shadcn
- Supabase (for db, storage, and authentication)
O governo federal anunciou nesta terça (25) uma vacina de dose única contra a dengue, de produção nacional, a ser distribuída a partir de 2026 no SUS para toda a faixa etária de 2 a 59 anos. O imunizante é uma parceria entre o Instituto Butantan e a chinesa WuXi Biologics.
CSS sidebar tricks 🤌
transition expanded menu items to "auto" height using grid
li > div[inert] { grid-template-rows: 0fr; }
li > div {
grid-template-rows: 1fr;
transition: grid-template-rows .3s;
}