© 2023 Hashnode
#learning
Becoming a Good Developer: The Ultimate Guide to Understanding the Key Topics in JavaScript. LEARN JAVASCRIPT BASICS Introduction 1.1 Hello World 1.2 Variables 1.3 Data Types 1.4 typeof Language fundamentals 2.1 Math operators 2.2 I…
GitHub repo with all the code https://github.com/codeTIT4N/rust-school Make sure to star/fork/watch it on GitHub. What is Cargo? Cargo is Rust’s build system and package manager. If you are familiar w…
A Journey Through the Labyrinth Once upon a time in a magical kingdom, there lived many brave and clever knights. They had to embark on a dangerous quest to retrieve a precious treasure hidden in a labyrinth. The knights were equipped with…
Planning A very important lesson that I learned during the previous jams is the importance of planning everything before starting the production part. While still early, making changes and corrections…
Crypto is serious stuff. It will replace the current financial system. This is too serious stuff. If you don't jump on the train, you will miss it. Crypto is always serious. Why is that so? It is part…
Lately, the information security space seems to be overwhelmed by an influx of new tools and advancements due to AI, especially ChatGPT, which is taking over all news headlines. The certification indu…
The case statement in MySQL is a conditional expression that returns a value based on one or more conditions. It is used to determine the result of a query based on different conditions. Facts to Reme…
Welcome to the course. Don't forget to subscribe to my newsletter for regular updates. Before I begin I have to mention that I am using a Mac machine(which is very similar to a Linux machine), which m…
After weeks of planning, I decided to learn it from scratch again. But more focused this time. I am talking about my #web3 career. In march 2020, it was so unexpected that I learned about the Brave br…
Var "var" is a keyword in JavaScript used for variable declaration. It declares a variable and assigns a value to it. The scope of a "var" variable is either function scope or globally scoped if declared outside of a function. console.log(n…