This file was generated automatically based on this two sources:
- /etc/nginx/mime.types
- http://www.garykessler.net/library/file_sigs.html
This is a JSON object by following structure:
[string ext] : {
signs: [sign]
let value = `.bg-yellow-gradient { | |
background-image: linear-gradient(45deg, #f5fe00, #ff6600) !important; | |
color: $dark-3 !important; | |
} | |
.bg-orange-gradient { | |
background-image: linear-gradient(45deg, #ff9700, #ed1c24) !important; | |
color: $white !important; | |
} | |
.bg-red-gradient { | |
background-image: linear-gradient(45deg, #f33a41, #ed0586) !important; |
[ | |
{ | |
"key": "ctrl+h", | |
"command": "workbench.action.navigateLeft", | |
"when": "!terminalFocus" | |
}, | |
{ | |
"key": "ctrl+l", | |
"command": "workbench.action.navigateRight", | |
"when": "!terminalFocus" |
var rs = "/spider"; | |
async function V$(t) { | |
t.register(async e => { | |
e.get("/check", async function (r, n) { | |
n.send({ | |
run: !e.stop | |
}); | |
}); | |
e.get("/config", async function (r, n) { | |
n.send({ |
import path from 'path' | |
import fs from 'fs' | |
const __dirname = path.resolve() | |
const kRuleFolder = [ | |
'lib', | |
] | |
const kMatchRule = /^\/\/ Copyright \(C\)[\s\S]*s\/>\./ |
import { onMounted, ref, watch, computed } from "vue" | |
import { | |
getSyncPendings, | |
getSyncFinisheds, | |
getUploadPendings, | |
getUploadFinisheds, | |
getDownloadPendings, | |
getDownloadeds, | |
} from "@/shared/api/photoalbum" |
This file was generated automatically based on this two sources:
This is a JSON object by following structure:
[string ext] : {
signs: [sign]
[ | |
{ | |
"name": "玖玖资源站", | |
"logo": "", | |
"desc": "", | |
"nsfw": true, | |
"api": { | |
"root": "http://99zywcj.com", | |
"path": "/inc/ck.php" | |
} |
[ | |
{ | |
"id": 1, | |
"key": "okzy", | |
"name": "OK 资源网", | |
"api": "http://cj.okzy.tv/inc/api.php", | |
"download": "http://cj.okzy.tv/inc/apidown.php" | |
}, | |
{ | |
"id": 2, |
null |
import 'package:flutter/material.dart'; | |
class FadeIndexedStack extends StatefulWidget { | |
final int index; | |
final List<Widget> children; | |
final Duration duration; | |
const FadeIndexedStack({ | |
Key key, | |
this.index, |