Skip to content

Instantly share code, notes, and snippets.

View lily-mara's full-sized avatar
💖

Lily Mara lily-mara

💖
View GitHub Profile
@jhradilek
jhradilek / .gitconfig
Created October 10, 2012 20:04
A Git alias to display the total number of insertions and deletions.
# Usage: git total [OPTION...]
#
# Options:
#
# In theory, the command accepts all command line options supported by
# the "git log" command. In reality, however, only few commit-limiting
# options are useful. This includes:
#
# --author=PATTERN, --committer=PATTERN
# Displays the number of lines changed by a certain author.
@ungoldman
ungoldman / dokku_setup.md
Last active November 28, 2023 12:35
Deploy your own PaaS: Setting up Dokku with DigitalOcean and Namecheap

Deploy your own PaaS!

Setting up Dokku with DigitalOcean and Namecheap

..or how I made my own heroku in a few hours for $3.98.


This write-up is several years out of date! You probably shouldn't use it.

@danielrw7
danielrw7 / replify
Last active October 24, 2023 12:03
replify - Create a REPL for any command
#!/bin/sh
command="${*}"
printf "Initialized REPL for `%s`\n" "$command"
printf "%s> " "$command"
read -r input
while [ "$input" != "" ];
do
eval "$command $input"
printf "%s> " "$command"
@elboletaire
elboletaire / workshop-download-button.js
Created August 10, 2020 00:21
Steam Workshop download button User Script
// ==UserScript==
// @name Steam Workshop Downloader
// @version 0.1
// @description Downloads steam workshop items using steamworkshopdownloader api
// @author El Boletaire
// @include *steamcommunity.com/sharedfiles/filedetails/?*id=*
// @include *steamcommunity.com/workshop/filedetails/?*id=*
// @grant GM_xmlhttpRequest
// @namespace https://github.com/elboletaire
// ==/UserScript==