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
{ | |
"extends": "@vue/tsconfig/tsconfig.dom.json", | |
"compilerOptions": { | |
"composite": true, | |
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo", | |
"lib": [ | |
"ES2022", | |
"DOM", | |
"DOM.Iterable" | |
], |
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
[ | |
{ | |
"value": "Africa/Abidjan", | |
"label": "(GMT+00:00) Africa/Abidjan" | |
}, | |
{ | |
"value": "Africa/Accra", | |
"label": "(GMT+00:00) Africa/Accra" | |
}, | |
{ |
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 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
<template> | |
<div class="collapsible" :class="{ open }"> | |
<div class="collapsible-content"> | |
<slot /> | |
</div> | |
</div> | |
</template> | |
<script setup lang="ts"> | |
defineProps<{ |
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
[ 0.000000] DMI: Memory slots populated: 2/4 | |
[ 0.003157] ACPI: Reserving FACP table memory at [mem 0x90668000-0x90668113] | |
[ 0.003157] ACPI: Reserving DSDT table memory at [mem 0x905eb000-0x9065dc18] | |
[ 0.003158] ACPI: Reserving FACS table memory at [mem 0x92663000-0x9266303f] | |
[ 0.003158] ACPI: Reserving HWIN table memory at [mem 0x9067e000-0x9067e06b] | |
[ 0.003158] ACPI: Reserving SSDT table memory at [mem 0x90672000-0x9067d8de] | |
[ 0.003159] ACPI: Reserving SSDT table memory at [mem 0x9066a000-0x90671f63] | |
[ 0.003159] ACPI: Reserving SSDT table memory at [mem 0x90669000-0x906691ac] | |
[ 0.003159] ACPI: Reserving FIDT table memory at [mem 0x90662000-0x9066209b] | |
[ 0.003160] ACPI: Reserving MCFG table memory at [mem 0x90661000-0x9066103b] |
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
Show hidden characters
{ | |
"compilerOptions": { | |
"target": "ESNext", | |
"jsx": "preserve", | |
"lib": [ | |
"ESNext", | |
"DOM", | |
"DOM.Iterable" | |
], | |
"baseUrl": ".", |
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
app.mixin({ | |
updated() { | |
const el = this.$el | |
if (el && el.style) { | |
el.style.transition = 'box-shadow 0.3s ease' | |
el.style.boxShadow = 'inset 0px 0px 0px 1px tomato' | |
setTimeout(() => { | |
el.style.boxShadow = '' | |
}, 300) | |
} |
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
// ==UserScript== | |
// @name fake-random-userscript | |
// @version 0.0.0 | |
// @license MIT | |
// @match https://www.random.org/widgets/integers/* | |
// ==/UserScript== | |
(function() { | |
"use strict"; | |
function l(n, t, o) { |
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 antfu from '@antfu/eslint-config' | |
export default antfu({ | |
typescript: true, | |
markdown: true, | |
yaml: true, | |
rules: { | |
'antfu/no-top-level-await': 'off', | |
'curly': 'off', | |
'no-console': 'off', |
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
// ==UserScript== | |
// @name reyohoho-extended | |
// @version 0.0.0 | |
// @license MIT | |
// @homepage https://github.com/crashmax-dev/reyohoho-extended | |
// @match https://reyohoho.github.io/reyohoho/* | |
// @updateURL https://github.com/crashmax-dev/reyohoho-extended.meta.js | |
// @downloadURL https://github.com/crashmax-dev/reyohoho-extended.user.js | |
// ==/UserScript== |
NewerOlder