Skip to content

Instantly share code, notes, and snippets.

View Dru-Go's full-sized avatar
:shipit:
Getting Busy

Dre Dru-Go

:shipit:
Getting Busy
View GitHub Profile
//
// ContentView.swift
// forms
//
// Created by Dre on 02/05/2025.
//
import SwiftUI
struct ContentView: View {
@Dru-Go
Dru-Go / commit-conventions.md
Created August 26, 2024 09:01
Commit Conventions Made Easy

Commit messages are like the breadcrumbs that guide you through the forest of your code. They help you remember what you did, why you did it, and how it all fits together. Using a clear format for these messages helps everyone on your team. It makes it easier to understand changes. It also keeps the project organized. Let’s dive into the fun world of Conventional Commits!

What Are Conventional Commits?

Conventional Commits is a set of rules. These rules help you write clear and consistent commit messages. Think of it like a secret code. It helps you and your teammates talk better about code changes. Here are some of the most common types of commit messages you'll encounter:

1. feat: A New Feature!

When you add something exciting to your application, like a shiny new button or a cool new page, you use feat. This tells everyone, “Hey, check out this awesome new feature!”

@Dru-Go
Dru-Go / .env
Last active August 14, 2024 12:20
Redis Docker Compose with Password
REDIS_PASSWORD=mypassword
@Dru-Go
Dru-Go / init.sh
Last active August 14, 2025 06:18
Server Initialization
sudo apt update
#ZSH
sudo apt install zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
@Dru-Go
Dru-Go / .bashrc
Last active November 25, 2020 03:56
Necessary files
alias la='ls -a'
alias glog='git log --name-status --graph'
alias onelog='git log --oneline --graph --decorate --all'
alias gstat='git status'
alias start='npm start'
alias pulse='pulseaudio --start --log-target=syslog'
alias code='code-oss'
alias rng='ranger'
alias x='exit'
{"lastUpload":"2021-01-29T04:11:26.814Z","extensionVersion":"v3.4.3"}