echo
echo "Hello, World"
cat <<< "Hello, World"
echo
echo "Hello, World"
cat <<< "Hello, World"
| #!/usr/local/bin/fontforge | |
| #This is the sfddiff script which compares two fonts | |
| if ( Strtol($version) < 20060330 ) | |
| Error( "Please upgrade to a more recent version of fontforge" ) | |
| endif | |
| flags=0x789 | |
| outfile="" |
| // JavaScript | |
| // Helpers | |
| function serialize(o){ | |
| return Object.keys(o).reduce(function (previous, key) { | |
| return previous + (previous?'&':'') + key + '=' + o[key]; | |
| },''); | |
| } |
| R c #FF0000 | |
| Y c #FFFF00 | |
| G c #00FF00 | |
| T c #88FF88 | |
| L c #00FFFF | |
| B c #0000FF | |
| V c #FF00FF | |
| P c #FF0088 | |
| c None | |
| RYG |
| <?php | |
| // Return 304 when files are not changed | |
| if (isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) && | |
| strtotime($_SERVER['HTTP_IF_MODIFIED_SINCE']) >= filemtime(__FILE__)) | |
| { | |
| header('HTTP/1.0 304 Not Modified'); | |
| exit; | |
| } |
| #!/bin/bash | |
| # Checks the files and directories permissions of the web application | |
| Options=$@ | |
| Optnum=$# | |
| httpd_group="www" | |
| app_owner="wwwrun" | |
| app_group="wwwdata" | |
| app_path="." |
| # Aliases | |
| # To unset alias use: `unalias ...` | |
| alias ll='ls -lG' | |
| alias ss='stat --printf="%A\t%a\t%h\t%U\t%G\t%s\t%.19y\t%n\n"' | |
| #alias traceroute='tracert -d' | |
| alias timestamp='date +%Y%m%d%H%M%S' | |
| alias iso='date +%Y-%m-%dT%H:%M:%S' | |
| # brew install w3m | |
| alias html2text="w3m -dump -T 'text/html'" | |
| alias untar="tar -zxvf" |