I hereby claim:
- I am sixlive on github.
- I am sixlive (https://keybase.io/sixlive) on keybase.
- I have a public key whose fingerprint is 584F E70F 15E5 4E38 28DD FC52 7371 D9F8 90BE 6170
To claim this, I am signing this object:
| <snippet> | |
| <content><![CDATA[ | |
| public function ${1:relationship}() | |
| { | |
| return \$this->belongsToMany(${1/^(.+)$/(?1\u$1:)/g}::class, {$2:table}); | |
| } | |
| ]]></content> | |
| <!-- Optional: Set a tabTrigger to define how to trigger the snippet --> | |
| <tabTrigger>belt</tabTrigger> | |
| <!-- Optional: Set a scope to limit where the snippet will trigger --> |
I hereby claim:
To claim this, I am signing this object:
| <?php | |
| /** | |
| * Returns the ID of a YouTube Video URL | |
| * | |
| * This works with both the short and full URL. | |
| * | |
| * @param string $url The video URL | |
| * @return string The video ID | |
| * @author TJ Miller http://tjay.co |
| <?php | |
| // Setup vars for pagination. | |
| $per_page = 10; | |
| $current_page = ( intval( get_query_var('paged') ) ) ? intval( get_query_var( 'paged' ) ) : 1; | |
| $offset = $per_page * ($current_page - 1); | |
| // Config, subsitute / add whatever you need. Leave per_page and offset as the vars. | |
| $sweet_args = [ | |
| 'numberposts' => $per_page, | |
| 'post_type' => 'post', |
| ( function($) { | |
| /** | |
| * Prints single div content. Adds a class to the body of 'js-print' for | |
| * targeting specific styles. | |
| * | |
| * @return void | |
| */ | |
| $.fn.printDiv = function() { | |
| var printContents = $(this).html(); |