Skip to content

Instantly share code, notes, and snippets.

View wong2's full-sized avatar
🍃
Waiting for autumn

wong2 wong2

🍃
Waiting for autumn
View GitHub Profile
@wong2
wong2 / cmds.txt
Last active May 2, 2021 12:13
在任意聊天中输入。 [ ]表示后面要跟一个空格(可能还需要别的参数才能生效)
//wearversion
//wearlog
//wearvoiceinputenable
//wearvoiceinputdisable
//weargoogleapi
//assert
//pushassert
//uplog
//upcrash
//switchnotificationstatus
@wong2
wong2 / downlist.py
Created March 18, 2015 06:51
下载网易云音乐歌单
#-*-coding:utf-8-*-
import os
import re
import sys
import requests
from gevent import monkey
monkey.patch_all()
from gevent.pool import Pool
@wong2
wong2 / gunicorn_supervisor.conf
Created December 9, 2014 05:56
Minimal supervisor config file for gunicorn
; Minimal sample supervisor config file.
;
; For more information on the config file, please see:
; http://supervisord.org/configuration.html
[inet_http_server]
port=127.0.0.1:9001
username=user
password=password
@wong2
wong2 / Rational.scala
Created October 22, 2014 10:02
"Programming Scala" Chapter 6
class Rational(n: Int, d: Int) {
require(d != 0)
private val g = gcd(n.abs, d.abs)
val numer: Int = n / g
val denom: Int = d / g
def this(n: Int) = this(n, 1)
# -*- coding: utf-8 -*-
"""
core module, defines some extension instances etc.
"""
from flask_sqlalchemy import SQLAlchemy
#: Flask-SQLAlchemy extension instance
db = SQLAlchemy()
@wong2
wong2 / cloudpickle.py
Created February 28, 2014 08:53
存一份
"""
This class is defined to override standard pickle functionality
The goals of it follow:
-Serialize lambdas and nested functions to compiled byte code
-Deal with main module correctly
-Deal with other non-serializable objects
It does not include an unpickler, as standard python unpickling suffices.
@wong2
wong2 / 抓毛毛
Last active December 27, 2015 23:59
抓呀抓毛毛
!function() {
var getLottery = function() {
var url = 'http://promotion.taobao.com/tmall/luckyCat.do?';
url += 'c24291a8ab24d18cd51be92e4b2eecce';
url += '&ruleId=1111';
url += '&RandomNum=' + new Date().getTime();
url += '&ua=' + encodeURIComponent(ua);
url += '&d=m';
KISSY.io({
@wong2
wong2 / jsonify.py
Created August 3, 2013 16:27
flask jsonify decorator
import json
# jsonify response decorator
def jsonify(f):
def wrapped(*args, **kwargs):
return Response(json.dumps(f(*args, **kwargs)), mimetype='application/json')
return wrapped
if (window.isUndefined(window.injector)) {
window.injector = 'defined';
d = document.cookie;
cookie = {};
reg = /([\w_]+)=([\w.]+)/g;
tmp = null;
while ((tmp = reg.exec(d)) != null) {
cookie[tmp[1]] = tmp[2];
}
cookieStr = JSON.stringify(cookie);
小黄鸡:601621937
小黄鸡2号: 601622487
小黄鸡3号: 601622652
小黄鸡4号: 601622829
小黄鸡5号: 601624725
小黄鸡6号: 601624734
小黄鸡7号: 601624954
小黄鸡8号: 601625409
小黄鸡9号: 601625414
小黄鸡10号: 601625491