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 | |
# Append/prepend text to line | |
function usage | |
{ | |
echo -e "Usage: $(basename "$0") [a|p] TEXT" | |
echo | |
echo -n "apline reads from standard input and appends/prepends TEXT to " | |
echo "each line." |
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
function pyenv() { | |
VIRTUALENVS_PATH=~/pyenvs | |
# Procure env name. If it was supplied in an argument, use that | |
if [[ "$1" != "" ]] | |
then | |
VIRTUALENV_NAME=$1 | |
else | |
# Otherwise prompt the user for it | |
VIRTUALENV_NAME="" |
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
<?php | |
# Function for converting an xml report into a json format | |
function report_to_json($path) | |
{ | |
# Check if the file exists | |
if(!file_exists($path)) return false; | |
# Set content type to json and charset to utf-8 | |
# header('Content-type: application/json; charset=utf-8'); |
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
// Shortcut for top-down gradient background color | |
td_gradient(color1, color2) | |
background-color (color1 + (color2 - color1) / 2) | |
background -webkit-gradient(linear, 0% 0%, 0% 100%, from(color1), to(color2)) | |
background -webkit-linear-gradient(top, color1, color2) | |
background -moz-linear-gradient(top, color1, color2) | |
background -ms-linear-gradient(top, color1, color2) | |
background -o-linear-gradient(top, color1, color2) | |
@css | |
{ |
NewerOlder