Skip to content

Instantly share code, notes, and snippets.

View pingany's full-sized avatar

Pingan Yi pingany

  • Opera Software
  • Beijing
View GitHub Profile
@pingany
pingany / dfss_autoplay.user.js
Last active October 20, 2015 08:39
使用方法: 下载此文件保存成dfss_autoplay.user.js, 拖进chrome浏览器即可
// ==UserScript==
// @name 东方时尚课程自动播放
// @namespace http://your.homepage/
// @version 0.1
// @description enter something useful
// @author You
// @match *://dfss.anjia365.com/player.do*
// @grant none
// ==/UserScript==
@pingany
pingany / JadeToHtmlOnSave.py
Created April 28, 2015 08:29
A sublime text 2 (should be ok on 3, not tested) plugin, to convert jade file to html file when save
import sublime, sublime_plugin,os
class JadeToHtmlOnSave(sublime_plugin.EventListener):
def on_post_save(self, view):
print 'JadeToHtmlOnSave: on_post_save'
folder = view.window().folders()[0]
os.chdir(folder)
filename = os.path.basename(view.file_name())
@pingany
pingany / SparseArrayUtils.java
Created August 13, 2014 07:00
make SparseArray can be used in enhanced-for
import java.util.Iterator;
import android.util.SparseArray;
public class SparseArrayUtils {
private static abstract class IndexIterator<IterType, Type> implements Iterator<IterType> {
protected int mIndex = 0;
protected SparseArray<Type> mArray;
@pingany
pingany / keng
Last active December 25, 2015 08:29
android 上 System.out.printf 不能用