Skip to content

Instantly share code, notes, and snippets.

View luoling8192's full-sized avatar
🏠
Working from home

RainbowBird luoling8192

🏠
Working from home
View GitHub Profile
{
// 出站
"outbounds": [
// 手动选择国家或地区节点;根据“国家或地区出站”的名称对 `outbounds` 值进行增删改,须一一对应
{ "tag": "🚀 节点选择", "type": "selector", "outbounds": [ "🇭🇰 香港节点", "🇹🇼 台湾节点", "🇯🇵 日本节点", "🇸🇬 新加坡节点", "🇺🇸 美国节点", "🆓 免费节点" ] },
{ "tag": "🐟 漏网之鱼", "type": "selector", "outbounds": [ "🚀 节点选择", "🎯 全球直连" ] },
// 选择`🎯 全球直连`为测试本地网络(运营商网络速度和 IPv6 支持情况),可选择其它节点用于测试机场节点速度和 IPv6 支持情况
{ "tag": "📈 网络测试", "type": "selector", "outbounds": [ "🎯 全球直连", "🇭🇰 香港节点", "🇹🇼 台湾节点", "🇯🇵 日本节点", "🇸🇬 新加坡节点", "🇺🇸 美国节点", "🆓 免费节点" ] },
{ "tag": "🤖 人工智能", "type": "selector", "outbounds": [ "🇭🇰 香港节点", "🇹🇼 台湾节点", "🇯🇵 日本节点", "🇰🇷 韩国节点", "🇸🇬 新加坡节点", "🇺🇸 美国节点" ] },
{ "tag": "🎮 游戏服务", "type": "selector", "outbounds": [ "🎯 全球直连", "🚀 节点选择" ] },
@luoling8192
luoling8192 / mouse.ps1
Last active August 17, 2024 23:35
Windows Nature Mouse Scrolling
# 检查当前用户是否具有管理员权限
if (-not ([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole]::Administrator)) {
Write-Host "请以管理员身份运行此脚本。"
exit
}
# 注册表路径
$regPath = "HKLM:\SYSTEM\CurrentControlSet\Enum\HID"
# 获取所有以 VID_ 开头的设备
@luoling8192
luoling8192 / beautiful-fonts.css
Last active January 9, 2023 04:43
Stylus - 全局字体美化
/* 全局字体美化
* 作者:RainbowBird
* https://gist.github.com/rain15z3/f8c9c511c7da7b99efd58766500ff084
*/
@font-face {
font-family: monospace;
src: local("JetBrains Mono"), local("PingFang SC");
}
@luoling8192
luoling8192 / beautiful-baidu.css
Last active July 30, 2020 06:46
Stylus - 百度美化
@-moz-document domain("www.baidu.com") {
#kw {
font-size: 18px;
}
* {
margin: 0;
padding: 0;
box-sizing: content-box;
}
@luoling8192
luoling8192 / beautiful-scrollbar.css
Last active August 10, 2021 13:11
Stylus - 全局滚动条美化
::-webkit-scrollbar {
width: 6px;
height: 6px;
background-color: #F5F5F5;
}
::-webkit-scrollbar-track{
-webkit-box-shadow: 0 0 3px rgba(0,0,0,0.3) inset;
background-color: #F5F5F5;
}
::-webkit-scrollbar-thumb{
@luoling8192
luoling8192 / zhihu-k.js
Last active July 1, 2020 10:13
油猴脚本 - 知乎赞同数用K显示
// ==UserScript==
// @name Zhihu-K
// @namespace https://gist.github.com/rain15z3/82f8d7a5d4778d969d92211c9dfe2fed
// @version 1.0
// @description 知乎赞同数用K显示
// @author RainbowBird
// @match https://www.zhihu.com/*
// @grant none
// @require http://code.jquery.com/jquery-1.11.0.min.js
// ==/UserScript==