Khushi TrivediforKeploy Community Blogkeploy.hashnode.dev·Jan 20, 2025FeaturedYAML vs YML: Developer’s Guide to Syntax and Ease of UseIt sounds funny to know, but YAML stands for "YAML Ain't Markup Language." Well, contrary to its unserious nomenclature, it’s considered a pretty widely used data serialization format known for good human readability and scalability. The theory becom...41 likes·123 readsYAML
Khushi TrivediforKeploy Community Blogkeploy.hashnode.dev·Jan 20, 2025FeaturedYAML vs YML: Developer’s Guide to Syntax and Ease of UseIt sounds funny to know, but YAML stands for "YAML Ain't Markup Language." Well, contrary to its unserious nomenclature, it’s considered a pretty widely used data serialization format known for good human readability and scalability. The theory becom...41 likes·123 readsYAML
Saurabh Mahajanblog.saurabhmahajan.com·Jan 20, 2025Clean Code - Part-3: Code FormattingCode formatting is the practice of structuring code in a consistent and organized manner to enhance readability and convey meaning effectively. Vertical Formatting Vertical formatting concerns how code is organized from top to bottom, focusing on re...code
Nayan Radadiyaweb3fronted.hashnode.dev·Nov 6, 2024Boost Your Next.js Workflow with Prettier: A Quick Setup GuideWhat is Prettier? Prettier is an automatic code formatting tool. It takes your code and applies a consistent style, such as indentation, spacing, and line breaks, based on rules you set or its defaults. This helps make your code look clean and unifor...Next.js
Siddharthazm0.hashnode.dev·Sep 14, 2024Format, and Mount a Disk on Ubuntu 20.04To format and mount a disk on Ubuntu 20.04, follow these steps: Identify the Disk: List all disks to find the one you want to format: sudo fdisk -l Remove Old Partitions (Optional): If the disk has old partitions, remove them using gdisk: sudo g...format hdd tutorial
Aanchalaanchalfatwani.hashnode.dev·Aug 31, 2024Understanding Prettier, and how is it different from LintersPrettier is an opinionated code formatter that enforces a consistent style by parsing your code and re-printing it with its own rules. It ensures consistent style in your JavaScript, TypeScript, CSS, and HTML code. It's like a personal stylist for yo...Prettier
Derek Armstrongderekarmstrong.dev·Aug 14, 2024Easy-to-Understand Python Naming Conventions and Coding Best PracticesLet's dive into the world of Python naming conventions, but this time with a sprinkle of fun and metaphors. We'll cover everything from naming your variables to creating class names, and we'll do it with practical, easy-to-remember examples. So, grab...13 likes·59 reads👨🏻💻 Code Craftcoding
Travis Horntravishorn.com·Aug 1, 2024Setting up a Project with ESLint and PrettierESLint is a tool for “linting” your code. It can analyze your code and warn you of potential errors. In order for it to work, you need to configure it with specific rules. Fortunately, the ESLint team provides a recommended configuration that anyone ...372 readsJavaScript
Shaique Hossainshaique7.hashnode.dev·Jun 4, 2024Strings in PythonStrings in Python are sequences of characters, enclosed in either single (' ') or double (" ") quotes. They support various operations such as concatenation, slicing, and formatting. Creation: Strings can be created using single or double quotes: na...string
Shital Mainaliwww.blogs.shitalmainali.com.np·May 13, 2024A Comprehensive Markdown Tutorial: Mastering Markdown SyntaxWelcome to my comprehensive Markdown tutorial! In this guide, I will take you through the essentials of Markdown syntax, covering everything from basic formatting to advanced techniques. Whether you're new to Markdown or looking to enhance your skill...1 like·90 readsmarkdown
Kilian Klugepragmaticnotes.hashnode.dev·May 5, 2024Running pre-commit in a reusable GitHub Actions workflow with cachingThe pre-commit framework is an awesome utility to enforce coding standards and run sanity checks, such as preventing large files from being committed. It's not just convenient to run locally on the developers' machines. By using pre-commit to run che...272 readsBest PracticesGitHub Actions