Skip to content

Instantly share code, notes, and snippets.

View jae-jae's full-sized avatar
🏠
Working from home

Jaeger jae-jae

🏠
Working from home
  • China
View GitHub Profile
@jae-jae
jae-jae / sogou-download.user.js
Last active December 15, 2015 16:46
利用搜狗浏览器“下载一键通”功能的API,自动帮您找到页面中资源的最佳下载地址,让下载更简单!
// ==UserScript==
// @name 下载一键通
// @author greasepig
// @namespace https://greasyfork.org/users/2620-greasepig
// @description 利用搜狗浏览器“下载一键通”功能的API,自动帮您找到页面中资源的最佳下载地址,让下载更简单!
// @version 1.0.2
// @include http://*
// @run-at document-end
// @grant GM_xmlhttpRequest
// ==/UserScript==
@jae-jae
jae-jae / 22jstemplate.js
Last active December 15, 2015 16:56 — forked from hongru/jstemplate.js
/*!
* jstemplate: a light & fast js tamplate engine
* License MIT (c) 岑安
*/
var name = "jae";
;(function (name, definition) {
if (typeof define == 'function') define(definition);
else if (typeof module != 'undefined') module.exports = definition();
else this[name] = definition();
})('jstemplate', function () {
class A
x1:(arg)->
console.log 'x1' + arg
x2:(arg1,arg2)->
console.log 'x2' + arg1 + ":" + arg2
run:(c,arg...)->
@[c] && @[c].apply(this,arg)
c = new A()
@jae-jae
jae-jae / PHP_Gist
Last active July 19, 2016 04:02
PHP代码片段
PHP代码片段
@jae-jae
jae-jae / authcode.php
Created September 2, 2016 15:26 — forked from BelinChung/authcode.php
Discuz! 中的加解密函数
<?php
/**
* @param string $string 原文或者密文
* @param string $operation 操作(ENCODE | DECODE), 默认为 DECODE
* @param string $key 密钥
* @param int $expiry 密文有效期, 加密时候有效, 单位 秒,0 为永久有效
* @return string 处理后的 原文或者 经过 base64_encode 处理后的密文
*
**/
function authcode($string, $operation = 'DECODE', $key = '', $expiry = 3600)
@jae-jae
jae-jae / Sniffing-download.user.js
Created September 24, 2016 05:50
下载一键通,利用搜狗浏览器“下载一键通”功能的API,自动帮您找到页面中资源的最佳下载地址,让下载更简单!
// ==UserScript==
// @name 下载一键通
// @author greasepig
// @namespace https://greasyfork.org/users/2620-greasepig
// @description 利用搜狗浏览器“下载一键通”功能的API,自动帮您找到页面中资源的最佳下载地址,让下载更简单!
// @version 1.0.2
// @include http://*
// @run-at document-end
// @grant GM_xmlhttpRequest
// ==/UserScript==
@jae-jae
jae-jae / M.js
Last active November 24, 2016 07:13
M.js对NodeJS的数据库操作的简单封装
/**
* M.js
*
* 对NodeJS的数据库操作的简单封装
*
* @author Jaeger <JaegerCode@gmail.com>
* @link https://gist.github.com/jae-jae/bfe0961253e7441242bb724906b26133
* @version 1.1
*
**/
@jae-jae
jae-jae / cron
Last active December 12, 2016 13:39
mysql备份shell脚本
50 0 * * * rsync -avzP root@xxx.com:/home/mysql_data_backup /home/my_site_backup/
@jae-jae
jae-jae / install-grive.sh
Last active December 16, 2016 04:09
安装Grive,在Linux VPS上同步文件到Google Drive
#!/bin/bash
# apt-get install software-properties-common -y
add-apt-repository ppa:nilarimogard/webupd8
apt-get update
apt-get install grive -y
mkdir ~/google_drive
cd ~/google_drive
@jae-jae
jae-jae / autojump
Last active February 21, 2017 04:01
安装ZSH
git clone git://github.com/joelthelion/autojump.git
cd autojump
./install.py
最后把以下代码加入.zshrc:
[[-s ~/.autojump/etc/profile.d/autojump.sh ]]&&.~/.autojump/etc/profile.d/autojump.sh