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...Sandeep Panda Test and 15 others are discussing this16 people are discussing thisDiscuss·181 likes·1.1K readsWeb DevelopmentWell said and thanks for the encouragement! I’ve been enjoying watching your videos on Traversy Media along with your personal YouTube channel. It’s great to see you posting on Hashnode as well. Thanks for sharing the great advice! 12
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...Saiyam Pathak and 8 others are discussing this9 people are discussing thisDiscuss·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,...Sandeep Panda Test and 15 others are discussing this16 people are discussing thisDiscuss·139 likes·19.2K readsLearn with Tips and Tricks2Articles1WeekWhoa! This post is a Treasure 🥇 Thanks for sharing 🧡 6
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...Discussowasp
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...Discussnumpy
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 ...DiscussProgramming 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 ...Discussbeginner
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...The ERIN and 1 other are discussing this2 people are discussing thisDiscuss·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...DiscussDay6
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; ...DiscussBash
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...DiscussTechnical 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...DiscussDev 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...DiscussCSS