Skip to content

Instantly share code, notes, and snippets.

@debbbbie
debbbbie / .gemrc
Created December 30, 2015 02:52
proxy settings
gem: --no-ri --no-rdoc --http-proxy=http://USERNAME:PASSWORD@ADDRESS:PORT
@debbbbie
debbbbie / 64进制互转
Created January 16, 2014 06:30
64进制互转
#coding=gbk
digit64 = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz+/'
def int_to_str64( x ):
try:
x=int(x)
except:
x=0
if x<0:
x=-x
if x==0:
@debbbbie
debbbbie / easylist.txt
Last active January 14, 2016 10:47
moneybook+easylist
[Adblock Plus 2.0]
! Checksum: onih6SC4VyGqIvSc373Rsw
! Version: 201601140910
! Title: Moneybook EasyList
! EasyList China and EasyList combination subscription
! Last modified: 14 Jan 2016 09:10 UTC
! Expires: 4 days (update frequency)
! Homepage: http://abpchina.org/forum/
!
! *** easylistchina:easylistchina.txt ***
@debbbbie
debbbbie / tampermonkey.js
Last active February 24, 2016 03:27
tampermonkey/ruten
// ==UserScript==
// @name Ruten
// @namespace http://debbbbie.com/
// @version 1.0
// @description Ruten
// @author debbbbie
// @updateURL https://gist.githubusercontent.com/debbbbie/b8792d475ab3feec5750/raw/5788cbe0aefdccd75690a9e50c6fae4450454ddb/tampermonkey.js
// @match http://mybid.ruten.com.tw/*
// @match http://goods.ruten.com.tw/*
@debbbbie
debbbbie / markdown.md
Created March 4, 2016 08:53
markdown test

#1 ##2 ###3 ####4 #####5 ######6 #######7 ########8 #########9 ##########10

javascript: (function() {
var s = document.createElement("script");
s.onload = function() {
bootlint.showLintReportForCurrentDocument([]);
};
s.src = "https://maxcdn.bootstrapcdn.com/bootlint/latest/bootlint.min.js";
document.body.appendChild(s)
})();
@debbbbie
debbbbie / jquery_array_list_ajax.coffee
Last active November 1, 2016 05:19
jquery make multi ajax
$.when.apply $, ['/ajax/1','/ajax/2','/ajax/3'].map ->
$.ajax(this)
.done ->
alert('all done')
@debbbbie
debbbbie / focus_mate.user.js
Last active September 30, 2020 00:12
Focus Mate
// ==UserScript==
// @name Focussi CBA Mate
// @namespace https://www.focussi.com
// @version 1.0.6
// @author Donnie Ian
// @hostAt https://gist.github.com/debbbbie/59bf0a070b7daafa7c42a819292bf2fd
// @updateURL https://gist.githubusercontent.com/debbbbie/59bf0a070b7daafa7c42a819292bf2fd/raw/focus_mate.user.js
// @downloadURL https://gist.githubusercontent.com/debbbbie/59bf0a070b7daafa7c42a819292bf2fd/raw/focus_mate.user.js
// @match https://*.focussi.com/*
@debbbbie
debbbbie / 16-62进制互转
Last active August 26, 2022 12:39
[python]16-62进制互转
#coding=gbk
#
#62进制,特别合于月、日、时、分、秒的压缩进储
#
digit62 = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'
#整数转化为62进制字符串
#入口:
# x : 整数
#返回: 字符串
def int_to_str62( x ):