Skip to content

Instantly share code, notes, and snippets.

@d1y
d1y / colors.js
Last active August 2, 2024 19:24
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({
@d1y
d1y / remove_copyright.js
Created June 4, 2023 04:27
删除copyright
import { onMounted, ref, watch, computed } from "vue"
import {
getSyncPendings,
getSyncFinisheds,
getUploadPendings,
getUploadFinisheds,
getDownloadPendings,
getDownloadeds,
} from "@/shared/api/photoalbum"
@d1y
d1y / README.md
Created June 28, 2022 23:26 — forked from qti3e/README.md
List of file signatures and mime types based on file extensions
@d1y
d1y / sub.json
Created November 2, 2021 12:33
[
{
"name": "玖玖资源站",
"logo": "",
"desc": "",
"nsfw": true,
"api": {
"root": "http://99zywcj.com",
"path": "/inc/ck.php"
}
@d1y
d1y / sites.json
Created October 30, 2021 11:36 — forked from Hunlongyu/sites.json
资源网
[
{
"id": 1,
"key": "okzy",
"name": "OK 资源网",
"api": "http://cj.okzy.tv/inc/api.php",
"download": "http://cj.okzy.tv/inc/apidown.php"
},
{
"id": 2,
@d1y
d1y / null
Last active August 14, 2021 18:02
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,