Skip to content

Instantly share code, notes, and snippets.

View unrealsolver's full-sized avatar
💭
🍝 🍝 🔨 ✋

Ruslan unrealsolver

💭
🍝 🍝 🔨 ✋
View GitHub Profile
#!/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'
#!/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) ##
########################################################################
@unrealsolver
unrealsolver / gist:7783533
Created December 4, 2013 07:11
Tool for checking logging messages and other stuff
#!/usr/bin/python
# -*- coding: utf-8 -*-
# 2.7
import sys
import os
import re
rootdir = '.'
filetypePattern = re.compile('.js$')