Pre-requisites
- Crashplan account
- FreeNAS-9.1.1-RELEASE-x64 (a752d35)
| <?php | |
| declare(strict_types=1); | |
| use Rector\CodeQuality\Rector\BooleanAnd\SimplifyEmptyArrayCheckRector; | |
| use Rector\CodeQuality\Rector\Expression\InlineIfToExplicitIfRector; | |
| use Rector\CodeQuality\Rector\Foreach_\UnusedForeachValueToArrayKeysRector; | |
| use Rector\CodeQuality\Rector\FuncCall\ChangeArrayPushToArrayAssignRector; | |
| use Rector\CodeQuality\Rector\FuncCall\SimplifyRegexPatternRector; | |
| use Rector\CodeQuality\Rector\FuncCall\SimplifyStrposLowerRector; |
| /* | |
| This document has been created with Marked.app <http://markedapp.com>, Copyright 2011 Brett Terpstra | |
| Please leave this notice in place, along with any additional credits below. | |
| --------------------------------------------------------------- | |
| Title: Invoice Niepi | |
| Author: Thomas Niepraschk | |
| Description: Basic invoice template. | |
| */ | |
| body { |
Pre-requisites
| #!/bin/bash | |
| # php switch for homebrew | |
| # $ brew tap josegonzalez/php && brew install php53 --with-mysql && brew install php54 --with-mysql | |
| # Might as well ask for password up-front, right? | |
| sudo -v | |
| VERSION_FILE="$( cd -P "$( dirname "${BASH_SOURCE[0]}" )" && pwd )/php-switch.version" |
| <?php | |
| $apnsHost = 'gateway.sandbox.push.apple.com'; | |
| $apnsCert = 'apns-dev.pem'; | |
| $apnsPort = 2195; | |
| $streamContext = stream_context_create(); | |
| stream_context_set_option($streamContext, 'ssl', 'local_cert', $apnsCert); | |
| $apns = stream_socket_client('ssl://' . $apnsHost . ':' . $apnsPort, $error, $errorString, 2, STREAM_CLIENT_CONNECT, $streamContext); |
| #!/bin/bash | |
| # | |
| # Install Postgres 9.2 on a clean Ubuntu 12.04 | |
| """ | |
| LC_ALL issue | |
| comment out the AcceptEnv LANG LC_* line in the remote /etc/ssh/sshd_config file. | |
| sudo apt-get install language-pack-en-base | |
| sudo dpkg-reconfigure locales | |
| comment out the SendEnv LANG LC_* line in the local /etc/ssh/ssh_config file. |
| local return_code="%(?..%{$fg[red]%}%? ↵%{$reset_color%})" | |
| PROMPT='%{$fg[green]%}%c \ | |
| $(git_prompt_info)\ | |
| %{$fg[red]%}%(!.#.»)%{$reset_color%} ' | |
| PROMPT2='%{$fg[red]%}\ %{$reset_color%}' | |
| RPS1='%{$fg[blue]%}%~%{$reset_color%} ${return_code} ' | |
| # ZSH_THEME_GIT_PROMPT_PREFIX="%{$reset_color%}:: %{$fg[yellow]%}(" | |
| # ZSH_THEME_GIT_PROMPT_SUFFIX=")%{$reset_color%} " |
| # ~/.osx — http://mths.be/osx | |
| ############################################################################### | |
| # General UI/UX # | |
| ############################################################################### | |
| # Set computer name (as done via System Preferences → Sharing) | |
| scutil --set ComputerName "MathBook Pro" | |
| scutil --set HostName "MathBook Pro" | |
| scutil --set LocalHostName "MathBook-Pro" |
| require 'formula' | |
| def mysql_installed? | |
| `which mysql_config`.length > 0 | |
| end | |
| def postgres_installed? | |
| `which pg_config`.length > 0 | |
| end |