I hereby claim:
- I am chrisamoore on github.
- I am camdesigns (https://keybase.io/camdesigns) on keybase.
- I have a public key whose fingerprint is F785 CE4C 0955 B6DA CE5B 9C44 BAB6 371D 5E0B 0427
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
<?php | |
//... Not verbatim but gisty | |
public function controllerAction(){ // index whatever | |
$data['survey'] = $surveyData = $this->getSurvey(); | |
$this->load->view('view', $data); | |
} | |
public function getSurvey(){ |
vcsrepo { '/vagrant/repo': | |
ensure => present, | |
provider => git, | |
source => '[email protected]:repo/repo.git', | |
require => Exec['bouncer'] | |
} | |
//// Returns | |
bash: warning: setlocale: LC_ALL: cannot change locale (en_US) | |
remote: Counting objects: 476, done. |
.... // your codez | |
class { 'nodejs': | |
version => 'latest', | |
} | |
package { 'bower': | |
provider => npm, | |
require => Class['nodejs'] | |
} |
server { | |
listen *:80; | |
server_name site.dev www.site.dev; | |
access_log /var/log/nginx/site.dev.access.log; | |
error_log /var/log/nginx/site.dev.error.log; | |
location / { | |
root /var/www/site/public; |
<form method="POST" action="http://frontline.dev/appointments/4" accept-charset="UTF-8"> | |
<input name="_method" type="hidden" value="PATCH"> | |
<input name="_token" type="hidden" value="PROPCMA5b4UC4SNexoexu2ANst1a1OLo7bjJTYzk"> | |
<input name="appointment_time" type="hidden" value="2014-02-20 13:00:00"> | |
<input name="status" type="hidden" value="ARRIVED"> | |
<div class="btn-group actions"> | |
<a class="status-btn btn " data-action="confirm">Confirmed</a> | |
<a class="status-btn btn btn-info " data-action="arrived">Arrived</a> | |
<a class="status-btn btn " data-action="complete">Completed</a> | |
<a class="status-btn btn " data-action="canceled">Cancel / refund</a> |
<form method="POST" action="http://frontline.dev/appointments/4" accept-charset="UTF-8"> | |
<input name="_method" type="hidden" value="PATCH"> | |
<input name="_token" type="hidden" value="PROPCMA5b4UC4SNexoexu2ANst1a1OLo7bjJTYzk"> | |
<input name="appointment_time" type="hidden" value="2014-02-20 13:00:00"> | |
<input name="status" type="hidden" value="ARRIVED"> | |
<div class="btn-group actions"> | |
<a class="status-btn btn " data-action="confirm">Confirmed</a> | |
<a class="status-btn btn btn-info " data-action="arrived">Arrived</a> | |
<a class="status-btn btn " data-action="complete">Completed</a> | |
<a class="status-btn btn " data-action="canceled">Cancel / refund</a> |
<?php | |
$loader = new Loader\YamlFileLoader( | |
$container, | |
new FileLocator(__DIR__.'/../Resources/config') | |
); | |
$loader->load('parameters.yml'); | |
dd($loader); |
<?php | |
//TODO: MAke Gooder Codes here | |
public function convertToBundle($str) | |
{ | |
//$str = 'UE\Stampede\TestBundle\Controller\TestController::getTestsAction'; | |
/// find :: shift back to before controller | |
// strip action | |
$str = preg_replace('/Action/', '', $str); | |
$str = preg_replace('/::/', ':', $str); |
server: | |
packages: | |
- vim-common | |
- libgearman | |
- libgearman-devel | |
- gearmand | |
- npm |