Skip to content

Instantly share code, notes, and snippets.

View jeremy0x's full-sized avatar
🎯

Jeremiah Aworetan jeremy0x

🎯
View GitHub Profile
@jeremy0x
jeremy0x / custom-scrollbar.css
Last active March 6, 2024 11:27
Custom Scrollbar Snippet
:root {
--scrollbar-bg-color: #f1f1f1;
--scrollbar-thumb-bg-color: #888;
--scrollbar-thumb-hover-color: #555;
--scrollbar-thumb-active-color: #000;
--scrollbar-border-radius: 10px;
}
*::-webkit-scrollbar {
width: 4px;
@levibostian
levibostian / README.md
Last active March 31, 2024 17:23
Beginner guide to conventional commits.

You know that when you are writing code and you make a git commit to your code? You know that when you make a commit, you are asked to type a message for that commit, right?

Conventional commits are a set of rules to follow for what to type for your commit messages. For example, let's say that you add a new feature to your latest app where users can upload a photo for their profile. Instead of writing a commit message like this: Add feature so users can upload profile picture for profile, you would write a commit message like this: feat(profile): user can upload profile picture. Notice that when you read both messages, they both mean the same thing. However, they are written in 2 different formats. When you write your commit message in the later format, we call that a Conventional commit.

Why?

Conventional commits are becoming more popular today and for good reason. Conventional commits are not only more descriptive to read, but they are written in a format that a computer can understand better

@qoomon
qoomon / conventional_commit_messages.md
Last active May 18, 2024 15:27
Conventional Commit Messages

Conventional Commit Messages

See how a minor change to your commit message style can make a difference.

Tip

Have a look at git-conventional-commits , a CLI util to ensure these conventions and generate verion and changelogs

Commit Message Formats

Default

@citrusui
citrusui / dropdown.md
Last active May 15, 2024 01:34
"Dropdowns" in Markdown
How do I dropdown?
This is how you dropdown.

<details>
<summary>How do I dropdown?</summary>
<br>
This is how you dropdown.