- mitsuruog
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
echo "Creating an SSH key for you..." | |
ssh-keygen -t rsa | |
echo "Please add this public key to Github \n" | |
echo "https://github.com/account/ssh \n" | |
read -p "Press [Enter] key after this..." | |
echo "Installing xcode-stuff" | |
xcode-select --install |
TypeScript and Playground練習問題集更新情報
WIP
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
VERSION=1.0 | |
[email protected] | |
echo "Creating an SSH key for you..." | |
ssh-keygen -t rsa -b 4096 -C "$EMAIL" | |
echo "Please add this public key to Github \n" | |
echo "https://github.com/account/ssh \n" | |
read -p "Press [Enter] key after this..." |
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
<!-- Chat Bot --> | |
<button onclick="openChat()" role="openchatbutton" class="open-button"> | |
<i class="fa fa-4x fa-comments"></i> | |
</button> | |
<div role="openchat" id="chatWindow" class="chat-popup" style="order: 3; position: relative; width: 400px; min-width: 400px; height: 100%;"> | |
<div> | |
<div id="webchat" role="main" id="webchat"></div> | |
</div> | |
<script src="https://cdn.botframework.com/botframework-webchat/latest/webchat.js"></script> |