Advanced Search
Search Results
12 total results found
Public
Public Documentation
Halo Install Guides
Resizing HDD (Linux)
Resize disk with any solution (GParted, etc). Use lsblk to get the partition you want to expand. sudo growpart /dev/sda 2 # 2 is the partition you want to increase in size. sudo resize2fs /dev/sda2
Reset Repo Commits
Linux export GIT_RESET_USER=yourUserNameOrOrgName export GIT_RESET_REPO=yourRepoName rm -rf .git git init git add . git checkout -b main git commit -m "Initial Commit" git remote add origin [email protected]:$GIT_RESET_USER/$GIT_RESET_REPO.git git remote set-url ...
Regex
Empty Lines after if/else/while/for (if |else |else if |for |while ).+\n\n Resources Regex Tester Regex Cheat Sheet
Prune Docker
docker image prune -a -f docker volume prune -f docker network prune -f
HTML Redirects
Redirect to another site with HTML. <!-- index.html --> <meta http-equiv="refresh" content="0; url=https://example.com"> # .htaccess ErrorDocument 404 https://example.com
GitHub API: Organization Membership
This simple curl command will set your membership to public/private for any organization. A use case would be an organization so big you can't search for yourself. For this to work, you need a GitHub Personal Access Token. # To make an org private, replace PUT...
Saving chmod +x in a Git Repo
export fileType=.sh git config core.fileMode true find . -type f -iname "*$fileType" -exec chmod +x {} \; find . -type f -iname "*$fileType" -exec git update-index --chmod=+x {} \; git add . && git commit -am "Update Execute Permissions" && git push
Halo: CE Install Guide
Download and extract Halo CE. Run install.bat from the HaloCE folder. Run the game from the desktop shortcut. Notes: Press F6 to adjust FOV (Pull Mouse Back). Press F4 in a server to bookmark it, then F5 to list bookmarks and Alt+Number to join the server ...
Halo 2 Install Guide
Download and extract Halo 2. Run halo2.exe. Create an account in game & verify your email. Log into Halo 2. Download any updates.
Ultimate Media Server Guide
Ubuntu Server Download Etcher Download sudo apt update && sudo apt upgrade -y sudo apt install unattended-upgrades apt-listchanges -y sudo dpkg-reconfigure -plow unattended-upgrades sudo nano /etc/apt/apt.conf.d/50unattended-upgrades sudo apt-get insta...