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...Discusscodekeep
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.DiscussReact
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...Discuss·49 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...Discuss·20 likesJavaScript
MKhalidwebdesignguy.me·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...Discuss·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...Discuss·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 ...Discuss·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...DiscussVSCode Tips
Rajarshi Samaddarrajarshisamaddar.hashnode.dev·Oct 18, 2023Generate Table Of Content From MarkdownCreating a Table of Contents manually is a very intimidating task. So in this post, I will share my code snippet that will help you to dynamically generate a Table of Contents from Markdown files programmatically. type TableItem = { level: number; he...Discuss·54 readssnippets
Aniket Pandharabaleaniketicloud.hashnode.dev·Oct 15, 2023VS Code snippet: console.log(), React FCWhen coding React, I use React plus Typescript pattern a lot. Also, you import { FC } from "react" interface OptionsProps { } export const Options: FC<OptionsProps> = () => { return ( <> </> ) } So, I made a snippet in VS-Code to red...Discussconsole.log