Skip to content

Instantly share code, notes, and snippets.

@mmonkey
mmonkey / Pixelmon 4.2.7 Blocks
Created June 29, 2016 02:17
Block ids for Pixelmon 4.2.7
pixelmon:AmethystBlock
pixelmon:AmethystOre
pixelmon:Ancient_Pillar
pixelmon:Articuno_Shrine
pixelmon:Bauxite
pixelmon:Black_Apricorn_Tree
pixelmon:Blue_Apricorn_Tree
pixelmon:BlueClock
pixelmon:BluePokeballRug
pixelmon:BlueUmbrella
@mmonkey
mmonkey / Pixelmon 4.2.7 Items
Created June 29, 2016 02:08
Item ids for Pixelmon 4.2.7
pixelmon:Amethyst
pixelmon:AmethystAxe
pixelmon:AmethystBlock
pixelmon:AmethystHammer
pixelmon:AmethystHoe
pixelmon:AmethystOre
pixelmon:AmethystPickaxe
pixelmon:AmethystShovel
pixelmon:AmethystSword
pixelmon:Ancient_Pillar
@mmonkey
mmonkey / happy_git_on_osx.md
Last active August 29, 2015 14:26 — forked from trey/happy_git_on_osx.md
Creating a Happy Git Environment on OS X

Creating a Happy Git Environment on OS X

Step 1: Install Git

brew install bash-completion

Configure things:

git config --global user.name "Your Name"

git config --global user.email "you@example.com"

@mmonkey
mmonkey / Trello Bookmarklet.md
Last active August 29, 2015 14:22
Bookmarklet for showing card numbers on trello

#Full Code

(function(){
var fillInCardNum = function(e, loop) {
    if (loop > 1000) {
        console.log("Never caught it");
    }
    else {
        var $link = e.find("a.list-card-title.js-card-name");
        if ($link.attr("href") === undefined) {
@mmonkey
mmonkey / get_classes
Created February 19, 2015 15:23
List all class selectors from stylesheets - (Paste in console)
var cssRules = [];
var selectors = [];
var classes = [];
var results = [];
// Get all selectors from all styleSheets that aren't undefined
for(var i = 0; i < document.styleSheets.length; i++) {
for(var j = 0; j < document.styleSheets[i].cssRules.length; j++) {
if(typeof document.styleSheets[i].cssRules[j].selectorText !== 'undefined') {
cssRules.push(document.styleSheets[i].cssRules[j].selectorText);

Multiple SSH Keys settings for different github account

create different public key

create different ssh key according the article Set-Up Git

$ ssh-keygen -t rsa -C "your_email@youremail.com"