Sinaptiasinaptia.hashnode.dev·Dec 18, 2024Mounting react componentsModern apps have highly dynamic interfaces: API calls through Ajax for updating parts of it, dynamic forms like wizards with several steps, and even forms that perform API calls (think of searching something), and so go further and even have routing ...library
Madzamadza.hashnode.dev·Oct 10, 202414 Code Snippet Image Generators to Turn Your Code into Stunning Visuals 😍🧑💻In today’s digital world, developers are frequently tasked with sharing code snippets on blogs, social media, or during presentations. Whether showcasing an innovative solution, teaching a concept, or highlighting best practices, making code visually...324 readsProgramming Blogs
Jithin Pcodekeep.hashnode.dev·Sep 1, 2024🚀 📸 Creating Accessible and Stunning code screenshotsCode Screenshots are a great way to share code snippets in social media, but often times they are not accessible, or the snippet needs to be hosted on some other site and link them.With code keep, you can create snippets, and add detailed description...codekeep
Yulia Vyu1ia.hashnode.dev·Jun 28, 2024React, React Native snippets for VS Codehttps://marketplace.visualstudio.com/items?itemName=yu1ia-vasyleniuk.react-reactnative-snippets-essential Made with love in Ukraine.React
Ion Bazanblog.bazan.dev·May 21, 2024Turn a country code into an emoji flag (US ➡️ 🇺🇸)Flag emojis are a fun and visual way to represent countries and regions. These emojis are part of the Unicode standard and are created using a pair of regional indicator symbols. In this article, we will explore how to convert 2-letter ISO 3166-1 cou...51 readsGo Language
OBULIPURUSOTHAMAN Kobulipurusothaman.hashnode.dev·Apr 12, 2024Javascript SnippetsGet current date and time const now = new Date(); EXPLANATION : The code const now = new Date(); is written in JavaScript and creates a new instance of the Date object, assigning it to the variable now. Here's a breakdown: new Date(): This is a con...30 likesJavaScript
MKhalidmkhalid.hashnode.dev·Jan 8, 2024Trending JavaScript Snippets for Efficient Coding in 2024Trending JavaScript Snippets for Efficient Coding in 2024 JavaScript continues to be an indispensable language in web development, with its vast ecosystem constantly evolving. As we step into 2024, certain JavaScript code snippets have emerged as par...1 like·38 readsJavaScript
Prince C. Ngumohachukwuemekangumoha.hashnode.dev·Jan 2, 2024Unwrapping HTML: A Gentle Peek into Web Building BasicsAs a child, I enjoyed playing the games on the Cartoon Network website. I still remember how happy I was back then to be able to load up that page every evening and play games on it. It was a joy. I always wondered how it all worked? How was it possi...10 likesHTML
Mario Montellanetworkmario.hashnode.dev·Dec 29, 2023The Spread Operator in JavascriptWith “spread operators”, introduced starting with ECMAScript 6 (ES6), it is possible to copy all or part of an existing array or object into another array or object, combine arrays or objects, and pass an array to a function as a topic. The notation ...27 readsJavaScript
JV conseiljv-conseil.hashnode.dev·Nov 26, 2023Python 🐍 Code SnippetsIn your repository, create a file under .vscode/python.code-snippets { // Place your workspace snippets here. // Each snippet is defined under a snippet name and has a scope, prefix, body and description. // Add comma separated ids of th...VSCode Tips