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
| err: /Stage[main]/Mysql::Server/Package[mysql-server]/ensure: change from purged to present failed: Execution of '/usr/bin/apt-get -q -y -o DPkg::Options::=--force-confold install mysql-server' returned 100: Reading package lists... | |
| Building dependency tree... | |
| Reading state information... | |
| The following extra packages will be installed: | |
| libdbd-mysql-perl libdbi-perl libhtml-template-perl libmysqlclient18 | |
| libnet-daemon-perl libplrpc-perl mysql-client-5.5 mysql-client-core-5.5 | |
| mysql-common mysql-server-5.5 mysql-server-core-5.5 | |
| Suggested packages: | |
| libipc-sharedcache-perl libterm-readkey-perl tinyca mailx | |
| The following NEW packages will be installed: |
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
| (function() { | |
| $(function() { | |
| var render, renderGraphs; | |
| render = function(data, canvas) { | |
| var add_gradient, area, bad_at, dateEnd, dateStart, daySpan, format, gradient, h, line, lines, main_path, max, min, numdays, padb, padl, padr, padt, subs, ticks, timeFormat, transition, units, vis, w, warn_at, x, xAxis, y, yAxis, yax, _ref; | |
| w = canvas.width(); | |
| h = canvas.height(); | |
| units = canvas.attr('data-unit'); | |
| add_gradient = canvas.attr('data-warn-at') != null; |
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
| <article class="post"> | |
| <h2 class="post__header"><a href="" class="post__header--link">title</a></h2> |
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 PageController extends Controller { | |
| /** | |
| * Blog Posts | |
| * | |
| * @var array | |
| **/ | |
| protected $posts; |
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 | |
| use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; | |
| class NoPostsException extends Exception {} | |
| class PostController extends Controller | |
| { | |
| /** |
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
| public function showPost($post = null) | |
| { | |
| $view = View::make('blog.post'); | |
| $view->with('title', "Aran Wilkinson - "); // We need to get the post title | |
| $view->with('post', $this->posts->getPostBySlug($post)); | |
| // | |
| // Get the requested blog post | |
| // If it doesn't exist give 404 error | |
| // |
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
| public function showPost($post = null) | |
| { | |
| $view = View::make('blog.post'); | |
| $view->with('title', "Aran Wilkinson - "); // We need to get the post title | |
| $view->with('post', $this->posts->getPostBySlug($post)); | |
| // | |
| // Get the requested blog post | |
| // If it doesn't exist give 404 error | |
| // |
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 Fatal error: Call to undefined function Illuminate\mcrypt_create_iv() in /Users/aran/Sites/blog/vendor/illuminate/encryption/src/Illuminate/Encrypter.php on line 54 | |
| Fatal error: Call to undefined function Illuminate\mcrypt_create_iv() in /Users/aran/Sites/blog/vendor/illuminate/encryption/src/Illuminate/Encrypter.php on line 54 |
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
| class Album extends \Eloquent | |
| { | |
| public static $timestamps = true; | |
| public function artist() | |
| { | |
| return $this->belongs_to('Askonasholt\Artist'); | |
| } | |
| public function image() |
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
| <div id="overlay" class="lb"> | |
| <div class="media"> | |
| <img src="assets/images/content/lightbox-image.jpg" alt="" /> | |
| <div class="titlebar"> | |
| <a class="close">Close</a> | |
| <p><span class="current">1</span> of <span class="total">25</span></p> | |
| </div> <!-- titlebar --> | |
| <div class="heading"> |