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/bash | |
cat >> ~/.bashrc << EOL | |
export PATH=$PATH:/var/lib/gems/1.8/bin | |
PS1='\[\033[01;32m\]\u@\h\[\033[01;34m\] \w \$\[\033[00m\] ' | |
alias ls='ls --color=auto' | |
alias grep='grep --colour=auto' | |
alias kx-python='s_development-python' |
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/python | |
# -*- coding: utf-8 -*- | |
# 2.7 | |
######################################################################## | |
## How To: ## | |
## Place script into 'js' folder or in any nested folder for local use## | |
## Call completeValidation() or statusChecking() to begin validation ## | |
## be aware you may use quiet mode (var 'quiet' at top-level) ## | |
######################################################################## |
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/python | |
# -*- coding: utf-8 -*- | |
# 2.7 | |
import sys | |
import os | |
import re | |
rootdir = '.' | |
filetypePattern = re.compile('.js$') |
NewerOlder