Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

11 total results found

Public

Public Documentation

Git

Public

Things relating to Git.

Gaming

Public

Things related to Video Games.

Linux Hard Drive Management

Public

Mounting a new drive lsblk # Find the drive you want to use fdisk /dev/sdc # sdc is an example, change accordingly. g # make a new GPT table (wipe out old partitions, start fresh) n # enter enter enter (use 1 partition, use entire disk) w # write changes reboo...

Reset Repo Commits

Public Git

Linux export GIT_RESET_USER=yourUserNameOrOrgName export GIT_RESET_REPO=yourRepoName export GIT_HOST=https://git.chse.dev rm -rf .git git init git add . git checkout -b main git commit -m "Initial Commit" git remote add origin $GIT_HOST/$GIT_RESET_USER/$GIT_RE...

GitHub API: Organization Membership

Public Git

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

Public Git

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

Ghost Snippets

Public

Place any of the following in your Code Injection settings. Found in: Ghost Admin -> Settings -> Advanced -> Code Injection Site Header <style> /* Make Hamburger Menu (Mobile) Visible on Dark Mode */ .gh-burger:after, .gh-burger:before { ba...

Minecraft Client Mods/Resource Packs

Public Gaming

Mods Fabulously Optimized Inventory Profiles Next Inventory Tabs libIPN Phosphor Shulker Box Tooltip Sodium Simple Voice Chat BetterF3 Freecam MiniHUD Tweakeroo Litematica CList Resource Packs Faithful 32x Blockstates Blue A...

DarkRP Server Rules

Public Gaming

Respect Everyone. That means no racism, homophobia, transphobia, or any form of harrassment. Bases must be raidable, and have minimal advantages for you defending. (No Crouch/Jumping, Maze, small holes to shoot through, etc. bases) You can have a maximum of 5...

Building PlotSquared

Public Gaming

git clone https://github.com/IntellectualSites/PlotSquared.git cd PlotSquared docker run --rm -u gradle -v "$PWD":/home/gradle/project -w /home/gradle/project gradle:8.7-jdk17 gradle build cd Bukkit/build/libs/ # plotsquared-bukkit-X.Y.Z-SNAPSHOT.jar