階層表示 参考
不可視ファイルを表示
defaults write com.apple.finder AppleShowAllFiles true
フォルダを英語名に 参考
pygmentize -f rtf code.py | pbcopy |
iconv -s -f SHIFT_JIS -t UTF-8 paper.tex > paper_utf8.sty |
zip -e -r EXPORT_FILE_PATH.zip DIR_NAME |
dvipdfmx -p a4 FILE_NAME.dvi |
body{ | |
padding: 0; | |
height: 100%; | |
width: 100%; | |
background-color: #333333; | |
} | |
.content{ | |
background-color: #f8f8f8; | |
padding: 40px 20px; |
.image-on-frame{ | |
position: relative; | |
display: block; | |
max-width: 90%; | |
padding: 5px; | |
margin: 10px auto 10px auto; | |
border: 1px solid #ebebeb; | |
box-shadow: 0 0 5px #ebebeb; | |
-webkit-box-shadow: 0 0 5px #ebebeb; |
<?xml version="1.0"?> | |
<root> | |
<item> | |
<name>Vi Mode extra</name> | |
<list> | |
<item> | |
<name>LeaveInsMode with EISUU(Terminal)</name> | |
<identifier>private.app_terminal_esc_with_eisuu</identifier> | |
<only>TERMINAL</only> | |
<autogen>--KeyToKey-- KeyCode::ESCAPE, KeyCode::ESCAPE, KeyCode::JIS_EISUU</autogen> |
snippet package main | |
abbr minimal template with importing fmt | |
options head | |
package main | |
import ( | |
"fmt" | |
) | |
func main() { |
# chef-solo: nodeでchef-repoを作成して環境構築 | |
curl -L http://www.opscode.com/chef/install.sh | sudo bash | |
git clone git://github.com/opscode/chef-repo.git | |
knife configure | |
knife cookbook create hello -o cookbooks | |
vi cookboks/hello/recipes/default.rb | |
vi localhost.js | |
vi solo.rb | |
sudo chef-solo -c solo.rb -j ./localhost.json |