This file contains 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/config | |
# 修改 <custom-name> 为任意名字 | |
# 修改 <ip> 为服务器地址 | |
# 修改 <username> 为登录服务器的用户名 | |
# 修改 <port> 为服务器端口 | |
# 修改完 ssh custom-name 就可以登录服务器了 | |
# 下面的配置是仅 Mac 有效的 | |
Host <custom-name> | |
User <username> | |
HostName <ip> |
This file contains 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
<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> |
This file contains 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
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> |