Anastasiabeyond-average.hashnode.net·May 26, 2021FeaturedHow to Build a Great Developer Portfolio (+ Examples & Tools)*header pic by Shen Comix As any other specialists, developers need to market themselves to get dream jobs and projects, attract more clients and reach a desirable level of income. The necessary skills and a killer portfolio website are the two thing...532 likes·4.6K readsCareer
Francesco Ciullafrancescociulla.hashnode.net·Sep 29, 2020FeaturedSOLID Principles in JavaScriptThe SOLID principles are software design principles that help us understand how we can structure our code to be robust, maintainable, and flexible as much as possible. Here come the S.O.L.I.D. principles: S: Single Responsibility O: Open/Close L: ...396 likes·7.2K readsJavaScript
MISS CREATIVEmisscreative.hashnode.net·Dec 10, 2022How I started my journey as a programmer? and how you can "Dev Retro 2022"INTRODUCTION Hi! beautiful developers and readers😊, for those who don't know me I'm mary and I am learning web development, I love to try new things I'm here to solve all your problems during coding by explaining them in my situation.🏆 Designing / ...335 likes·890 reads#DevRetro2022
Jake Conradjcconrad.hashnode.net·Apr 25, 2023Once Again, From the TopWhere I started Hello! My name is Jake and I'm a developer. At least, that's what I'm telling myself. I entered the IT space in January of 2020 as a level 1 desktop support agent and as of today in 2023, I work as a network security administrator for...coding
Ebube Kamaludeesolutionafrica.hashnode.net·Apr 25, 2023Basics of F-strings in PythonF-strings are a feature in Python 3.6 and above that allows you to easily format strings. They are also known as "formatted string literals." The F-strings provide a concise and readable way to embed expressions inside string literals using a minimal...1 likePython 3
Kenneth Darrick Quigginskenscode.hashnode.net·Apr 25, 2023Graph Data StructureInitializing a Graph When a new graph object is created using the Graph() constructor, an empty dictionary is initialized in the __init__ method: def __init__(self): self.adj_list = {} This dictionary will hold the adjacency list for the graph. ...Graph
Paolo Ferraripaoloferrari.hashnode.net·Apr 25, 2023Introduction to Web scrapingIntroduction I have done this simple and fast introduction to the web scraping technique, to share with you what I have learned studying this topic. What is web scraping Why is it important Web Scraping vs API What can we do with the data scraped...1 likeweb scraping
Sai Pranaysaipranay47.hashnode.net·Apr 25, 2023Productivity Tips for DevelopersAs a developer, you likely have a lot of tasks to complete each day, and it can be challenging to stay focused and efficient. However, by following a few simple tips, you can improve your productivity and achieve more in less time. Here are five tips...Productivity
Maasumirandompattern.hashnode.net·Apr 25, 2023Do You Code?website name [overapi.com] Visit this website for any coding language cheat sheetcheatsheet
Sai Mahendrareality.hashnode.net·Apr 24, 2023Challenges in Coding as a Beginner.As a Beginner,generally we are extremely ambitious about our short-term or weekly goals of advancing in Our Coding journey which is absolutely great but the problem arises when we are unable to distinguish the gap between having a Zeal & Our Capabili...27 readsProgramming Blogs
Samuel Abereojesamuell.hashnode.net·Apr 24, 2023FeaturedScripting, An Introduction to AutomationWhat is scripting? Scripting refers to the process of writing code in a high-level programming language to automate tasks, perform data processing, or create dynamic web pages. In simpler term, scripting refers to the process of writing small program...5 likesPython
Carlos Trujillorealcarlostrujillo.hashnode.net·Apr 24, 20233 Paths to Become a Web DeveloperLearning how to code is hard. But if you choose the wrong path for you, it could be even worse. So let's take a look at what those are and what the pros and cons are so YOU can make a smart decision. Path 1: Get a Degree To be a web developer, you...59 readsProgramming Blogs
Aman Nayakcodetomoon.hashnode.net·Apr 24, 2023Stack (javascript)Introduction A stack is a fundamental data structure in computer science and programming. It is a Last-In-First-Out (LIFO) data structure where elements are added and removed from the same end of the stack, which is the top. Stacks have numerous appl...JavaScript