See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| echo 'alias ccc="npx claude-code-costs"' >> ~/.zshrc |
| <script> | |
| (function() { | |
| // Function to inject date picker | |
| function injectDatePicker() { | |
| // Find the date input field | |
| const dateInput = document.querySelector('input[name="custom_fields.4"]'); | |
| if (!dateInput) { | |
| return false; | |
| } |
| #!/bin/bash | |
| # Change the variables | |
| password="clusterctrl" | |
| function main { | |
| echo What do you want to do? | |
| echo "[1] Run a bulk command" | |
| echo "[2] Update & Upgrade all systems" |
| apt-get update -y | |
| apt-get install \ | |
| apt-transport-https \ | |
| ca-certificates \ | |
| curl \ | |
| gnupg-agent \ | |
| software-properties-common -y | |
| curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - | |
| add-apt-repository \ | |
| "deb [arch=amd64] https://download.docker.com/linux/ubuntu \ |
| sudo apt-get update -y | |
| sudo apt-get install \ | |
| apt-transport-https \ | |
| ca-certificates \ | |
| curl \ | |
| gnupg-agent \ | |
| software-properties-common -y | |
| curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - | |
| sudo add-apt-repository \ | |
| "deb [arch=amd64] https://download.docker.com/linux/ubuntu \ |
I hereby claim:
To claim this, I am signing this object:
| const main = require("../bot.js") | |
| const config = require("../settings/config.json") | |
| const catList = require("../settings/catList.json") | |
| // Split function | |
| function getSecondPart(str) { | |
| return str.split('-')[1]; | |
| } | |
| exports.run = async (message, args) => { |
| const main = require("../bot.js") | |
| const config = require("../settings/config.json") | |
| const catList = require("../settings/catList.json") | |
| exports.run = async (message,args) => { | |
| message.channel.send( | |
| {embed: { | |
| color: 0x9B59B6, | |
| "image": { |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | 🎉 :tada: |
| Version tag | 🔖 :bookmark: |
| New feature | ✨ :sparkles: |
| Bugfix | 🐛 :bug: |