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
| file_uploads = On | |
| memory_limit = 64M | |
| upload_max_filesize = 64M | |
| post_max_size = 64M | |
| max_execution_time = 600 |
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
| version: '3' | |
| services: | |
| db: | |
| image: mysql:5.7 | |
| volumes: | |
| - db_data:/var/lib/mysql | |
| restart: always | |
| environment: | |
| MYSQL_ROOT_PASSWORD: somewordpress |
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
| { | |
| "images": [ | |
| { | |
| "imageName": "example", | |
| "fileName": "slide_1.png", | |
| "fileNameTablet": "slide_1.tablet.png", | |
| "description": "example description" | |
| }, | |
| { | |
| "imageName": "example 2", |
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
| { | |
| "user": "[email protected]", | |
| "key": "$%^&*()", | |
| "secret": "RTYUIOPDG1234567", | |
| "meta": { | |
| "some-meta": "you will need" | |
| } | |
| } |
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 | |
| echo convertToRoman(425); | |
| function convertToRoman($number) | |
| { | |
| $cases = [ | |
| "1" => "I", |
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
| PULLING DATA | |
| -git pull origin master | |
| PUSHING DATA | |
| -git pull origin master //always pull first | |
| -git add . | |
| -git commit -a -m "<add viable message>" | |
| -git push |
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 Cad\System\Library; | |
| use Sourcescript\LaravelDependencyInjector\Interfaces\DependencyInterface; | |
| /** | |
| * Best used w/ Fractal and LaravelDependenctInterface | |
| */ | |
| class Masonry | |
| { |
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
| { | |
| "name": "laravel/laravel", | |
| "description": "The Laravel Framework.", | |
| "keywords": ["framework", "laravel"], | |
| "license": "MIT", | |
| "require": { | |
| "laravel/framework": "4.2.*", | |
| "jenssegers/mongodb": "*", | |
| "cartalyst/sentry": "2.1.*", | |
| "jenssegers/mongodb-sentry": "*", |
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 Me extends Eloquent | |
| { | |
| public function heart() | |
| { | |
| $this->belongsTo('You'); | |
| } | |
| } | |
| $you = You::find(1); |
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
| .gform_wrapper ul { | |
| padding-left: 0; | |
| list-style: none; } | |
| .gform_wrapper li { | |
| margin-bottom: 15px; } | |
| .gform_wrapper form { | |
| margin-bottom: 0; } |
NewerOlder