Skip to content

Instantly share code, notes, and snippets.

View james-pre's full-sized avatar
💻
Developing stuff

James Prevett james-pre

💻
Developing stuff
View GitHub Profile
@james-pre
james-pre / aliases.sh
Last active May 5, 2024 16:37
Useful `git` aliases
#!/bin/bash
# Adds some useful git aliases
echo "Adding aliases"
# Lists changes (i.e. commit messages)
# "- " prefixed before each line after any whitespace for easily making a markdown list
# You can optionally provide from and to tags.
# `git ls-changes` will list changes from the last tag to HEAD
# `git ls-changes tag_a` will list changes from tag_a to HEAD

Getting the game locally

The first step to doing anything with Blankstorm is to get a clone of the game locally.

Download and install Git from https://git-scm.com/downloads.

You should enable the "Git GUI here" and "Git Bash here" options if you are using Windows 10 as that will make step 2 easier. You must include support for Git LFS.

Find a folder where you would like to put your local clone, then open Git Bash (either using "Git Bash here" or using Windows terminal) from the right-click or context menu.

@zaxbux
zaxbux / gdocs.xml
Last active June 12, 2024 11:40
File Types
<?xml version="1.0" encoding="UTF-8"?>
<mime-info xmlns="http://www.freedesktop.org/standards/shared-mime-info">
<mime-type type="application/vnd.google-apps.document">
<comment>Google Docs</comment>
<glob pattern="*.gdoc" />
</mime-type>
<mime-type type="application/vnd.google-apps.drawing">
<comment>Google Drawings</comment>
<glob pattern="*.gdraw" />
</mime-type>
@JBlond
JBlond / bash-colors.md
Last active July 26, 2024 11:49 — forked from iamnewton/bash-colors.md
The entire table of ANSI color codes.

Regular Colors

Value Color
\e[0;30m Black
\e[0;31m Red
\e[0;32m Green
\e[0;33m Yellow
\e[0;34m Blue
\e[0;35m Purple