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
{ | |
"title": "Raycast Karabiner Config", | |
"rules": [ | |
{ | |
"description": "Double click cmd Toggle Raycast(Hotkey: ctrl+option+cmd+Esc)", | |
"manipulators": [ | |
{ | |
"conditions": [ | |
{ | |
"name": "command_pressed", |
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
CREATE FUNCTION getRangeMonthList(@beginDate VARCHAR(50), @endDate VARCHAR(50)) | |
RETURNS @table TABLE | |
( | |
MonthList VARCHAR(20) | |
) | |
AS | |
BEGIN | |
WITH x AS | |
( | |
SELECT CAST(@beginDate AS DATE) [Month] |
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
location /btsync/ { | |
proxy_pass http://127.0.0.1:8888/gui/; | |
sub_filter '/gui/token.html' 'token.html'; | |
sub_filter '/gui/' ''; | |
sub_filter_types text/javascript | |
sub_filter_once off; | |
proxy_set_header Cookie $http_cookie; | |
proxy_set_header Host $host; | |
proxy_set_header X-Real-IP $remote_addr; | |
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; |
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 fuck southhronline | |
// @version 1.0.0 | |
// @description fuck southhronline.cn | |
// @author IcedMango <[email protected]> | |
// @match http://www.southhronline.cn/learn/* | |
// @require https://cdn.bootcdn.net/ajax/libs/jquery/3.5.1/jquery.min.js | |
// @connect cdn.bootcdn.net | |
// @run-at document-end | |
// ==/UserScript== |
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
*://*.voidcn.com/* | |
*://codeday.me/* | |
*://*.voidcc.com/* | |
*://www.bbsmax.com/* | |
*://www.soinside.com/* | |
*://yq.aliyun.com/* | |
*://cloud.tencent.com/* | |
*://www.jb51.net/* | |
*://www.itranslater.com/* | |
*://www.52jb.net/* |
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
//bot秘钥 | |
var apiKey = ""; | |
//请求链接 | |
var apiUrl = "api.telegram.org"; | |
//会话ID | |
var chatId = ""; | |
//发件人名称 | |
var senderName = global('SMSRN'); | |
if (senderName.match(/\d*/g)[0].length > 0) { | |
senderName = ""; |
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
if (window.plus) { | |
plusReady(); | |
} else { | |
document.addEventListener('plusready', plusReady, false); | |
} | |
function plusReady() { | |
var main = plus.android.runtimeMainActivity(); //获取activity | |
var context = plus.android.importClass('android.content.Context'); //上下文 | |
var receiver = plus.android.implements('io.dcloud.feature.internal.reflect.BroadcastReceiver', { |