DeveloperBreeze

Cheatsheets Programming Tutorials, Guides & Best Practices

Explore 33+ expertly crafted cheatsheets tutorials, components, and code examples. Stay productive and build faster with proven implementation strategies and design patterns from DeveloperBreeze.

ShadCN Cheatsheet

Cheatsheet April 12, 2025

Multiple components:

npx shadcn-ui@latest add button card input

Grids Cheatsheet

Cheatsheet January 14, 2025
css html

<!-- Basic columns -->
<div class="col">                                 <!-- Equal width -->
<div class="col-6">                               <!-- 6/12 width -->
<div class="col-auto">                            <!-- Content-width -->

<!-- Responsive columns -->
<div class="col-sm-6">                           <!-- 6/12 on small screens -->
<div class="col-md-4">                           <!-- 4/12 on medium screens -->
<div class="col-lg-3">                           <!-- 3/12 on large screens -->

<!-- Column ordering -->
<div class="order-1">                            <!-- Order first -->
<div class="order-last">                         <!-- Order last -->

<!-- Offset -->
<div class="offset-md-3">                        <!-- Offset by 3 columns -->

<!-- Alignment -->
<div class="align-self-start">
<div class="align-self-center">
<div class="align-self-end">
/* Bootstrap breakpoints */
--bs-breakpoint-sm: 576px;
--bs-breakpoint-md: 768px;
--bs-breakpoint-lg: 992px;
--bs-breakpoint-xl: 1200px;
--bs-breakpoint-xxl: 1400px;

/* Tailwind default breakpoints */
sm: '640px'
md: '768px'
lg: '1024px'
xl: '1280px'
2xl: '1536px'

Python List Operations Cheatsheet

Cheatsheet October 24, 2024
python

my_list = ["apple", "banana", "cherry", "banana"]
print(my_list.count("banana"))  # Output: 2
my_list = [1, 2, 3, 4]
my_list.reverse()
print(my_list)  # Output: [4, 3, 2, 1]

Essential dpkg Commands Cheat Sheet for Debian and Ubuntu Systems

Cheatsheet October 24, 2024

Installs a .deb package.

  • Remove a package:

Best Tools for Generating Backgrounds Patterns for Your Website

Cheatsheet October 21, 2024

  • Website: PatternPad
  • Features:
  • Create custom, tileable patterns by adjusting shapes, colors, and layout.
  • Real-time preview for instant feedback on your designs.
  • Download in various formats, including PNG and SVG.
  • Best For: Designers who want full control over pattern customization with real-time editing.
  • Website: Patterninja
  • Features:
  • Interactive tool with drag-and-drop functionality for creating complex patterns.
  • Easily layer images and shapes, customize colors, and adjust patterns.
  • Download in PNG format and use it on your website or as wallpaper.
  • Best For: Users who enjoy experimenting with intricate, layered patterns that are fun and engaging to create.