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
| # -*- coding: utf-8 -*- | |
| from pprint import pformat | |
| from urllib2 import _parse_proxy | |
| from twisted.python.log import err | |
| from twisted.web.client import ProxyAgent | |
| from twisted.internet import reactor | |
| from twisted.internet.defer import Deferred | |
| from twisted.internet.protocol import Protocol | |
| from twisted.internet.endpoints import TCP4ClientEndpoint |
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
| /* | |
| Include this after bootstrap.css. Add class of | |
| vert-offset-top-value or vert-offset-bottom-value | |
| to your Bootstrap 3 default rows to prevent row content | |
| from touching the row content above or below. | |
| */ | |
| /* Vertical Offset Bottom */ | |
| .vert-offset-top-12{ | |
| margin-top: 12em; |
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
| FROM php:7.0.4-fpm | |
| RUN apt-get update && apt-get install -y libmcrypt-dev \ | |
| mysql-client libmagickwand-dev --no-install-recommends \ | |
| && pecl install imagick \ | |
| && docker-php-ext-enable imagick \ | |
| && docker-php-ext-install mcrypt pdo_mysql |
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 Tests; | |
| use App\Exceptions\Handler; | |
| use Illuminate\Contracts\Debug\ExceptionHandler; | |
| use Illuminate\Foundation\Testing\TestCase as BaseTestCase; | |
| abstract class TestCase extends BaseTestCase | |
| { |
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
| @if ($paginator->hasPages()) | |
| <nav class="pagination is-centered" role="navigation" aria-label="pagination"> | |
| <!-- Previous Page Link --> | |
| @if ($paginator->onFirstPage()) | |
| <a class="pagination-previous" disabled>Previous</a> | |
| @else | |
| <a class="pagination-previous" href="{{ $paginator->previousPageUrl() }}" rel="prev">Previous</a> | |
| @endif | |
| <!-- Next Page Link --> | |
| @if ($paginator->hasMorePages()) |