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
/* | |
sformat(str, arg1, arg2, etc..) | |
USAGE: | |
============================================================== | |
sformat("{0}", "test"); //returns test | |
sformat("{{0}}"); //returns {0} | |
sformat("{{{0}}}", "test"); //returns {test} | |
sformat("{0} {0}", "test"); //returns test test | |
sformat("{0} {1}", "first", "second"); //returns first second |
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 | |
### USAGE | |
### | |
### ./ElasticSearch.sh 1.7 will install Elasticsearch 1.7 | |
### ./ElasticSearch.sh will fail because no version was specified (exit code 1) | |
### | |
### CLI options Contributed by @janpieper | |
### Check http://www.elasticsearch.org/download/ for latest version of ElasticSearch |
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 | |
# This block defines the variables the user of the script needs to input | |
# when deploying using this script. | |
# | |
# <UDF name="hostname" label="The hostname for the new Linode."> | |
# <UDF name="username" label="Add a user account to add to sudo"> | |
# <UDF name="password" label="The sudo user's password"> | |
# <UDF name="db_password" Label="MySQL root Password" /> | |
# <UDF name="db_name" Label="Database Name" default="" example="Create this database" /> | |
# <UDF name="db_name2" Label="Database 2 Name" default="" example="Create this database" /> |
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
set nocompatible " be iMproved, required | |
filetype off " required | |
" set the runtime path to include Vundle and initialize | |
set rtp+=/etc/vim/bundle/vundle | |
call vundle#begin('/etc/vim/bundle') " Use a shared folder | |
set number | |
set mouse=a | |
set term=xterm-256color |
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 namespace Endata\Billing; | |
use Stripe; | |
use Stripe_Charge; | |
use Stripe_Customer; | |
use Stripe_InvalidRequestError; | |
use Stripe_CardError; | |
use Config; | |
use Exception; |
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 namespace Endata\Data; | |
use Illuminate\Support\Facades\DB; | |
use Illuminate\Support\Facades\File; | |
use Ingredient; | |
use Nutrient; | |
use Composition; | |
use Settings; | |
use Plant; | |
use Formula; |
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 namespace Endata\Lists; | |
use MailChimp; | |
use Carbon\Carbon; | |
class MailingList { | |
protected $mailchimp; | |
protected $list_id = 'MCIDXXX'; // The MailChimp list id |
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 | |
class IngredientTypesController extends BaseController { | |
/** | |
* Ingredient Types Repository | |
* | |
* @var IngredientType | |
*/ | |
protected $type; |
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 | |
class Nutrient extends BaseModel { | |
protected $guarded = array(); | |
public static $rules = array( | |
'name' => 'required', | |
'unit' => 'required' | |
); |
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/sh | |
while true; | |
do | |
clear | |
git log \ | |
--graph \ | |
--all \ | |
--color \ | |
--date=short \ | |
-40 \ |
OlderNewer