The standard 52-card pack is used.
The club suit is always trump.
A (high), K, Q, J, 10, 9, 8, 7, 6, 5, 4, 3, 2.
| <?php | |
| class User extends Authenticatable | |
| { | |
| use Notifiable; | |
| /** | |
| * The attributes that are mass assignable. | |
| * | |
| * @var array |
| # Shutdown the laravel app | |
| php artisan down | |
| # Pull down changes | |
| git pull | |
| # Install new composer packages | |
| composer install --no-dev --prefer-dist | |
| # Cache boost configuration and routes |
| <?php | |
| Route::get('/streams', 'StreamController@index'); // List of all streams | |
| Route::post('/streams', 'StreamController@store'); // Creates a new stream - If a stream starts now, it could do the logic for that as well | |
| Route::get('/streams/{stream}', 'StreamController@show'); // Shows an existing stream | |
| Route::get('/streams/{stream}/edit', 'StreamController@edit'); // Shows the page to edit a stream | |
| Route::patch('/streams/{stream}', 'StreamController@update'); // Route where edits are saved for a stream |
| alias nukenodemodules="find . -name "node_modules" -exec rm -rf '{}' + " |
| nukecomposer() { | |
| find . -name "vendor" -type d -maxdepth 2 -print0 | | |
| while IFS= read -r -d '' vendorDir; do | |
| lockfile=${vendorDir/vendor/"composer.lock"}; | |
| if test -f $lockfile; then | |
| echo 'Deleting vendor directory: ' $vendorDir | |
| rm -rf $vendorDir | |
| fi | |
| done |
| <html> | |
| <head> | |
| <script src="https://cdn.jsdelivr.net/gh/alpinejs/[email protected]/dist/alpine.js" defer></script> | |
| <link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet"> | |
| <script> | |
| function imageData() { | |
| return { | |
| previewUrl: '', | |
| updatePreview() { | |
| var reader, files = document.getElementById('thumbnail').files; |
| javascript:(function () { document.querySelector('video').requestPictureInPicture() })() |
| <div class="max-w-5xl mx-auto p-32 flex items-center justify-center"> | |
| <div id="main" class="mx-auto text-gray-800 w-64 h-64 bg-gray-300 text-2xl rounded-full flex items-center justify-center">Main Circle</div> | |
| </div> | |
| <div class="max-w-5xl mx-auto p-32 flex items-center justify-center relative"> | |
| <div id="red" class="absolute left-0 mt-4 w-24 h-24 rounded-full bg-red-300 flex items-center justify-center">Red</div> | |
| <div id="green" class="absolute left-0 -mt-16 ml-96 w-24 h-24 rounded-full bg-green-300 flex items-center justify-center">Green</div> | |
| <div id="orange" class="absolute left-0 mt-64 ml-48 w-24 h-24 rounded-full bg-yellow-600 flex items-center justify-center">Orange</div> | |
| <div id="blue" class="absolute right-0 mt-4 w-24 h-24 rounded-full bg-blue-300 flex items-center justify-center">Blue</div> |
| { | |
| "ray": { | |
| "prefix": "rr", | |
| "body": [ | |
| "ray($1)$2;" | |
| ], | |
| "description": "Dump data to Spatie's Ray application" | |
| }, | |
| "ray model": { | |
| "prefix": "rrm", |