- 名前(任意)
- Kiyoshi SAKATA
- Twitter or Facebookのアカウント or HN等
- Twitter @sankitch
- Facebook kiyoshi.sakata
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
key.setViewKey(['v', 'u'], function () { | |
gBrowser.selectedTab = gBrowser.addTab('view-source:' + content.document.location.href); | |
}, 'View Source Code'); |
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
cd /path/to/Dropbox | |
git clone git://github.com/imathis/octopress.git octopress | |
cd octopress | |
sudo gem install bundler | |
sudo bundle install | |
rake install | |
rake setup_github_pages | |
# Enter the read/write url for your repository: |
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 'www.sankitch.me' > source/CNAME | |
rake gen_deploy # rake generate && rake deploy |
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
<meta property="og:title" content="{% if page.title %}{{ page.title }} - {% endif %}{{ site.title }}" /> | |
<meta property="og:description" content="{{ description | strip_html | condense_spaces | truncate:150 }}" /> | |
<meta property="og:url" content="{{ canonical }}" /> | |
<meta property="og:image" content="{% if page.ogp_image %}{{ page.ogp_image }}{% else %}{{ site.default_ogp_image }}{% endif %}" /> | |
<meta property="og:author" content="{{ site.author }}" /> | |
<meta property="og:site_name" content="{{ site.title }}" /> | |
<meta property="og:locale" content="{{ site.facebook_locale }}" /> | |
<meta property="og:type" content="{% if page.index %}blog{% else %}article{% endif %}" /> | |
<meta property="fb:app_id" content="{{ site.facebook_app_id }}" /> |
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
function d { | |
cd ~/Develop/$1 | |
} | |
function _d { | |
_files -W ~/Develop/ && return 0; | |
return 1; | |
} | |
compdef _d d |
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
#!/bin/sh | |
curl ipcheck.ieserver.net |
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
#!/bin/sh | |
screen -t $1 ssh $1 |
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
#!/bin/sh | |
ruby -r cgi -e 'puts CGI.escape("'$1'")' |
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
@charset "utf-8"; | |
/* | |
* このファイルを編集して userChrome.css という名前で | |
* [プロファイルディレクトリ]/chrome/ | |
* ディレクトリにコピーしてください。 | |
*/ | |
/* | |
* このファイルを使って Mozilla のユーザインターフェイスの見た目をカスタマイズ | |
* できます。デフォルト設定を上書きする場合は !important 宣言を使ってください。 |
OlderNewer