- 名前(任意)
- Kiyoshi SAKATA
- Twitter or Facebookのアカウント or HN等
- Twitter @sankitch
- Facebook kiyoshi.sakata
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
| #!/bin/sh | |
| perl -nle'm|^<li><a href="([^"]+)">(.+)</a>| and print $2, ": ", $1' < ~/.w3m/bookmark.html |\ | |
| percol --match-method migemo |\ | |
| perl -nle 'm|https?://.+|g and print $&' |\ | |
| xargs w3m |
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
| #!/bin/sh | |
| perl -nle'm|^<li><a href="([^"]+)">(.+)</a>| and print $2, ": ", $1' < ~/.w3m/bookmark.html |\ | |
| canything |\ | |
| perl -nle 'm|https?://.+|g and print $&' |\ | |
| xargs w3m |
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
| diff --git a/Makefile b/Makefile | |
| index 11529b8..3a29118 100644 | |
| --- a/Makefile | |
| +++ b/Makefile | |
| @@ -1,5 +1,5 @@ | |
| canything: canything.c | |
| - @gcc -Wall -O3 -o $@ $< -lncursesw && echo make canything | |
| + @gcc -Wall -O3 -o $@ $< -lncursesw -L/usr/include/ncursesw -I/usr/include/ncursesw && echo make canything | |
| clean: | |
| @rm -f canything && echo clean canything |
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
| @charset "utf-8"; | |
| /* | |
| * このファイルを編集して userChrome.css という名前で | |
| * [プロファイルディレクトリ]/chrome/ | |
| * ディレクトリにコピーしてください。 | |
| */ | |
| /* | |
| * このファイルを使って Mozilla のユーザインターフェイスの見た目をカスタマイズ | |
| * できます。デフォルト設定を上書きする場合は !important 宣言を使ってください。 |
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
| #!/bin/sh | |
| ruby -r cgi -e 'puts CGI.escape("'$1'")' |
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
| #!/bin/sh | |
| screen -t $1 ssh $1 |
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
| #!/bin/sh | |
| curl ipcheck.ieserver.net |
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
| function d { | |
| cd ~/Develop/$1 | |
| } | |
| function _d { | |
| _files -W ~/Develop/ && return 0; | |
| return 1; | |
| } | |
| compdef _d d |
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
| <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 }}" /> |