I hereby claim:
- I am randomecho on github.
- I am randomecho (https://keybase.io/randomecho) on keybase.
- I have a public key whose fingerprint is 119D F84C 21E4 E785 9C66 6D17 F21A BCE5 326C 3BC0
To claim this, I am signing this object:
#!/bin/sh | |
feature_branch=$(git branch | grep \* | sed 's/\* //') | |
all_branches=$(git branch | tr '\n' ' ') | |
main_branch=$1 | |
if [[ $all_branches != *$main_branch* ]]; then | |
echo "$main_branch is not a valid branch to merge back into" | |
exit 1 | |
fi |
-module(patterns). | |
-export([exxor/2,exxot/2,exxon/2,efix/2,maxThree/3,howManyEqual/3]). | |
exxor(X,Y) -> | |
X =/= Y. | |
exxot(X,Y) -> | |
X == Y. | |
exxon(X,Y) -> |
[alias] | |
soonvan = commit -m \"Created by Soon Van - randomecho.com\" | |
purple = commit -am \"purple monkey dishwasher\" | |
hist = log --pretty=format:\"%h %ad | %s%d\" --graph --date=short | |
histo = log --max-count=12 --pretty=format:\"%h %ad %s%d\" --graph --date=short | |
search = !sh -c 'git log --max-count=12 --grep=$1 --pretty=format:\"%h%C(bold yellow) %s%C(reset)\"' - | |
undo = reset --soft HEAD~ | |
edit = commit --amend | |
twt = !git add twitter.txt | |
waxy = !git add wax* && git s |
# .bashrc | |
alias rm='rm -i' | |
alias cp='cp -i' | |
alias mv='mv -i' | |
alias elog='tail -f /var/log/httpd/error_log' | |
alias loga='tail -f /var/log/httpd/access_log' | |
alias sugar='tail -f sugarcrm.log' | |
alias web='cd /srv/httpd/' | |
alias phpunit='custom/vendor/bin/phpunit --color' |
#!/usr/bin/env ruby | |
# | |
# mv folders to have underscore prefix | |
# | |
# Author:: Soon Van - randomecho.com | |
# Copyright:: Copyright 2016 Soon Van | |
# License:: http://opensource.org/licenses/BSD-3-Clause | |
require 'FileUtils' |
#!/usr/bin/env ruby | |
# | |
# Delete empty directories recursively | |
# | |
# Author:: Soon Van - randomecho.com | |
# Copyright:: Copyright 2016 Soon Van | |
# License:: http://opensource.org/licenses/BSD-3-Clause | |
require 'FileUtils' |
# ~/.bash_profile | |
export PATH="/usr/local/bin:/usr/local/sbin:~/bin:$PATH" | |
# Auto-completion helper when you hit tab | |
if [ -f $(brew --prefix)/etc/bash_completion ]; then | |
. $(brew --prefix)/etc/bash_completion | |
fi |
I hereby claim:
To claim this, I am signing this object:
ob_start(); | |
phpinfo(); | |
$phpInfo = ob_get_clean(); | |
$phpInfo = preg_replace('/600(px)?/', '100%', $phpInfo); // table and hr width | |
$phpInfo = str_replace('75%', '95%', $phpInfo); // font-size | |
$phpInfo = preg_replace('/<?([\w]|<|\/|>)*(a:|!DOCTYPE|<html|title|body)(.+)?\\n?/', '', $phpInfo); // main html doc tags |
<?php | |
/** | |
* Database hookup for wrapping around PDO | |
* | |
* @author Soon Van - randomecho.com | |
* @copyright 2013 Soon Van | |
* @license http://www.opensource.org/licenses/BSD-3-Clause | |
*/ | |
class DB { |