Skip to content

Instantly share code, notes, and snippets.

View unionx's full-sized avatar
🦄
biu~biu~biu~

帝归 unionx

🦄
biu~biu~biu~
View GitHub Profile
<!-- 随机名人名言代码开始 -->
<h3 style="margin-top:10px;">
<button id="click-me">Click Me!</button>
<left id="people-quote">
<!-- 可以把这里的 jquery 依赖放在本地 -->
<script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script type="text/javascript">
var butong_net = new Array(
'物理教授走过校园,遇到数学教授。物理教授在进行一项实验,他总结出一个经验方程,似乎与实验数据吻合,他请数学教授看一看这个方程。<br>一周后他们碰头,数学教授说这个方程不成立。可那时物理教授已经用他的方程预言出进一步的实验结果,而且效果颇佳,所以他请数学教授再审查一下这个方程。 <br> 又是一周过去,他们再次碰头。数学教授告诉物理教授说这个方程的确成立,但仅仅对于正实数的简单情形成立。',
@unionx
unionx / cron.py
Last active August 29, 2015 14:08
Sample script for using plan to write cron files
#!/usr/bin/env python3
from plan import Plan
import argparse
cron = Plan()
# write the cron jobs here:
cron.command("/usr/bin/pganalyze-collector --cron", every="5.minute")
@unionx
unionx / RecursionMax.java
Created December 15, 2014 11:44
Use recursion in Java is not right
import java.util.*;
public class RecursionMax {
public static Integer max(LinkedList<Integer> numberList, Integer maxNumber) {
if (numberList.size() == 0) {
return maxNumber;
} else {
Integer firstNumber = numberList.get(0);
if (maxNumber < firstNumber) {
@unionx
unionx / leancloud
Created January 16, 2015 13:43
Leancloud Python REST script
#!/usr/bin/env python3
import time
import json
import hashlib
import requests
appId = 'xxx'
appKey = 'xxx'
masterKey = 'xxx'
@unionx
unionx / makeup
Created January 19, 2015 19:20
化妆品整理
#!/usr/bin/env python
makeupItem = {
'name': '香奈儿8号',
'category': '香水',
'price': 780,
'description': '一些评价blablabla'
}
@unionx
unionx / run.py
Created February 21, 2015 01:59
Try numba
#!/usr/bin/env python3
from numba import jit
from numpy import arange
import cProfile
##@jit
def sum2d(arr):
M, N = arr.shape
result = 0.0
@unionx
unionx / about.md
Created November 9, 2011 00:55 — forked from jasonrudolph/about.md
Programming Achievements: How to Level Up as a Developer
@unionx
unionx / about.org
Created November 22, 2011 23:06
My Programming Language

My Programming Language

The language is a lisp dialect.

@unionx
unionx / calc.py
Created March 31, 2012 13:53
admaster_2012_3_30_count_rectangles
#!/usr/bin/env python
#coding:utf-8
# 题目:下图中一共有多少个矩形?星号表示挖空不计的部分
# # # # # # # # # # #
# # # # # # # # # # #
# # # * * * * # # # #
# # # * * * * # # # #
# # # * * * * # # # #
@unionx
unionx / test.el
Created July 30, 2012 06:58
read and split file in emacs lisp
#!/usr/local/bin/emacs --script
(defun read-lines (filename)
(with-temp-buffer
(insert-file-contents filename)
(split-string (buffer-string) "\n" t)))
;; test.log
;; 111111,22222222222,3333333333333