Recep Bayoğluegitimportali.hashnode.dev·Sep 29, 2023Welcome to the Magical World of CodingHello Hashnode community and passionate explorers of the coding world! Today, welcome to the magical realm of coding. This blog will guide you, inspire you, and draw you into this enchanting world as you take your first steps. 1. What Is Coding and W...Discusscoding
Joy Mukherjeecodegeeks.hashnode.dev·Sep 28, 20237 Tips for Writing Clean and Maintainable CodeWriting code is an art, and like any art form, it requires practice, discipline, and an understanding of certain principles. One of the most critical aspects of coding is producing clean and maintainable code. Clean code not only makes your work more...Discusscoding
NagaRaju Kukkadapublog.rnhintegrations.com·Sep 26, 2023Static Code Check Using Mule Sonar PluginPrerequisites: Docker SonarQube Anypoint Studio Installation of Docker: Installation on Windows Installation on Mac Installation of mule sonar plugin: mule-sonar Repository link https://github.com/mulesoft-catalyst/mule-sonarqube-plugin#se...Discuss·27 readsmulesoft
Hung Ngohungoboss.hashnode.dev·Sep 23, 2023Between the Lines: What are the secrets in your code?One critical aspect of security is ensuring that sensitive data, such as passwords, API keys, and encryption keys, are not accidentally exposed in your source code. These sensitive data are usually called “secrets”, and for penetration testers, they ...Discusssecrets
Shreyansh Jainjainshreyansh.com·Sep 19, 2023Hoisting in JSBefore going into the definition of hoisting, let's consider these examples. What do you expect would be the answer to these questions? Example 1 a = 10; var a; console.log(a); Error? undefined? hmm, no. The output is 10. What about the below exampl...DiscussJavaScript
Elucian MoiseforProgramming Snippetssagecode.hashnode.dev·Sep 15, 2023ASM InstructionsHere are some important x86 assembly language instructions you need to learn: mov - This is the move instruction. It is used to move data from one register or memory location to another register or memory location. add - This is the add instruction. ...DiscussAssembly Fundamentalsasm
Miguel Treviñodevblog.verifik.co·Sep 13, 2023Identity Validation in Colombia via API. Fraud prevention made easy!In an era where identity verification is paramount, Verifik emerges as a beacon of trust for businesses and individuals alike in Colombia. With its state-of-the-art technology, Verifik offers a seamless way to validate identities directly from govern...DiscussColombia
Sudhir Kumariamsudhir.hashnode.dev·Sep 12, 2023Simplest example of Callbacks in JavaScriptFirst of all, what is Callback in JS? A callback is a function that's passed as an argument to another function and is executed once that function has completed its task. Callbacks are commonly used to handle asynchronous operations like fetching dat...DiscussJavaScript
Mujahid Hussainsmahid.hashnode.dev·Sep 11, 2023Terraform Definition , need , use , installation ,Terminologies .TABLE OF CONTENTS Hey from Ruby !! Infrastructure as code = Infrastructure +code Terraform : Why do we need Terraform : Installation of Terraform on Linux: Important terminologies of Terraform Hey I'm Sharing about Terraform an infrastructure...DiscussDevops
Shreyansh Jainjainshreyansh.com·Sep 10, 2023Git BisectIntroduction The "git bisect" command is a handy tool for pinpointing the exact commit that introduced a bug into your code. It works by systematically narrowing down the range of commits where the code was working fine and where it's broken. Assumin...DiscussGitHub