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.
Adblocker Detected
It looks like you're using an adblocker. Our website relies on ads to keep running. Please consider disabling your adblocker to support us and access the content.
Cheatsheet
مُلزَمة شاملة لقوانين الإلكترونيات الأساسية (Cheatsheet)
No preview available for this content.
Nov 11, 2025
Read More Cheatsheet
ملخص شامل لقوانين الإلكترونيات: دليل كامل للرموز والمعادلات الأساسية
- V الجهد بالفولت
- I التيار بالأمبير
- R المقاومة بالأوم
- <span class="katex"> I = \dfrac{V}{R} </span>
- <span class="katex"> R = \dfrac{V}{I} </span>
Nov 11, 2025
Read More Cheatsheet
قائمة القوانين الأساسية في الإلكترونيات: دليل شامل وسريع للمهندسين والهواة
- R_total = (R1 × R2) ÷ (R1 + R2)
- C (Capacitance) = السعة
Nov 11, 2025
Read More Cheatsheet
ShadCN Cheatsheet
components/
ui/ # All ShadCN UI components
button.tsx
card.tsx
...
shared/ # Your own custom UI components
layout/ # Layout wrappers- Official Docs: https://ui.shadcn.com
- GitHub: https://github.com/shadcn/ui
Apr 12, 2025
Read More Cheatsheet
css html
Grids Cheatsheet
.item {
/* Grid Area - Multiple ways to use it */
grid-area: header; /* Named template area */
grid-area: 1 / 1 / 2 / 3; /* row-start/column-start/row-end/column-end */
grid-area: 2 / span 3; /* Start at row 2, span 3 columns */
/* Individual grid-row/column properties */
grid-column: 1 / 3; /* Start / end column */
grid-column: span 2; /* Span multiple columns */
grid-row: 1 / 3; /* Start / end row */
/* Individual alignment */
justify-self: start | end | center | stretch;
align-self: start | end | center | stretch;
place-self: center center; /* Shorthand for both */
}
/* Example usage of grid-area with template areas */
.header { grid-area: header; }
.sidebar { grid-area: sidebar; }
.main { grid-area: main; }
.footer { grid-area: footer; }<!-- Basic grid -->
<div class="grid">
<!-- Column configurations -->
<div class="grid grid-cols-3"> <!-- 3 equal columns -->
<div class="grid grid-cols-none"> <!-- No columns -->
<div class="grid grid-cols-[200px_1fr_200px]"> <!-- Custom columns -->
<!-- Row configurations -->
<div class="grid grid-rows-3"> <!-- 3 equal rows -->
<div class="grid grid-rows-[200px_1fr_100px]"> <!-- Custom rows -->
<!-- Gaps -->
<div class="gap-4"> <!-- Both row and column gap -->
<div class="gap-x-4"> <!-- Column gap only -->
<div class="gap-y-4"> <!-- Row gap only -->
<!-- Auto flow -->
<div class="grid-flow-row">
<div class="grid-flow-col">
<div class="grid-flow-dense">
<!-- Alignment -->
<div class="justify-items-start">
<div class="justify-items-center">
<div class="items-center"> <!-- Vertical alignment -->Jan 14, 2025
Read More