Skip to content

Instantly share code, notes, and snippets.

View sanidhyy's full-sized avatar
🚀
Building Next.js Projects

Sanidhya Kumar Verma sanidhyy

🚀
Building Next.js Projects
View GitHub Profile
@WebDevSimplified
WebDevSimplified / bootstrap-breakpoint.css
Last active April 12, 2025 20:10
This stylesheet adds text describing the current Bootstrap Breakpoint in the top right corner of the screen.
body {
margin-top: 40px; /* This margin just makes the text easier to read. You can remove it if you want since it can mess with your other styles. */
}
body::before {
content: "XS";
color: red;
font-size: 2rem;
font-weight: bold;
position: fixed;
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active April 29, 2025 08:17
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example