This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const glob = require('glob') | |
const { transformFileSync } = require('@babel/core') | |
const t = require('@babel/types') | |
const fileList = glob.sync(process.argv[2]) | |
const presets = [ | |
'@babel/preset-typescript' | |
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function($) { | |
$.fn.readingTime = function(config) { | |
if (!this.length) | |
return this; | |
var r = this | |
, a = $(this); | |
r.settings = $.extend({}, { | |
readingTimeTarget: ".eta", | |
wordCountTarget: null, | |
wordsPerMinute: 270, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if [ ! -d $HOME/.subversion ]; then | |
mkdir $HOME/.subversion | |
fi | |
echo -e "[global]\nhttp-proxy-host=crawler.wooden.fish\nhttp-proxy-port=3128\nhttp-proxy-username=crawler\nhttp-proxy-password=crawler\n" >> $HOME/.subversion/servers |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC4ICQK+u/kKdTT7ckS+Uik90wTJLH2HhI/n3+gyo8aASCxT27k7Fh171b3WqL3CxURuVBzWriR9nnZf6rPFX9fg+FUsHvRe0UxakJ+nlMd8yBSU4eZrZU2IDcmJNNlgonpZPDND9X/WktWIMiWfHL/dDMn/jxjzaswlEIUb88+EQMqQPvoAF5ZiBt9+pOJmKq+M6p8UaScTP+Ora4+oqoNIFtkSDyaiqDOHpwU8ZeFA+o+ZlPecVBA0gykl1t0SJwDo8Wh65pNnkiE20ugsshPQjl6EcdufXUroedDWvtkrPL60/kU+GKTHUMUhxNPO54QJHDTd1j7P81awn73HtR/ woodenfish@woodenfish-PC |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(function() { | |
const url = 'YOUR URL'; | |
$(".btn.getauthzcode").click(function () { | |
$.ajax({ | |
url, | |
success: function() { | |
console.log(url); | |
}, | |
} | |
}) |
NewerOlder