Skip to content

Instantly share code, notes, and snippets.

@RyanThompson
RyanThompson / system.log
Created December 18, 2017 22:16
system.log
System.log - it's happened twice within this log:
Dec 18 16:09:17 Ryans-MacBook-Pro bootlog[0]: BOOT_TIME 1513634957 0
Dec 18 16:09:19 Ryans-MacBook-Pro syslogd[45]: Configuration Notice:
ASL Module "com.apple.cdscheduler" claims selected messages.
Those messages may not appear in standard system log files or in the ASL database.
Dec 18 16:09:19 Ryans-MacBook-Pro syslogd[45]: Configuration Notice:
ASL Module "com.apple.install" claims selected messages.
Those messages may not appear in standard system log files or in the ASL database.
Dec 18 16:09:19 Ryans-MacBook-Pro syslogd[45]: Configuration Notice:
"post-update-cmd": [
"chown www-data:www-data . -R",
"find storage -type d -exec chmod 755 {} \\;",
"find storage -type f -exec chmod 644 {} \\;",
"chmod gu+w -R storage bootstrap/cache public/app"
]
@RyanThompson
RyanThompson / test.css
Last active August 28, 2020 04:51
A simple CSS file for testing.
.test{color:#fff}
@RyanThompson
RyanThompson / ImportPosts.php
Created December 8, 2018 16:13
Importing Block-Powered Posts
<?php namespace Crawford\CrawfordTheme\Console;
use Anomaly\BlocksModule\Block\Contract\BlockRepositoryInterface;
use Anomaly\PostsModule\Category\Contract\CategoryRepositoryInterface;
use Anomaly\PostsModule\Post\Contract\PostRepositoryInterface;
use Anomaly\PostsModule\Type\Contract\TypeRepositoryInterface;
use Anomaly\Streams\Platform\Model\Posts\PostsDefaultPostsEntryModel;
use Anomaly\WysiwygBlockExtension\Block\BlockModel;
use Carbon\Carbon;
use Goutte\Client;