Skip to content

Instantly share code, notes, and snippets.

View muzea's full-sized avatar
🎯
专注文档编辑

MuYu muzea

🎯
专注文档编辑
View GitHub Profile
@muzea
muzea / code.js
Last active September 25, 2017 06:08
$(function() {
const url = 'YOUR URL';
$(".btn.getauthzcode").click(function () {
$.ajax({
url,
success: function() {
console.log(url);
},
}
})
@muzea
muzea / 3040M
Last active December 4, 2019 05:40
public-key
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
@muzea
muzea / add_proxy_to_svn.sh
Created March 19, 2018 05:36
use proxy from svn
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
@muzea
muzea / readingTime.js
Created September 10, 2018 08:05
fix GHOST readingTime
(function($) {
$.fn.readingTime = function(config) {
if (!this.length)
return this;
var r = this
, a = $(this);
r.settings = $.extend({}, {
readingTimeTarget: ".eta",
wordCountTarget: null,
wordsPerMinute: 270,
@muzea
muzea / map.js
Created November 27, 2018 12:53
sample import info
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'
]
@muzea
muzea / my_smtp.go
Created December 1, 2018 08:47
SMTP relay
package main
import (
"crypto/tls"
"log"
"net/smtp"
"io"
"io/ioutil"
@muzea
muzea / index.html
Last active December 11, 2018 13:01
ass tool
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<style>
html, body {
margin: 0;
@muzea
muzea / get.babel-map.js
Created December 14, 2018 11:32
获取文件间依赖
const path = require('path')
const fs = require('fs')
const glob = require('glob')
const { transformFileSync } = require('@babel/core')
const t = require('@babel/types')
const { uniq } = require('lodash')
const packageJson = require('../package.json')
const alias = require('../webpack.common').resolve.alias
const aliasList = Object.keys(alias)
@muzea
muzea / print.js
Created March 29, 2019 03:57
print
function print() {
let start = 0;
const n = [1, 3, 9];
let count = 27;
while (count) {
console.log(n.map(it => (Math.floor(start / it) % 3) + 1).join(' '))
start += 1;
count -= 1;
}
}
@muzea
muzea / config.sh
Last active April 27, 2021 17:15
init shell
case "$1" in
'install')
apt update
apt install git curl zsh vim htop -y
chsh -s $(which zsh)
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
;;
'docker')
apt-get update
apt-get install \