PCrcDev's profile picture. Software Developer

Pablo C

@PCrcDev

Software Developer

Pablo C reposted

As a web developer, you'll likely need to use APIs in your projects. And if those APIs aren't well-documented, it might be hard to figure out how they work. In this article, @Derekvibe26 explains how to write good API documentation and covers key features & best practices.…

freeCodeCamp's tweet image. As a web developer, you'll likely need to use APIs in your projects.

And if those APIs aren't well-documented, it might be hard to figure out how they work.

In this article, @Derekvibe26 explains how to write good API documentation and covers key features & best practices.…

Pablo C reposted

"Three.js GLSL Fractal Loop" by Puneet codepen.io/VoXelo/pen/Qwy…


Pablo C reposted

Scrum is an approach to developing software that many teams use. It helps teams build projects in short, focused cycles called sprints. In this guide, @WittyCircuitry explains how it works, and teaches you about roles, sprint planning, Scrum ceremonies, and more.…

freeCodeCamp's tweet image. Scrum is an approach to developing software that many teams use.

It helps teams build projects in short, focused cycles called sprints.

In this guide, @WittyCircuitry explains how it works, and teaches you about roles, sprint planning, Scrum ceremonies, and more.…

Pablo C reposted

Node.js v22.21.0 is out 🙌 Check out the notable changes here: hubs.la/Q03PqF5H0


Pablo C reposted

Designers, if shadcn/ui isn't in your toolkit, you're missing out. Check out our free Academy - divided into five chapters, each brimming with concise video guides that focus on the most essential aspects of shadcn/ui kit for Figma, plugin and blocks. By the end of this short…

matsugfx's tweet image. Designers, if shadcn/ui isn't in your toolkit, you're missing out.

Check out our free Academy - divided into five chapters, each brimming with concise video guides that focus on the most essential aspects of shadcn/ui kit for Figma, plugin and blocks.

By the end of this short…

Pablo C reposted

Clean, clear code starts with better types 🪄 If you’re overloading strings or pairs to represent complex data, it’s time to refactor. Use custom types that say what they mean so your future self can read and understand your code easily.


Pablo C reposted

Spiral Plot in Python

clcoding's tweet image. Spiral Plot in Python

Pablo C reposted

Contributing to open source is a great way to give back to a tool or product you use and enjoy. But other responsibilities can get in the way, and it's easy to fall out of the habit. To help you out, Tooba shares tips for building a sustainable open source contribution routine.…

freeCodeCamp's tweet image. Contributing to open source is a great way to give back to a tool or product you use and enjoy.

But other responsibilities can get in the way, and it's easy to fall out of the habit.

To help you out, Tooba shares tips for building a sustainable open source contribution routine.…

Pablo C reposted

The open source community offers devs many opportunities to collaborate, learn, & grow. Contributing to OSS helps you develop skills, get key experience when job hunting, and so on. If you want to dive in, this course will teach you how to get involved.…

freeCodeCamp's tweet image. The open source community offers devs many opportunities to collaborate, learn, & grow. 

Contributing to OSS helps you develop skills, get key experience when job hunting, and so on. 

If you want to dive in, this course will teach you how to get involved.…

Pablo C reposted

🚨 Hackers are hijacking WordPress sites right now. A critical flaw (CVE-2025-5947) in the Service Finder theme lets anyone log in as an admin — no password needed. 13,800+ exploit attempts. Still rising. Most sites haven’t patched. Details here → thehackernews.com/2025/10/critic…


Pablo C reposted

When you're building forms in React, sometimes it feels like input fields have a mind of their own. To help you understand how forms really work, Oluwadamisi breaks it all down in this guide. He talks about controlled vs uncontrolled components, how they work, and when to use…

freeCodeCamp's tweet image. When you're building forms in React, sometimes it feels like input fields have a mind of their own.

To help you understand how forms really work, Oluwadamisi breaks it all down in this guide.

He talks about controlled vs uncontrolled components, how they work, and when to use…

Pablo C reposted

Serverless architecture is a popular way to build applications. And while Node.js is traditionally used with servers, you can build a serverless app with it. In this course, you'll deploy an Express.js and Node.js application to AWS Lambda. freecodecamp.org/news/serverles…

freeCodeCamp's tweet image. Serverless architecture is a popular way to build applications. 

And while Node.js is traditionally used with servers, you can build a serverless app with it. 

In this course, you'll deploy an Express.js and Node.js application to AWS Lambda.

freecodecamp.org/news/serverles…

Pablo C reposted

Sometimes, client requests to the server fail, and the browser displays a "CORS policy failed" error. And there are some temporary fixes out there, but here @sumit_analyzen breaks down CORS in detail for you. You'll set up a basic client and server, understand what "origin"…

freeCodeCamp's tweet image. Sometimes, client requests to the server fail, and the browser displays a "CORS policy failed" error.

And there are some temporary fixes out there, but here @sumit_analyzen breaks down CORS in detail for you.

You'll set up a basic client and server, understand what "origin"…

Pablo C reposted

You don’t need a GUI for Git and GitHub. You use both entirely from the terminal. Here, Ayush goes over how to use git commands (init, add, commit, push, pull) & manage repos without leaving your shell. freecodecamp.org/news/how-to-us…

freeCodeCamp's tweet image. You don’t need a GUI for Git and GitHub.

You use both entirely from the terminal.

Here, Ayush goes over how to use git commands (init, add, commit, push, pull) & manage repos without leaving your shell.

freecodecamp.org/news/how-to-us…

Pablo C reposted

Memory leaks are a common issue in React. They happen when components leave event listeners & timers behind as they unmount. Here, @_jongbo teaches you what causes leaks and how to fix them by clearing timers & more. freecodecamp.org/news/fix-memor…

freeCodeCamp's tweet image. Memory leaks are a common issue in React.

They happen when components leave event listeners & timers behind as they unmount.

Here, @_jongbo teaches you what causes leaks and how to fix them by clearing timers & more.

freecodecamp.org/news/fix-memor…

Pablo C reposted

If you want to contribute to open source but don't know how to start, this guide's for you. In it, @fanny_codes helps you get set up. She also explains version control basics and walks you through the whole process. freecodecamp.org/news/how-to-co…

freeCodeCamp's tweet image. If you want to contribute to open source but don't know how to start, this guide's for you.

In it, @fanny_codes helps you get set up. 

She also explains version control basics and walks you through the whole process.

freecodecamp.org/news/how-to-co…

Pablo C reposted

If you are writing complex nested subqueries, you might be better off using CTEs (common table expressions) to improve the readability! CTE enables you to define a query and treat its output as a new table, allowing you to organize your queries in a hierarchical structure.

dshukertjr's tweet image. If you are writing complex nested subqueries, you might be better off using CTEs (common table expressions) to improve the readability!

CTE enables you to define a query and treat its output as a new table, allowing you to organize your queries in a hierarchical structure.

This account does not have any followers

United States Trends

Loading...

Something went wrong.


Something went wrong.