Skip to content

Instantly share code, notes, and snippets.

View iblueer's full-sized avatar

Maemolee iblueer

View GitHub Profile
@1wErt3r
1wErt3r / SMBDIS.ASM
Created November 9, 2012 22:27
A Comprehensive Super Mario Bros. Disassembly
;SMBDIS.ASM - A COMPREHENSIVE SUPER MARIO BROS. DISASSEMBLY
;by doppelganger (doppelheathen@gmail.com)
;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
@jason5ng32
jason5ng32 / surge.conf
Last active April 7, 2024 13:04
Surge Configs ( for 2.x )
[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 = PASSWORD@0.0.0.0:6155
# ipv6 = true
// REMEMBER TO CHANGE THE external-controller-access' PASSWORD
@HamGuy
HamGuy / delfuckthunder.sh
Created May 26, 2017 01:47
禁用迅雷的无用流氓组件
#!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
@yushiro
yushiro / kindleDown.js
Last active March 10, 2024 02:01
批量从亚马逊中国区下载kindle上购买的电子书
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);
@gongpeione
gongpeione / getWeiboDataBack.js
Last active April 4, 2024 07:51
微博炸号找回部分内容
/**
* 1 打开 https://m.weibo.cn/beta 登陆你被炸的账号
* 2 打开浏览器控制台
**/
function delay (time) {
return new Promise(r => {
setTimeout(() => r(), time || 1000); // 延时 1s,可适当增加延长时间
});
}
@FrogTool
FrogTool / bilibili.js
Last active October 22, 2020 02:53
哔哩哔哩粉丝关注数量 Scriptable 插件
// 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