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 / 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 () {
@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==
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 / ThunderDL.user.js
Last active August 11, 2022 15:52
[Tampermonkey脚本]获取页面内所有迅雷下载链接,启动快捷键 alt+x
// ==UserScript==
// @name 嗅探迅雷链接 Jaeger
// @namespace https://gist.github.com/jae-jae/70f175342130f11df1ae7bd54b93581e
// @version 1.4.6
// @description 嗅探页面内所有迅雷下载链接,方便批量离线下载
// @author Jaeger <JaegerCode@gmail.com>
// @icon http://lixian.vip.xunlei.com/favicon.ico
// @include http*
// @require https://raw.githubusercontent.com/jae-jae/l.js/master/userjs/l.userjs.min.js
// @require https://gist.githubusercontent.com/jae-jae/35a1833079d26e6c9d9c6d5bed982353/raw/userjs-base.js
@jae-jae
jae-jae / PHP_Gist
Last active July 19, 2016 04:02
PHP代码片段
PHP代码片段
@jae-jae
jae-jae / README.md
Last active May 16, 2017 17:48
kvm服务器系统盘与数据盘合并脚本

执行

1.合并系统盘与数据盘

wget https://gist.githubusercontent.com/jae-jae/6010e2ab7e5cd857e22a9c90817f6343/raw/3733ba54077bf7dcb522d21b105a4d82e58581d1/merge-hrad-disk.sh
bash merge-hrad-disk.sh

2.扩展swap分区,合并系统盘与数据盘

wget https://gist.githubusercontent.com/jae-jae/6010e2ab7e5cd857e22a9c90817f6343/raw/1c8da2ab055179902f57c74a2f5006a8467a3563/merge-hrad-disk-and-swap.sh
@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 / 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
@jae-jae
jae-jae / UserScript.js
Last active July 28, 2021 08:17
tampermonkey脚本基类
// @require https://raw.githubusercontent.com/jae-jae/l.js/master/userjs/l.userjs.min.js
// @require https://gist.githubusercontent.com/jae-jae/35a1833079d26e6c9d9c6d5bed982353/raw/userjs-base.js
// @grant GM_xmlhttpRequest
// @connect cdnjs.cloudflare.com
// @connect raw.githubusercontent.com
// @connect gist.githubusercontent.com
@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==