from StackOverflow - Can I set-up theme for 'view-source' in Chrome?
- goto bookmark manager.
- add new link.
- paste code into link.
- move link to your bookmarkbar.
from StackOverflow - Can I set-up theme for 'view-source' in Chrome?
The given solution does not work when using a package that does a lot of the work after you define the with() relations like datatables
here is a solution that works for any model.
<?php| <?php | |
| namespace App; | |
| use Illuminate\Pagination\LengthAwarePaginator; | |
| use App\Http\Controllers\Controller; | |
| class EloquentUser extends Controller { | |
| // these will work for eloquent, but not with a scout->search since scout is not building a query. | |
| public function paginate($query) |
| return ['free'=>['hitmail.com','rxdoc.biz','cox.com','126.net','126.com','comast.com','comast.net','yandex.com','wegas.ru','twc.com','charter.com','outlook.com','gmx.com','.ddns.org','.findhere.com','.freeservers.com','.zzn.com','1033edge.com','11mail.com','123.com','123box.net','123india.com','123mail.cl','123qwe.co.uk','150ml.com','15meg4free.com','163.com','1coolplace.com','1freeemail.com','1funplace.com','1internetdrive.com','1mail.net','1me.net','1mum.com','1musicrow.com','1netdrive.com','1nsyncfan.com','1under.com','1webave.com','1webhighway.com','212.com','24horas.com','2911.net','2bmail.co.uk','2d2i.com','2die4.com','3000.it','321media.com','37.com','3ammagazine.com','3dmail.com','3email.com','3xl.net','444.net','4email.com','4email.net','4mg.com','4newyork.com','4x4man.com','5iron.com','5star.com','88.am','8848.net','888.nu','97rock.com','aaamail.zzn.com','aamail.net','aaronkwok.net','abbeyroadlondon.co.uk','abcflash.net','abdulnour.com','aberystwyth.com','abolition-now.com','about.com','academycouga |
| rambler.ru | |
| naver.com | |
| hitmail.com | |
| rxdoc.biz | |
| cox.com | |
| 126.net | |
| 126.com | |
| comast.com | |
| comast.net | |
| yandex.com |
| #!/bin/sh | |
| ######################################################################################## | |
| # I do not need to use the ngrok subdomains... | |
| # start ngrok for my local box (vagrant homestead) in th background | |
| # get the cname from command line for the ngrok alias | |
| # update my subdomain cname to point at new ngrok name | |
| # use it!!! | |
| ######################################################################################## | |
| # requires ngrok and jq installed. |
| if [[ -d redis ]] | |
| then | |
| cd redis | |
| git pull | |
| else | |
| git clone http://github.com/antirez/redis.git | |
| cd redis && git checkout 4.0 | |
| fi | |
| make redis-cli |
| #!/usr/bin/awk -f | |
| # Comments are like this | |
| # AWK programs consist of a collection of patterns and actions. The most | |
| # important pattern is called BEGIN. Actions go into brace blocks. | |
| BEGIN { | |
| # BEGIN will run at the beginning of the program. It's where you put all | |
| # the preliminary set-up code, before you process any text files. If you |