2011年8月9日火曜日

Lion + Chromeで Proxy Switchy! が動かない Bookmark and Share

はまったので、memo

  1. ruleを設定して、Auto Switch Modeを有効にしても Direct Connectionしてるっぽい
  2. メニューバーから Chrome -> 環境設定 -> 高度な設定 -> プロキシ設定の変更… を押下
  3. 自動プロキシ構成 がチェックされていて、pacファイルのパスが正しいことを確認する
  4. ターミナル上の vi とかで pacファイルを確認する
  5. 末尾にゴミ文字列が入っているので、削除する
  6. chromeを再起動

自分は↑をゴニョゴニョしながらやってたので、手順は若干違うかもですけど、大体こんな感じで治るはず

2011年6月18日土曜日

Firefox5β + Pentadactyl Bookmark and Share

nightlyなヤツでいけた!
Pentadactyl Nightly 2011-06-16
   

2011年3月20日日曜日

ie9日本語版 Bookmark and Share

一応、延期っつーことらしいっすけど
s/enu/jpn/ でいけたッス

vimperator -> pentadactyl 移行 Bookmark and Share

先人達のありがたいpluginを移行していこうかと思いforkしてみた。
https://github.com/junichi-tanaka/vimperator-plugins

github用にsshの鍵を作成 Bookmark and Share

既にssh鍵(id_rsa)は他で使っていたので、新しく鍵を作って両方を併用したい。

$ ssh-keygen -C "foge_at_gmail.com"
Generating public/private rsa key pair.
Enter file in which to save the key (/Users/foo/.ssh/id_rsa): github_id_rsa
Enter passphrase (empty for no passphrase): 
Enter same passphrase again: 
Your identification has been saved in github_id_rsa.
Your public key has been saved in github_id_rsa.pub.
.
.
$ mv github_id_rsa ~/.ssh/github_id_rsa

github_id_rsa.pubをgithubに登録

~/.ssh/configに以下を追加
Host github.com
  User git
  Hostname github.com
  PreferredAuthentications publickey
  IdentityFile ~/.ssh/github_id_rsa

接続テスト
$ ssh git@github.com
PTY allocation request failed on channel 0
Hi fogefoge-foo! You've successfully authenticated, but GitHub does not provide shell access.
Connection to github.com closed.

successfully authenticated って出たらOKらしい