If you love writing and technology, technical writing could be a suitable career for you. It’s also something else you can do if you love tech but don’t really fancy coding all day long. Technical writing might also be for you if you love learning by teaching others, contributing
Category Archives: Uncategorized
As the Flutter mobile app development framework grows more and more popular, many business are choosing to use it for their projects. Many devs appreciate its ability to develop apps with pixel perfect UIs using a simple structure of widgets. I think Flutter is the future of mobile app development
The AV1 Image format, or AVIF, is the latest image codec on earth. AVIF is an optimized image format which was created to make our images smaller while keeping the same quality (lossless). The file extension for AVIF is .avif. In this article, I want to talk about its features
Here’s an overview of the six most crucial code obfuscation techniques in use today to get you started on the path to writing more secure software.
Have you ever thought about returning multiple server responses using only a single connection? Yes, that’s what this article is about. Today I will be showing you how to implement gRPC server-side streaming with Go. It’s okay, he won’t biteBefore we go straight to the implementation, let’s cover what
Sometimes you might want to extract data from a website into a different format. But what if the website has no easy way to export that data? This is where web scraping comes in. We’ve released a crash course on the freeCodeCamp.org YouTube channel that will teach you how
C# and ASP.NET are used as the server-side programming language on many websites. We’ve released a course on the freeCodeCamp.org YouTube channel that will teach you how to create a web database app in ASP.NET Core using Visual Studio and the C# language. The course was created
Modules are one of the fundamental features of Node.js. When you’re building an application, as the code becomes more and more complex you cannot put your entire code in one single file. As this becomes unmanageable, you can use Node’s module pattern to write different files and export them
React is one of the most popular JavaScript frameworks ever created, and I believe that it’s one of the best tools out there. The goal of this handbook is to provide a starter guide to learning React. At the end of the book, you’ll have a basic understanding of: What
Welcome! If you want to learn how to work with while loops in Python, then this article is for you. While loops are very powerful programming structures that you can use in your programs to repeat a sequence of statements. In this article, you will learn: What while loops are.
