A Pen by Mario Fink on CodePen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* CSS3 transforms & transitions | |
*/ | |
body { | |
font-family: sans-serif; | |
} | |
.box { | |
background: #bada55; | |
border-radius: 1em; | |
width: 15em; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .aliases | |
alias search='find . -iname ' | |
alias changelog='svn log -l 10 -v | more' | |
alias mychangelog="svn log -l 50 | sed -n '/mario.fink/,/-----$/ p'" | |
alias uservm='source /Users/mariofink/.rvm/scripts/rvm' | |
######################################################################## | |
# .profile | |
PS1="\n\w\n> " |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Editors/IDEs # | |
################ | |
*.swp | |
.idea | |
# Node/NPM # | |
############ | |
node_modules | |
npm-debug.log |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env bash | |
# | |
# checks how many times SASS variables have been used inside a project | |
# | |
if [ -z "$1" ]; then | |
echo "Please specify a directory as the first argument." | |
exit 1 | |
fi | |
if [ ! -d "$1" ]; then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env bash | |
# | |
# checks your scss files for unused variables | |
# | |
if [ -z "$1" ]; then | |
echo "Please specify a directory as the first argument." | |
exit 1 | |
fi | |
if [ ! -d "$1" ]; then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = function (grunt) { | |
grunt.initConfig({ | |
/** | |
* Build JS code from AMD modules with Browserify | |
*/ | |
browserify: { | |
testspecs: { | |
src: ["scripts/test/spec/<%= browserifySpecs %>.js"], | |
dest: 'scripts/test/specs-built.js' | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
while read -d $'0' arg ; do | |
echo $arg | |
if [[ $arg == *"/tags/"* ]]; then | |
echo "Pushing tags is not allowed!" | |
exit 1 | |
fi | |
done |
OlderNewer