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.
| { | |
| // Place your snippets for php here. Each snippet is defined under a snippet name and has a prefix, body and | |
| // description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are: | |
| // $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the | |
| // same ids are connected. | |
| // Example: | |
| // "Print to console": { | |
| // "prefix": "log", | |
| // "body": [ | |
| // "console.log('$1');", |
| <template> | |
| <div> | |
| <label v-if="label" :for="name" class="block text-sm font-medium text-gray-700"> | |
| {{ label }} | |
| </label> | |
| <div class="relative mt-1"> | |
| <input v-show="is_editing" ref="input" v-model="query" :name="name" class="block w-full px-4 py-2 border border-gray-300 rounded-md shadow-sm focus:ring-indigo-500 focus:border-indigo-500 sm:text-sm" @keydown="inputKeyDown"> | |
| <div v-show="!is_editing" @click="startEditing" class="block w-full px-4 py-2 border border-gray-300 rounded-md shadow-sm focus:ring-indigo-500 focus:border-indigo-500 sm:text-sm"> | |
| {{ selectedOption ? selectedOption.text : blankText }} | |
| </div> |
| <?php | |
| namespace App\Console\Commands; | |
| use Corcel\Model\Page as WpPage; | |
| use Illuminate\Console\Command; | |
| use Illuminate\Support\Facades\Auth; | |
| use Illuminate\Support\Str; | |
| use Statamic\Entries\Entry; | |
| use Statamic\Facades\Collection; |
| { | |
| "ray": { | |
| "prefix": "rr", | |
| "body": [ | |
| "ray($1)$2;" | |
| ], | |
| "description": "Dump data to Spatie's Ray application" | |
| }, | |
| "ray model": { | |
| "prefix": "rrm", |
| <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> |
| javascript:(function () { document.querySelector('video').requestPictureInPicture() })() |
| <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; |
| 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 |
| alias nukenodemodules="find . -name "node_modules" -exec rm -rf '{}' + " |