This file contains hidden or 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
// Variables used by Scriptable. | |
// These must be at the very top of the file. Do not edit. | |
// icon-color: pink; icon-glyph: tv; | |
// 哔哩哔哩粉丝数量 | |
// 作者:azoon | |
//请在组件Parameter除输入你要关注的UP主MID,即个人空间网址后面那段数字 https://space.bilibili.com/280793434 | |
const MID = args.widgetParameter || '280793434' | |
let apiUrl = "http://api.bilibili.com/x/relation/stat?vmid="+MID |
This file contains hidden or 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
/** | |
* 1 打开 https://m.weibo.cn/beta 登陆你被炸的账号 | |
* 2 打开浏览器控制台 | |
**/ | |
function delay (time) { | |
return new Promise(r => { | |
setTimeout(() => r(), time || 1000); // 延时 1s,可适当增加延长时间 | |
}); | |
} |
This file contains hidden or 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
var curIndex = -1; | |
function callbackDown(){ | |
if(curIndex >=0) $('input.hideItem_myx')[curIndex].click(); | |
curIndex++; | |
$('input.hideItem_myx')[curIndex].click(); | |
$('ul button.myx-button-text')[curIndex].click(); | |
//触发下载popup | |
setTimeout(function(){$('.myx-popover-inner .transcludedContent_myx .contentDetails_myx #contentAction_download_myx').trigger('click');},1000); | |
setTimeout(function(){$('.dialog_myx .myx-button-primary').trigger('click');},2000); |
This file contains hidden or 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 | |
chmod a-x /Applications/Thunder.app/Contents/Bundles/XLPlayer.app | |
chmod a-x /Applications/Thunder.app/Contents/PlugIns/bbassistant.xlplugin | |
chmod a-x /Applications/Thunder.app/Contents/PlugIns/browserhelper.xlplugin | |
chmod a-x /Applications/Thunder.app/Contents/PlugIns/featuredpage.xlplugin | |
chmod a-x /Applications/Thunder.app/Contents/PlugIns/myvip.xlplugin | |
chmod a-x /Applications/Thunder.app/Contents/PlugIns/playgame.xlplugin | |
chmod a-x /Applications/Thunder.app/Contents/PlugIns/subtitle.xlplugin | |
chmod a-x /Applications/Thunder.app/Contents/PlugIns/thunderstore.xlplugin |
This file contains hidden or 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
[General] | |
loglevel = notify | |
skip-proxy = 127.0.0.1, 192.168.0.0/16, 10.0.0.0/8, 172.16.0.0/12, 100.64.0.0/10, localhost, *.local, ::ffff:0:0:0:0/1, ::ffff:128:0:0:0/1 | |
bypass-tun = 192.168.0.0/16, 10.0.0.0/8, 172.16.0.0/12 | |
# dns-server = 119.29.29.29,223.5.5.5,114.114.115.115 | |
# external-controller-access = [email protected]:6155 | |
# ipv6 = true | |
// REMEMBER TO CHANGE THE external-controller-access' PASSWORD |
This file contains hidden or 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
;SMBDIS.ASM - A COMPREHENSIVE SUPER MARIO BROS. DISASSEMBLY | |
;by doppelganger ([email protected]) | |
;This file is provided for your own use as-is. It will require the character rom data | |
;and an iNES file header to get it to work. | |
;There are so many people I have to thank for this, that taking all the credit for | |
;myself would be an unforgivable act of arrogance. Without their help this would | |
;probably not be possible. So I thank all the peeps in the nesdev scene whose insight into | |
;the 6502 and the NES helped me learn how it works (you guys know who you are, there's no |