James Q Quickjamesqquick.hashnode.net·Sep 22, 2020FeaturedTop 5 Pieces of Advice for Aspiring and Learning Developershttps://www.youtube.com/watch?v=V4UYuvegsTg Since I started my professional career, I’ve worked with countless developers in person and online. I’ve done 1:1 sessions, conference talks, guest lectures, and even taught an 8-month Bootcamp in 2019 (sho...181 likes·1.1K readsWeb Development
Barkatul MujauddinforKubesimplifykubesimplify.hashnode.net·May 27, 2022Let's Simplify Golang : Part 1Why Golang ? Golang is one of the most desired languages to learn, and it's also one of the most popular programming languages. It has been gaining immense popularity, and despite being just a decade old, Golang has made its mark. The use of Golang i...140 likes·8.9K readsgolang
Tapas Adhikaryatapas.hashnode.net·Jul 28, 2020FeaturedMy Favorite JavaScript Tips and TricksMotivation Most of the programming languages are open enough to allow programmers to do things multiple ways for a similar outcome. JavaScript is in no way different. With JavaScript, we often find multiple ways of doing things for a similar outcome,...139 likes·19.2K readsLearn with Tips and Tricks2Articles1Week
HarshSkillsvariable.hashnode.net·Apr 26, 2023OWASP dependency check pluginOWASP dependency check plugin is a tool used for identifying vulnerabilities in the third-party libraries that are being used in an application. This plugin uses a combination of static and dynamic analysis techniques to identify known vulnerabilitie...owasp
Pranjal Chaubeypranjal28.hashnode.net·Apr 24, 2023NumPy - Everything you need to KnowNumPy (short for Numerical Python) is a Python library for scientific computing that provides support for arrays and matrices, along with a large number of mathematical functions to operate on them. It also forms the base of python library Pandas. In...numpy
Leafyhyperleafy.hashnode.net·Apr 23, 2023Navigating the Fog of Tech: My Journey as an Introverted Tech Enthusiast"Writing is like driving at night in the fog. You can only see as far as your headlights, but you can make the whole trip that way." This quote by E.L. Doctorow resonates with me on many levels. The idea is that even if you don't know exactly where ...Programming Blogs
Andrew Lamichhaneandrew-lc.hashnode.net·Apr 22, 2023Introducing Andrew Lamichhane: A Beginner's Guide to Full-Stack DevelopmentWelcome to my blog! My name is Andrew Lamichhane, and I'm thrilled to share my knowledge and experience in full-stack development with you. As a second-year undergraduate, I'm on a journey to become a full-stack developer and I'm excited to document ...beginner
Glory Ekpeghloriey.hashnode.net·Apr 22, 2023A Comprehensive Guide on the use of If-Else Statement in JavaScriptIntroduction If-else statement is a block of code that is executed when a particular condition is met. It is used to perform different actions based on different conditions, such that if a particular condition is true, a certain code should be execut...3 likes·26 readsJavaScript
Priya Chakrabortypriyachakraborty.hashnode.net·Apr 22, 2023DAY 6 of PYTHON top 100 questions : from Basic to Advanced !!Write a Python program to find the factorial of a given number: n=int(input('Enter the number : ')) fact=1 for i in range(1,n+1): fact=fact*i print(fact) Output : Enter the number : 6 720 This is a Python program to calculate the factorial o...Day6
Plamen Ivanovk1lgor.hashnode.net·Apr 22, 2023Understanding Linux Commands - A Comprehensive GuideIntroduction If you’re new to Linux or have recently switched to it, you may have been overwhelmed by the vast array of commands you can use within it. These commands have a different syntax than those you might be used to in Windows or Mac systems; ...Bash
Abolaji Opeloyerutruevine.hashnode.net·Apr 22, 2023Beginner Guide to know your audience as a Technical WriterSince you are starting a career as a technical writer, The next question is, who are you writing for? Who are your audiences? The goal of a technical writer is to make your writing technically sound and easier to understand. The first step to achievi...Technical writing
Cherlock Codeevergrowingdev.hashnode.net·Apr 20, 2023🔮 What Comes Next After To Learning to Code?So you’ve completed that coding course and you’ve built your first website or app. You know you don’t know everything, but you feel confident enough about the basics and you’re ready for your next challenge. So what should you do next? Now if you sta...Dev NewbieBeginner Developers
Bhavika Mauryabhavikamaurya.hashnode.net·Apr 20, 2023CSS Positioning EssentialsCSS position property allows you to position elements on your web page in a specific location. You can use it to move elements from their default position or to place them relative to other elements on the page. There are five different values for th...CSS