QuickHop DesignsforQuickHop Designsquickhop.uk·Nov 9, 2024Enhance Designs with Charming Story Style FontElevate Your Designs with the Charming Story Style Font In the vast world of graphic design, choosing the right font can make all the difference. A font can convey emotion, influence perception, and ultimately impact the success of your project. One ...Discussbasic
Marcia Satiebetweentags.hashnode.dev·Apr 1, 2024C# Fundamentals of OOPObject-oriented programming (OOP) in C# involves creating classes as blueprints (or templates) to generate new objects (instances), encapsulating data and behavior within them. What a hell?! Ok let's use simpler words:Imagine we are developing softwa...Discuss·26 readsC# Fundamentalsc-s
Aditi Chandrasupercodderaditi.hashnode.dev·Dec 19, 2023Which programming language you should learn first ?🤔Before answering this question first you must understand why you should learn coding. Learning to code is one of the most valuable skills you can acquire in the 21st century. Whether you want to build your website, app, game or software coding can he...Discuss·11 likescoding
Joy Shreejoyofcode.hashnode.dev·Oct 14, 2023#11.Journey to DSA in C++Hello, inquisitive brains! Welcome to a magical voyage utilizing C++ into the enthralling world of Data Structures and Algorithms (DSA). Today I explored, Counting Sort and Radix Sort in the context of Data Structures and Algorithms (DSA), and unders...DiscussDSA
Chris Spicerchrisspicer.hashnode.dev·May 18, 2023When White Dwarf magazine published CodeI have a Warhammer habit. I was introduced to the hobby by my older brother in the mid-1980s, so I have an affection for issues of White Dwarf magazine from that era. For those not aware: Games Workshop produce the Warhammer table-top wargame and als...Discussbasic
md ahnaf arshadmdahnafarshad.hashnode.dev·Feb 1, 2023Reverse the string with three methods in js.First - step: split this string then, Second - step: call the reverse method. Third - step: join this string. Example: let string = 'hello'; let cutingBox = string.split(''); cutingBox = cutingBox.reverse(); cutingBox = cutingBox.join(''); console.lo...Discuss·78 readsJavaScript
Anele 'Mashy' Mbangamashymbanga.hashnode.dev·Oct 6, 2022So I started creating a TailwindCSS toolboxFinding DaisyUI In the middle of last month, I started learning TailwindCSS. I didn't go to their website though, I found DaisyUI components and learned using that (see cover image). Big mistake. I'm finding myself going to the TailwindCSS website to...Discuss·468 readsTailwind CSS
Pranjal guptaforRemoteStateblog.remotestate.com·Aug 29, 2022Basic HTML & It's UsageYou may have listened about the term HTML, but what does HTML really mean? HTML is an acronym for Hyper Text Markup Language. Markup languages are different from programming languages. While programming languages are useful for modifying data, ma...Discuss·84 readsHTML & CSSbasic
Prajwal Kumarkumpraj.hashnode.dev·Jul 23, 2022Markdown Cheat SheetThis is a quick reference to the Markdown syntax. Basic Syntax Heading #H1 ##H2 ###H3 ####H4 #####H5 ######H6 Bold **bold text** Italic *italicized text* Blockquote > blockquote Ordered List 1. First item 2. Second item 3. Third item Unordered...Discuss·43 readsmarkdown
Hemanth Rajukhr.hashnode.dev·Mar 17, 2021Number System in Java Programming LanguageNumber System in Java There are four types of number systems in java programming Language. Binary Number System Octal Number System Decimal Number System Hexadecimal Number System Binary Number System : In this number system, we use “0b”(2 as ...Discuss·80 readsComputer Science