devenock.hashnode.devUnderstanding Basic Types in Go: A Comprehensive GuideIntro Go provides a rich set of basic types that form the foundation of its type system. Let's explore each category in detail with practical examples. Numeric Types Integers Go offers both signed and unsigned integers of various sizes: // Signed int...Oct 25, 2024·4 min read
devenock.hashnode.devGetting Started with Go: A Beginner's GuideInto Go (or Golang) has gained immense popularity for its simplicity, strong performance, and excellent support for concurrent programming. Let's dive into the basics of this powerful language. Setting Up Your Environment First, download Go from the ...Oct 24, 2024·2 min read
devenock.hashnode.devGetting Started on Git and GitHubOne of the most valuable skill that a developer should never miss is the knowledge of Version Control. Version Control is a program that tracks and logs the changes on your project over time as you work on the project. Git Git is a popular open-sour...May 9, 2021·3 min read
devenock.hashnode.devJavaScript Arrays.Arrays are one of the commonly used data structures in the field of computer science. They are mainly used for mutation operations. example: let marks=[20, 40, 50, 60]; Arrays can also contain items that are of different data types. For example this...Apr 18, 2021·2 min read
devenock.hashnode.devCreating your first Login page using Nodejs, Express, and MySQL.In this article, I am going to show you how to create your first login page as a beginner. Requirements: Nodejs, Express, MySQL server installed e.g XAMPP, WAMP, etc, but I would recommend using XAMPP for a beginner. Let's get started!! There are ma...Nov 1, 2020·6 min read