Ashish kumarpatternweek1.hashnode.dev·Dec 22, 202410 Stunning Patterns in C++ You Should Try!IntroductionProgramming is not just about solving problems; it’s also about exploring creativity. Patterns in programming help improve logic-building skills, enhance problem-solving abilities, and make learning enjoyable. This week, I explored 10 exc...LogicBuilding
Shefalidevshefali.hashnode.dev·Nov 23, 2024All The Code Snippets You Need At One Place - CSSnippetsCSSnippets is a curated collection of HTML, CSS, React, and Tailwind CSS code snippets designed to help developers, designers, and makers quickly build functional and stylish web components. It’s a resource for anyone who wants to speed up their work...CSS
Aryan Kumararya-amour.hashnode.dev·Apr 5, 2024Exploring Event Handling and useEffect Hook in React.jsIn the world of React, event handling and the useEffect hook are two fundamental concepts that every developer should understand. These powerful tools allow you to create dynamic, interactive, and efficient user interfaces. Let's dive in and explore ...React
Ishani puranikapdev.hashnode.dev·Jul 18, 2023How to leverage Open Source in Application Development?The current world is driven by Technology, Digital Disruption, which makes us evolve more quickly than ever. Now each business focuses on strengthening its digital front and improving its strategies for ensuring business resiliency and enhancing cust...30 readsApplication Development
Péter Teszárypeterteszary.hashnode.dev·Jul 8, 2023Lepton - My Favorite Gist ToolAs a WordPress developer/site builder I use some code snippets for all of my projects. These snippets are small code blocks that help me with small tasks to handle. Some php functions or CSS, Javascript snippets mostly. And there are many of them. So...33 reads#MyOpenSourceAdventurecode snippets
George Edozygeorgeedozy.hashnode.dev·Jun 22, 2023JavaScript Snippets for Common TasksJavaScript is a powerful language that allows you to accomplish a wide range of tasks. In this article, we'll explore 18 JavaScript code snippets for common tasks, from copying to clipboard and checking for dark mode to generating random integers and...47 readscode snippets
Vishank WrapPixelvishankwrappixel.hashnode.dev·Mar 9, 2023The Best Top 10 React Snippets for Web Developers 2023Snippets are a potent tool for web developers. They let you write code quickly and repeat it over and over again. Snippets also save you time by making it easier to develop web apps, deploy them and increase your return on investment (ROI). I’ve made...31 readsReact
RAJAI TARUNrajaitarun.hashnode.dev·Jan 19, 2023Java snippet to add two numbers given by userimport java.util.Scanner; public class SumOfTwoNumber { public static void main(String[] args) { Scanner scan = new Scanner(System.in); System.out.println("Enter number 1"); int num1 = scan.nextInt(); System.out....48 readsJava
Christopher Fieldschrisfieldsii.hashnode.dev·Nov 15, 2022Introducing Snippet WizardThe Problem and Solution I had a problem. My job uses GitLab and I personally use GitHub. My team stores handy code snippets for daily development in GitLab and I know at some point, I want to transfer those snippets to my GitHub. I made an open sour...114 readssnippets
Arturo Sosablog.arturososa.dev·Oct 22, 2022Immutable Data: ObjectsImmutability in JavaScript is a not trivial and quite complex topic for many new programmers. So in order to shed some light on the matter, I wrote a quick guide on object immutability. But first we need to define what is immutability in the JavaScri...33 readsJavaScript