Skip to content

Instantly share code, notes, and snippets.

View ahuigo's full-sized avatar
😇
I may be slow to respond.

Ahuigo ahuigo

😇
I may be slow to respond.
View GitHub Profile
@ahuigo
ahuigo / jsfiddle.html
Last active August 27, 2018 13:33
Simple codepen fiddle
data:text/html,<body oninput="i.srcdoc=h.value+'<style>'+c.value+'</style><script>'+j.value+'</script>'"><style>textarea,iframe{width:100%;height:50%}body{margin:0}textarea{width:33.33%;font-size:18}</style><textarea placeholder=HTML id=h></textarea><textarea placeholder=CSS id=c></textarea><textarea placeholder=JS id=j></textarea><iframe id=i>
@ahuigo
ahuigo / vue-slot.html
Last active August 2, 2018 11:33
Vue slot
<div id="parent-template">
<h1>我才是boss</h1>
<child>
<p>>原始头</p>
<p slot="head">我是头</p>
<p slot="foot">我是尾</p>
<p slot="xx">我没用</p>
<p>>原始尾</p>
</child>
</div>
@ahuigo
ahuigo / ssh-proxy-setup
Created March 11, 2019 16:47
setup proxy for ssh connection
# 添加到 ~/.ssh/config
# 修改 <custom-name> 为任意名字
# 修改 <ip> 为服务器地址
# 修改 <username> 为登录服务器的用户名
# 修改 <port> 为服务器端口
# 修改完 ssh custom-name 就可以登录服务器了
# 下面的配置是仅 Mac 有效的
Host <custom-name>
User <username>
HostName <ip>