DeveloperBreeze

Cheatsheet Content for Developers

Discover 38+ cheatsheet posts including tutorials, cheatsheets, guides, and real-world examples. Empower your development journey with practical insights, expert tips, and constantly updated resources on DeveloperBreeze.

Cheatsheet

ملخص شامل لقوانين الإلكترونيات: دليل كامل للرموز والمعادلات الأساسية

  • HIGH = 5 V
  • LOW = 0 V

بوابتا NAND و NOR أساس المنطق الرقمي.

Nov 11, 2025
Read More
Cheatsheet

قائمة القوانين الأساسية في الإلكترونيات: دليل شامل وسريع للمهندسين والهواة

  • Vout = Vin × (R2 ÷ (R1 + R2))
  • Vout = جهد الخرج
  • Vin = جهد الدخل
  • الكسب = − (Rf ÷ Rin)

Nov 11, 2025
Read More
Cheatsheet

ShadCN Cheatsheet

  • @testing-library/react
  • vitest or jest
npm install --save-dev @testing-library/react @testing-library/jest-dom

Apr 12, 2025
Read More
Cheatsheet
css html

Grids Cheatsheet

<!-- 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'

Jan 14, 2025
Read More