Brian Kingsolodev.app·Dec 12, 2024Setting Up Git & GitHub on Ubuntu 24.04 LTS.TL;DR. Setting up Git and GitHub on a Debian-based Linux system involves several steps: updating my system, installing Git, installing and updating the GitHub CLI tool, configuring my identity, generating SSH keys, and pushing my local repositories t...The Ops SeriesGitHubSetup
NATHANIEL ENDE JOELprogram01.hashnode.dev·Dec 7, 2024Coding vs. Programming:--- ### **Introduction: Unraveling the Tech World** The terms *coding* and *programming* are often used interchangeably, but they represent distinct concepts in the world of software development. If you’re new to tech, understanding the differenc...20 likescoding challenge
Shobo Adefowopetaiwoadefowope.hashnode.dev·Dec 2, 2024Understanding the map() Method for JavaScript Arrays: A Simple GuideThe map() method creates a new array by applying a provided function (callbackFn) to each element of the original array. It’s perfect for transforming data without modifying the original array. Syntax array.map(callbackFn, thisArg) callbackFn: A fu...JavaScript
Arghya Roy Chowdhurymy-c-programming-journey-begins.hashnode.dev·Dec 2, 2024Learning C: Phase 1 (10 days)Introduction Hello and welcome to my blog! I'm excited to share my journey of learning C programming with you all. As a beginner, I've finally decided to take the first step towards becoming a programmer myself. I've chosen to start with C programmin...beginner's journey
Favour Numondefavournumonde.hashnode.dev·Dec 1, 2024How Much do You Know About JavaScript?Everyone who is familiar with web development, whether they are frontend developers or not, must have heard of JavaScript. But, for all that we hear about this programming language, how much do we actually know about it? Come along as I unfold the tr...11 likesJavaScript
Vaishnavi Dwivedivaishd.hashnode.dev·Nov 11, 2024Patterns unravelledCode this pattern. This is a question I have never heard in any of my interviews, but it is the starting point of DSA. Why? The main reason is that it helps us better understand loops and conditions. Without this, we can't build optimal logic or unde...Learn DSA - JAVACodingPatterns
Stanley Owarietaday3-of-30days-js-blog.hashnode.dev·Nov 1, 2024Getting Started with JSON – Everything You Need to KnowJSON, or JavaScript Object Notation, has become a standard for data exchange in web development, making it a must-know for developers and tech enthusiasts. In this post, we’ll dive into some common questions about JSON to give beginners a thorough un...DataFormat
Stanley Owarietaday3-of-30days-js-blog.hashnode.dev·Oct 28, 2024Mastering JavaScript Scope: Understanding Context in Your CodeIn JavaScript, scope determines the accessibility of variables and functions at different parts of your code. Mastering scope is essential for writing clean, bug-free JavaScript code and ensuring variables and functions behave as expected. Let’s dive...10 likesJavaScript
Victor Uzoagbavictoru.hashnode.dev·Oct 27, 2024Why Rust is Gaining Traction in Financial Services: A Deep Dive into Memory Safety and PerformanceIn recent years, Rust has emerged as a compelling alternative to C++ in financial services, particularly in areas where performance and reliability are paramount. As trading systems become increasingly complex and regulatory scrutiny intensifies, fin...rust lang
Victor Uzoagbavictoru.hashnode.dev·Oct 25, 2024Mastering CSS Container QueriesResponsive design has long been a cornerstone of web development, allowing interfaces to adjust to different screen sizes and resolutions. Traditionally, media queries have been the primary tool for achieving responsive layouts, adapting elements bas...css important question