This file contains hidden or 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
### Keybase proof | |
I hereby claim: | |
* I am xico2k on github. | |
* I am xico2k (https://keybase.io/xico2k) on keybase. | |
* I have a public key ASC9ovRc2jlY0QTt88Qwqec_oVTB-S4Qm4sLy5YkjN9jwgo | |
To claim this, I am signing this object: |
This file contains hidden or 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
<script setup> | |
import { reactive, onMounted } from 'vue'; | |
const props = defineProps({ | |
is: String, | |
icons: Array, | |
}); | |
const list = reactive({}); |
This file contains hidden or 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 | |
it('redirects to the correct Google sign in url', function () { | |
$driver = Mockery::mock('Laravel\Socialite\Two\GoogleProvider'); | |
$driver->shouldReceive('redirect') | |
->andReturn(new RedirectResponse('https://redirect.url')); | |
Socialite::shouldReceive('driver')->andReturn($driver); | |
$this->get(route('oauth.redirect', 'google')) |
This file contains hidden or 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 pointer-events-none" | |
x-data="{ active: 0 }" | |
x-init="setInterval(() => | |
active = ++active > $el.childElementCount - 1 ? 0 : active | |
, 3000)" | |
> | |
@foreach([ | |
'hero-pic1.webp', | |
'hero-pic2.webp', |
This file contains hidden or 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 | |
use Illuminate\Foundation\Testing\RefreshDatabase; | |
use Symfony\Component\Console\Output\BufferedOutput; | |
use function Termwind\render; | |
use function Termwind\renderUsing; | |
uses(RefreshDatabase::class); | |
test('there are no down migrations', function () { |
This file contains hidden or 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
import {useEffect, useRef, useState} from 'react'; | |
import io from 'socket.io-client'; | |
type Props = { | |
userId: number; | |
enabled: boolean; | |
onConnected?: () => void; | |
}; | |
type Message = { |
This file contains hidden or 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
import { reactive } from 'vue'; | |
import axios from 'axios'; | |
const reactiveMessages = reactive({}); | |
const loaded = []; | |
function setI18nLanguage(locale) { | |
axios.defaults.headers.common['Accept-Language'] = locale; | |
document.querySelector('html').setAttribute('lang', locale); |
This file contains hidden or 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
bk.elf w 00030081 00 00 00 00 00 00 00 16 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 16 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |
This file contains hidden or 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
bk.elf w 00030081 00 00 00 00 00 00 00 16 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 16 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |
This file contains hidden or 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
version: "3.3" | |
networks: | |
web: | |
external: true | |
services: | |
traefik: | |
image: "traefik:v2.5" | |
container_name: "traefik" |
NewerOlder