Skip to content

Instantly share code, notes, and snippets.

@mixtmeta
mixtmeta / cards.css
Last active August 29, 2015 14:17
KnockoutJS Cards
*,
*:before,
*:after {
box-sizing: border-box;
}
.card {
margin: 10px;
text-align: center;
padding: 10px;
@mixtmeta
mixtmeta / app.css
Last active August 29, 2015 14:17
Javascript Events example
#outer {
width: 500px;
height: 500px;
background-color: green;
}
#inner {
width: 150px;
height: 150px;
background-color: red;
@mixtmeta
mixtmeta / deckOfCards.js
Last active August 29, 2015 14:17
Deck of Cards
var suits = {
SPADES: 'spades'
,HEARTS: 'hearts'
,CLUBS: 'clubs'
,DIAMONDS: 'diamonds'
};
var ranks = {
ACE: 1
,TWO: 2
@mixtmeta
mixtmeta / gitinit.sh
Last active August 29, 2015 14:06
Script to create new Git repositories on DreamHost
#!/bin/bash
# this script is based on code from the following script:
# https://github.com/tmacam/private-git-on-dreamhost/blob/master/newgit.sh
set -e
# intial values
GIT_REPOS_ROOT="${HOME}/git/repos"
DESCRIPTION='A Git Repository'