本歌单由Listen1创建, 歌曲数:1004,歌单数:2,点击查看更多
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
// ==UserScript== | |
// @name 自动抽卡,抽到所有角色齐全! | |
// @namespace https://www.qs5.org/?userscript-zhuque-gamingGenshinCharacterAllYes | |
// @version 2024-07-16-03 | |
// @description 自动抽卡,抽齐或碎片够了以后自动使用碎片兑换。 | |
// @author ImDong <[email protected]> | |
// @match https://zhuque.in/gaming/genshin/character/draw | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=zhuque.in | |
// @grant none | |
// @license MIT |
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
#!/bin/bash | |
# 如果没有 传递文件夹参数 | |
source_dir=$1 | |
if [ -z "${source_dir}" ]; then | |
echo "请输入源文件夹路径" | |
echo "Usage: $0 source_dir" | |
exit 1 | |
fi |
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
/** | |
* Apple Store 专卖店库存监控 | |
* | |
* Docker: | |
* 前台运行 $ docker run --rm -it -v $(pwd):/app --name="apple" node:alpine node /app/apple.js | |
* 后台运行 $ docker run --rm -it -d -v $(pwd):/app --name="apple" node:alpine node /app/apple.js | |
* 后台时实时查看日志 $ docker logs -f -n 100 apple | |
* | |
* 需先: npm i axios | |
* |
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 | |
/** | |
* 登录功能测试 | |
* | |
* @author ImDong ([email protected]) | |
* @created 2020-11-20 16:06:16 | |
* @updated 2020-11-24 17:30:14 | |
*/ | |
namespace Tests\Feature; |
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
{ | |
"name": "QQ Music", | |
"script": "main.js" | |
} |
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
#!/bin/bash | |
# | |
# v2ex 自动签到 | |
# 博客: https://www.qs5.org | |
# 作者: ImDong(青石) | |
# | |
# 2020年05月03日21:00:46 | |
# | |
# 使用方法: 将网站登录后的 Cookies 保存到 txt 内,然后修改下面的配置即可 | |
# |
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
d |
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 | |
$str = "Uhg fkxufk"; | |
$arr = str_split($str, 1); | |
for ($i=0; $i < 25; $i++) { | |
foreach ($arr as $item) { | |
$val = ord($item); | |
// 空格跳过 | |
$new = $val; | |
if ($val != 32) { |
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
#!/bin/bash | |
# command 操作锁定接管(可适用任何命令,例子以git为例) | |
# git lock 手动锁定 锁定后只有自己可以操作,必须手动解锁才可以释放 | |
# git unlock 解除锁定 除锁定者本人,需要提供 lockID 进行解锁 | |
# git checkout|pull|push|merge 操作时会触发临时锁 指定时间内不能继续操作 | |
# | |
# 安装方法: 移动文件至 /usr/local/bin/git 并添加可执行权限(chmod +x /usr/local/bin/git) | |
# 然后重启终端即可生效,如未生效,则放置于 ${PATH} 中优先级高于 原 git命令的目录即可 | |
# 同理可用于任意命令的前置锁定 |
NewerOlder