Notas
Aprendizajes en público.
Ideas, decisiones y aprendizajes sobre agentes IA, automatización e ingeniería de software aplicada.
40 notas publicadas · mostrando 21–30
Roadmap 2024 by Midudev
Lorem Ipsum Description
Este post fue modificado automáticamente desde el Issue #8 de GitHub.
React Hooks by Joan Ayebola
Lorem Ipsum Description
📷 SSR - CSR - SSG differencies
Lorem Ipsum Description
Server-Side Rendering (SSR), Client-Side Rendering (CSR), Static Site Generation (SSG) and Incremental Static Regeneration (ISR) are all techniques used to render web pages. The main difference between these techniques is when and…
SQL Data types
SQL Data types
1. CHAR - STR, length 0 - 255 2. VARCHAR - STR, variable length, max length specified 3. TEXT - STR, variable length, max length 65,535 characters 4. INT - INT, range - 2,147,483,648 to 2,147,483,647 5. SMALLINT - INT, range - 32,…
NextJS Routing
NextJS Routing
Next.js routing is a powerful feature that enables developers to create dynamic and user-friendly web applications. It uses a combination of file-system based routing and server-side rendering (SSR) to efficiently handle page navi…
Docker Structure by @TheTechKage
Docker Structure.
❓ How would I structure an Express.js App?
It's a beautiful world out there.
app.js : It's like the control center of your web application. It's where you set up and manage everything. bin : Think of this as a place for starting your web server. It's where you have scripts that make your website work. conf…
Use React Suspense to Improve your React Projects by freecodecamp
How to Use React Suspense to Improve your React Projects
Front-end vs Back-end
It's a beautiful world out there.
Front-end 🌟 Focus : UI. 💻 Runs on the client-side (user browser). 🎨 HTML, CSS, and JavaScript. 🖌️ Responsibilities : design, layout, interactivity. 🛠️ Frameworks : React, Angular, or Vue.js. Back-end 🏢 Server-side logic. 🖥️…
❗Generate Static Params in Next.js
It's a beautiful world out there.
Official docs What is generateStaticParams in Next.js? a function that is used to specify the dynamic routes that should be pre-rendered at build time. To explain it in simpler terms, let's imagine you have a website with multiple…