Comment intégrer l'IA dans son workflow UX/UI ? 🎨
Aujourd'hui sur le blog, Sophie partage son retour d'expérience sur l'utilisation de Figma Make, Claude Design, les prompts efficaces et ce qui change vraiment pour les designers 💡
https://t.co/zsuGjpt6Uh
#ui#ux#ia#design
We’re open sourcing ArrowJS 1.0: the first UI framework for coding agents.
Imagine React/Vue, but with no compiler, build process, or JSX transformer. It’s just TS/JS so LLMs are already *great* at it.
AND run generated code securely w/ sandbox pkg.
➡️ https://t.co/y477CtT6qY
Hi everyone! I'm happy to finally share my portfolio!🏝️
This portfolio is an island where you can explore around to get to know me, my skills, and my work.
I hope you enjoy exploring around my island!
Go Explore: https://t.co/BqcM6C8q9J
#threejs#threejsjourney#r3
💣 Grosse annonce 😋
Nous dévoilons aujourd'hui notre Bundle #Symfony de gestion de médias 🎉
JoliMediaBundle est notre solution idéale pour gérer la contribution, le stockage et l'affichage de médias dans une application web moderne 🙏
À découvrir : https://t.co/CVKEpNw6VK
we don't have to live this way. senior engineers have the duty of building guardrails and teaching the next generation of programmers the practices that lead to high quality software.
AIs may write most of the code, but you still decide what ships. we should never lose our taste for quality software.
i made this analogy a while back: everyone can cook at home but yet restaurants still exist. the floor is rising, but so is the ceiling. the best software will always be made by those who care.
Le Vibe Coding a ses défauts et ses qualités : parmi celles-ci, la possibilité pour les porteurs d'idées de concrétiser leurs envies 🚀
Mais comment passer du code généré par LLM à une application de production ? Anthony vous dit tout : https://t.co/ANMNlb0WaY
#vibecoding#ia
Vos clients peuvent acheter vos produits directement via ChatGPT grâce à l'Agentic Commerce Protocol, une collaboration entre OpenAI et Stripe.
Découvrez comment l'e-commerce conversationnel évolue avec ACP sur notre dernier article de blog !
https://t.co/H0YaudZH7x
Build a tiny web server in C (from scratch)
Let’s serve index.html over HTTP using raw sockets. ~100 lines, pure C. Perfect to learn sockets + HTTP basics.
Why Remix is a better framework than Next.js
I've been using @remix_run for a while now, and I just realized why I completely forgot about Next.
1. Server components looked cool, but Remix's traditional SSR is better. You can do server stuff in a loader, and it’s available throughout your page components.
2. Routing is so much cleaner – file-based or function-based (my favorite).
3. Deploy anywhere. I’ve tried Node servers and Cloudflare Pages, and it works great everywhere.
4. Vite for bundling – way faster than Next’s Turbopack.
What’s your take on this? Bcz I can list more.
Why do most people use the `const fn = () => {}` function notation?
It takes more mental power to identify/parse if it's a variable or a function every time you are looking at some code.
What is this madness. Just use `function ... () {}` and you identify the function with first 3 letters.