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
| gzip -dc ~/Projects/ | mysql -u 'homestead' -p simmfins_laravel | |
| gzip -dc ~/Projects/ | mysql <db> |
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
| https://askubuntu.com/questions/900118/vboxdrv-sh-failed-modprobe-vboxdrv-failed-please-use-dmesg-to-find-out-why | |
| https://stegard.net/2016/10/virtualbox-secure-boot-ubuntu-fail/ | |
| https://askubuntu.com/a/802682 |
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
| https://bugs.launchpad.net/ubuntu/+source/gnucash/+bug/1306500 | |
| https://bugs.launchpad.net/ubuntu/+source/gnucash/+bug/1316186 | |
| Google: gnucash backspace doesn't work |
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
| https://bugs.launchpad.net/ubuntu/+source/gnucash/+bug/1306500 | |
| https://bugs.launchpad.net/ubuntu/+source/gnucash/+bug/1316186 | |
| Google: gnucash backspace doesn't work |
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 App\Http\Middleware; | |
| use Closure; | |
| use Illuminate\Config\Repository as Config; | |
| class TenantDetector { | |
| protected $config; | |
| public function __construct(Config $config) |
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
| https://laravel-news.com/using-older-versions-of-homestead | |
| http://blog.g-design.net/post/152619206945/multiple-laravel-homestead-installations | |
| http://juliangut.com/blog/php-5-7-homestead |
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
| mysqldump --single-transaction --skip-lock-tables my_app_db | pv | gzip > my_app_db_$(date +'%Y%m%d_%H%M%S').sql.gz | |
| From: https://serversforhackers.com/c/mysqldump-with-modern-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
| Agile MVP Criteria | |
| - Help and Collaborate with others | |
| - Help in Identifying User Story Requirement | |
| - Help in solutions and implementations | |
| - Help or suggest in UX/UI | |
| - Identify other unforeseen issue/task/requirement | |
| - Improve workflows and development processes |
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
| https://gistlog.co/JacobBennett/090369fbab0b31130b51 | |
| https://gist.github.com/JacobBennett/090369fbab0b31130b51 | |
| https://github.com/laravel/framework/issues/11782 | |
| https://andrew.cool/blog/64/How-to-use-API-tokens-for-authentication-in-Laravel-5-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
| // I will use this, best solution so far.. this is updated as of aug-28-2018 | |
| // https://www.npmjs.com/package/extends-js | |
| function $extends(child, parent) { | |
| child.prototype = Object.create(parent.prototype); | |
| child.prototype.constructor = child; | |
| }; | |
| function Animal(name, color) { | |
| this.name = name; |