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
former | latter | cancel | |
---|---|---|---|
立ちP | 立ちP | TRUE | |
立ちP | 立ちK | TRUE | |
立ちP | 近距離立ちS | TRUE | |
立ちP | 遠距離立ちS | TRUE | |
立ちP | 立ちHS | TRUE | |
立ちP | しゃがみP | TRUE | |
立ちP | しゃがみK | TRUE | |
立ちP | しゃがみS | TRUE | |
立ちP | しゃがみHS | TRUE |
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
[]slack.Message{ | |
slack.Message{ | |
Msg: slack.Msg{ | |
Type: "message", | |
Channel: "", | |
User: "U0SBZQ82Y", | |
Text: "test", | |
Timestamp: "1493305433.915644", | |
ThreadTimestamp: "1493305433.915644", | |
IsStarred: false, |
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
# ------------------------------- | |
# making workspace | |
mkdir ~/src | |
# ------------------------------- | |
# installing emacs24 | |
cd ~/src | |
wget http://public.p-knowledge.co.jp/gnu-mirror/emacs/emacs-25.3.tar.gz |
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
# .bashrc | |
# Source global definitions | |
if [ -f /etc/bashrc ]; then | |
. /etc/bashrc | |
fi | |
# User specific aliases and functions | |
# Show Current Git Branch in Prompt |
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
<head> | |
<link href="starlight-loading.min.css" rel="stylesheet" /> | |
<script src="starlight-loading.min.js"></script> | |
... |
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
# ハッシュ | |
person = {name: "Taro", age: 16} | |
p person[:name] | |
# 構造体 | |
Person = Struct.new(:name, :age) | |
person = Person.new("Taro", 16) | |
p person.name |