View default-linux.conf
<VirtualHost *:80> | |
ServerName 10.10.0.3 | |
DocumentRoot /home/vagrant/htdocs/apad2/app/webroot | |
<Directory /home/vagrant/htdocs/apad2/app/webroot> | |
Options Indexes FollowSymLinks MultiViews | |
AllowOverride All | |
Require all granted | |
</Directory> | |
ErrorLog ${APACHE_LOG_DIR}/error-apad.log |
View before_filter.php
<?php | |
// Validates tenant | |
switch (isset($this->request->params['tenant'])) { | |
case true: | |
// The tennant should exist | |
$this->loadModel('Tenant'); | |
if ($this->Tenant->isExist($this->request->params['tenant']) == 0) { | |
throw new NotFoundException(); | |
} |
View RebuildAroShell.php
<?php | |
class RebuildAroShell extends AppShell { | |
public $uses = array('User', 'Group'); | |
public function main() { | |
$groups = $this->Group->find('all'); | |
$users = $this->User->find('all'); | |
$aro = new Aro(); |
View output.txt
Warning: Setting DYLD_* vars can break dynamic linking. | |
Set variables: | |
DYLD_FALLBACK_LIBRARY_PATH | |
Warning: "config" scripts exist outside your system or Homebrew directories. | |
`./configure` scripts often look for *-config scripts to determine if | |
software packages are installed, and what additional flags to use when | |
compiling and linking. | |
Having additional scripts in your path can confuse software installed via |
View staging.rb
set :stage, :staging | |
server "example.com", roles: [:app, :web, :db] | |
set :ssh_options, { | |
user: "william", | |
forward_agent: true | |
} | |
set :deploy_to, "/home/william/htdocs/#{fetch(:application)}" | |
set :deploy_via, :remote_cache |
View router.php
<?php | |
// The Slim Framework helps you map resource URIs to callback functions | |
// for specific HTTP request methods (e.g. GET, POST, PUT, DELETE, OPTIONS or HEAD). | |
// A Slim application will invoke the first route that matches | |
// the current HTTP request’s URI and method. | |
// If the Slim application does not find routes with URIs that match | |
// the HTTP request URI and method, it will automatically | |
// return a 404 Not Found response. |
View itertools_example.py
from itertools import combinations | |
teams = ["Packers", "49ers", "Ravens", "Patriots"] | |
for game in combinations(teams, 2): | |
print game | |
# => ('Packers', '49ers') | |
# => ('Packers', 'Ravens') | |
# => ('Packers', 'Patriots') | |
# => ('49ers', 'Ravens') |
View MyCustomHelper.php
<?php | |
class MyCustomHelper extends AppHelper { | |
public function sayMessage($name) { | |
$view = new View; | |
return $view->element('path/to/element', array('name' => $name)); | |
} | |
} |
View .bash_profile
PATH="/usr/local/bin:$PATH" | |
if [ -f `brew --prefix`/etc/bash_completion.d/git-prompt.sh ]; then source `brew --prefix`/etc/bash_completion.d/git-prompt.sh; fi # for Git completion | |
export PS1="\[\033[01;34m\]\$(rbenv version-name) \[\033[01;32m\]\w\[\033[01;35m\]\$(__git_ps1 \" (%s)\") \[\033[01;36m\]\$\[\033[00m\] " |