Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
// tailwind.config.js | |
module.exports = { | |
darkMode: 'media', | |
// Rest of config here | |
} |
This file contains 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
const PerkCategoryFactory = new Factory(PerkCategory) | |
.sequence('name', () => faker.lorem.word()); |
This file contains 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
// Before | |
REDIS_HOST=some-master-node.cache.amazonaws.com | |
// After | |
REDIS_HOST=tls://some-master-node.cache.amazonaws.com |
This file contains 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
const hello = 'world!'; |
This file contains 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
const hello = 'world!'; |
This file contains 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 | |
class Hello { | |
} |
This file contains 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
<div class="relative w-64" x-data="initSearch()"> | |
<input | |
type="search" | |
x-model="query" | |
x-on:keyup="search()" | |
class="bg-white border border-gray-300 p-1 rounded w-full" | |
placeholder="Search..." | |
/> | |
<div x-show="query" class="absolute bg-white shadow rounded w-full max-w-full" style="display: none;"> | |
<p x-show="loading" class="py-2 m-0">Loading</p> |
This file contains 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
<div class="relative w-64" x-data="initSearch()"> | |
<input | |
type="search" | |
x-model="query" | |
x-on:keyup="search()" | |
class="bg-white border border-gray-300 p-1 rounded w-full" | |
placeholder="Search..." | |
/> | |
<div x-show="query" class="absolute bg-white shadow rounded w-full max-w-full" style="display: none;"> | |
<p x-show="loading" class="py-2 m-0">Loading</p> |
This file contains 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
<header class="py-4 mb-8"> | |
<div class="flex flex-col items-center justify-between md:flex-row text-center mb-4"> | |
<a href="/"> | |
<svg class="h-12" viewBox="0 0 536 131" fill="none" xmlns="http://www.w3.org/2000/svg"> | |
<path d="M28.224 97.768C23.232 97.768 18.848 96.776 15.072 94.792C11.296 92.744 8.384 89.896 6.336 86.248C4.288 82.536 3.264 78.184 3.264 73.192C3.264 68.2 4.288 63.88 6.336 60.232C8.384 56.52 11.296 53.672 15.072 51.688C18.848 49.704 23.232 48.712 28.224 48.712C33.216 48.712 37.6 49.704 41.376 51.688C45.152 53.672 48.064 56.52 50.112 60.232C52.16 63.88 53.184 68.2 53.184 73.192C53.184 78.184 52.16 82.536 50.112 86.248C48.064 89.896 45.152 92.744 41.376 94.792C37.6 96.776 33.216 97.768 28.224 97.768ZM28.224 86.728C35.264 86.728 38.784 82.216 38.784 73.192C38.784 68.648 37.856 65.256 36 63.016C34.208 60.776 31.616 59.656 28.224 59.656C21.184 59.656 17.664 64.168 17.664 73.192C17.664 82.216 21.184 86.728 28.224 86.728ZM91.8615 48.712C102.806 48.712 108.278 55.336 108.278 68.584V90. |