<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
		xmlns:xhtml="http://www.w3.org/1999/xhtml"
>

<channel>
	<title>Aerialarts &#187; Mac</title>
	<atom:link href="http://aerial.st/tags/mac/feed" rel="self" type="application/rss+xml" />
	<link>http://aerial.st</link>
	<description></description>
	<lastBuildDate>Thu, 22 Jul 2010 13:00:53 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://aerial.st/tags/mac/feed" />
		<item>
		<title>gitリポジトリを立ててSSHで利用</title>
		<link>http://aerial.st/archive/2010/06/19/git-via-ssh</link>
		<comments>http://aerial.st/archive/2010/06/19/git-via-ssh#comments</comments>
		<pubDate>Sat, 19 Jun 2010 06:17:57 +0000</pubDate>
		<dc:creator>ikm</dc:creator>
				<category><![CDATA[未分類]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[ssh]]></category>

		<guid isPermaLink="false">http://aerial.st/?p=705</guid>
		<description><![CDATA[以前daemonを起動してリポジトリ立てる方法について書いたけど、今回はgitのリポジトリを立てる(SSH経由) を参考にSSH経由でできるようにやってみた。 リポジトリを置くサーバのホスト名はexampleとする。 ユーザの追加 リポジトリを操作するためのgitユーザをexampleサーバに追加する。 Mac OS 10.6の場合、ユーザは dsclで追加 する。 このときシェルにgit-shell（MacPortsで入れたなら /opt/local/bin/git-shell にある）を設定する。こうすることでpush,pullのみを受け付けるようになる。 リポジトリの作成 example:/Users/gitディレクトリ配下にリポジトリを集約するreposディレクトリを作成し、今回はprojectというリポジトリを作成してみる（末尾に.gitを付けるのは慣習？）。 % cd /Users/git % sudo -u git mkdir repos % sudo -u git mkdir repos/project.git % cd repos/project.git % sudo -u git git init --bare 鍵を追加 gitユーザにSSHでログインするための鍵を追加する。 % cat ~/.ssh/id_rsa.pub > /Users/git/.ssh/authorized_keys cloneしてみる $ git clone git@example:repos/project.git $ cd project [...]]]></description>
		<wfw:commentRss>http://aerial.st/archive/2010/06/19/git-via-ssh/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://aerial.st/archive/2010/06/19/git-via-ssh" />
	</item>
		<item>
		<title>（挫折）NSPreferredMailCharset on Snow Leopard</title>
		<link>http://aerial.st/archive/2010/06/02/nspreferredmailcharset-on-snow-leopard-faile</link>
		<comments>http://aerial.st/archive/2010/06/02/nspreferredmailcharset-on-snow-leopard-faile#comments</comments>
		<pubDate>Wed, 02 Jun 2010 05:30:59 +0000</pubDate>
		<dc:creator>ikm</dc:creator>
				<category><![CDATA[ソフトウェア]]></category>
		<category><![CDATA[開発]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Mail.app]]></category>

		<guid isPermaLink="false">http://aerial.st/?p=697</guid>
		<description><![CDATA[NSPreferredMailCharset on LeopardをSnow Leopardに対応させようとしたけど、ちょっと挫折した。 やったことをとりあえずメモっておく： method_impをmethod_(set&#124;get)Implementationに書き換える Info.plistのSupportedPluginCompatibilityUUIDsに、Mail.appとMessage.frameworkのInfo.plistに書かれているPluginCompatibilityUUIDsを列挙する ビルド対象のアーキテクチャを32bit/64bit対応のUniversalに設定する Console.appを見ながら作業したのでここまでは合ってるはずなんだけど、ここで&#8221;Domain=NSCocoaErrorDomain Code=3588&#8243;が出た。どっかでエラーが出てるんだけど、今すぐにはちょっとわからない。]]></description>
		<wfw:commentRss>http://aerial.st/archive/2010/06/02/nspreferredmailcharset-on-snow-leopard-faile/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://aerial.st/archive/2010/06/02/nspreferredmailcharset-on-snow-leopard-faile" />
	</item>
		<item>
		<title>CassandraをSnow Leopardで動かす</title>
		<link>http://aerial.st/archive/2010/03/18/install-cassandra-onsnow-leopard</link>
		<comments>http://aerial.st/archive/2010/03/18/install-cassandra-onsnow-leopard#comments</comments>
		<pubDate>Thu, 18 Mar 2010 14:48:47 +0000</pubDate>
		<dc:creator>ikm</dc:creator>
				<category><![CDATA[開発]]></category>
		<category><![CDATA[cassandra]]></category>
		<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://aerial.st/?p=666</guid>
		<description><![CDATA[CassandraをSnow Leopardで動かす方法。 Javaの設定 ~/.zshrcに次の記述を追加する。 export JAVA_HOME=$(/usr/libexec/java_home) export PATH=$JAVA_HOME/bin:$PATH Cassandraのインストール まずディレクトリを掘る。 1つはログ用ディレクトリ。 mkdir -p /var/log/cassandra touch /var/log/cassandra/system.log chown -R `whoami` /var/log/cassandra 2つ目はデータ用ディレクトリ。デフォルトらしい。 mkdir -p /var/lib/cassandra chown -R `whoami` /var/lib/cassandra 今回はコンパイル済みバイナリを落としてそれを使う。 tar xf apache-cassandra-0.5.1-bin.tar.gz mv apache-cassandra-0.5.1-bin /usr/local ln -s /usr/local/apache-cassandra-0.5.1-bin /usr/local/cassandra サーバを立ち上げる。 /usr/local/cassandra/bin/cassandra デフォルトではシングルモードで動作し、8888番ポートを使用する。 詳細な設定はconf/storage-conf.xmlに記述する。 クライアントはbin/cassandra-cliを使用する。 /usr/local/cassandra/bin/cassandra-cli -host localhost -port 8888 /usr/local/cassandra/bin/cassandra-cli -host localhost -port 9160 対話形式で起動し、helpコマンドでヘルプを見ることができる。 [...]]]></description>
		<wfw:commentRss>http://aerial.st/archive/2010/03/18/install-cassandra-onsnow-leopard/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://aerial.st/archive/2010/03/18/install-cassandra-onsnow-leopard" />
	</item>
		<item>
		<title>launchctlでlocate</title>
		<link>http://aerial.st/archive/2009/11/14/locate-with-launchctl</link>
		<comments>http://aerial.st/archive/2009/11/14/locate-with-launchctl#comments</comments>
		<pubDate>Sat, 14 Nov 2009 05:12:45 +0000</pubDate>
		<dc:creator>ikm</dc:creator>
				<category><![CDATA[ソフトウェア]]></category>
		<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://aerial.st/?p=576</guid>
		<description><![CDATA[locateを使うにはupdatedbが必要で、適宜更新するためにもcronで定時に更新したりするらしい。 ただSnow Leopard（Tiger以降？）だとupdatedbがデフォルトでパスの通った場所にない。探してみると、/usr/libexec/locate.updatedb というちょっと変な場所にある。 そこで、こいつを実行せずにlocateを実行してみると、どうやら定期的な更新とかはlaunchctlでそこらへんはうまくやってくれるかのようなメッセージが出てくる。そいつにしたがって以下を実行してみると、確かにlocateが使えるようになる。 sudo launchctl load -w /System/Library/LaunchDaemons/com.apple.locate.plist DBの更新スケジュールは/System/Library/LaunchDaemons/com.apple.locate.plistに記述されている。]]></description>
		<wfw:commentRss>http://aerial.st/archive/2009/11/14/locate-with-launchctl/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://aerial.st/archive/2009/11/14/locate-with-launchctl" />
	</item>
		<item>
		<title>macportsでzlibのインストールに失敗</title>
		<link>http://aerial.st/archive/2009/09/07/install-zlib-with-macports-on-snow-leopard</link>
		<comments>http://aerial.st/archive/2009/09/07/install-zlib-with-macports-on-snow-leopard#comments</comments>
		<pubDate>Sun, 06 Sep 2009 15:43:15 +0000</pubDate>
		<dc:creator>ikm</dc:creator>
				<category><![CDATA[ソフトウェア]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[macports]]></category>

		<guid isPermaLink="false">http://aerial.st/?p=550</guid>
		<description><![CDATA[macportsでzlib 1.2.3をインストールしようとしたら、 ~$ sudo port -f install zlib ---> Computing dependencies for zlib ---> Cleaning zlib で終わってしまい、先に進まなかった。 そこで、Snow Leopard導入記録その1 MacPort関連簡易メモを参考に+universalをつけてインストールしてみたところ、問題なくインストールされた。]]></description>
		<wfw:commentRss>http://aerial.st/archive/2009/09/07/install-zlib-with-macports-on-snow-leopard/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://aerial.st/archive/2009/09/07/install-zlib-with-macports-on-snow-leopard" />
	</item>
		<item>
		<title>Snow Leopardをインストールした</title>
		<link>http://aerial.st/archive/2009/09/02/installe-snow-leopard</link>
		<comments>http://aerial.st/archive/2009/09/02/installe-snow-leopard#comments</comments>
		<pubDate>Wed, 02 Sep 2009 03:01:44 +0000</pubDate>
		<dc:creator>ikm</dc:creator>
				<category><![CDATA[ソフトウェア]]></category>
		<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://aerial.st/?p=543</guid>
		<description><![CDATA[Snow Leopardが届いたので早速クリーンインストールした。 そういえばファイルシステムの選択が無かったけど、それでもちゃんと大文字と小文字は区別してくれている。]]></description>
		<wfw:commentRss>http://aerial.st/archive/2009/09/02/installe-snow-leopard/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://aerial.st/archive/2009/09/02/installe-snow-leopard" />
	</item>
		<item>
		<title>SafariでCommand+KでGoogle検索</title>
		<link>http://aerial.st/archive/2009/07/25/search-google-like-firefox-with-safari</link>
		<comments>http://aerial.st/archive/2009/07/25/search-google-like-firefox-with-safari#comments</comments>
		<pubDate>Sat, 25 Jul 2009 13:09:42 +0000</pubDate>
		<dc:creator>ikm</dc:creator>
				<category><![CDATA[ソフトウェア]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[safari]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://aerial.st/?p=511</guid>
		<description><![CDATA[Firefoxのキーボードショートカットに慣れてるので、SafariでWeb検索をするためのキーボードショートカットCommand+Option+Fはいまいち使いづらい。 ググってみたところ、システム環境設定から変更できるらしいので、試したところ成功した！ 手順は、 システム環境設定のKeyboard &#38; Mouseを開く Keyboard Shotcutsタブを開く 「+」ボタンで項目を追加する Application欄にSafari.appを選択 Menu Titleに「Google Search&#8230;」を入力 Keyboard Shortcutにフォーカスが当たっている状態でCommand+Kを入力 Safariを再起動 凄いなー。]]></description>
		<wfw:commentRss>http://aerial.st/archive/2009/07/25/search-google-like-firefox-with-safari/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://aerial.st/archive/2009/07/25/search-google-like-firefox-with-safari" />
	</item>
		<item>
		<title>Mac上にgitの公開リポジトリを作る</title>
		<link>http://aerial.st/archive/2009/07/22/public-git-repository-on-mac</link>
		<comments>http://aerial.st/archive/2009/07/22/public-git-repository-on-mac#comments</comments>
		<pubDate>Wed, 22 Jul 2009 09:55:25 +0000</pubDate>
		<dc:creator>ikm</dc:creator>
				<category><![CDATA[ソフトウェア]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://aerial.st/?p=502</guid>
		<description><![CDATA[git 1.6.3.3 on Mac OS X 10.5 以下の方法でとりあえず動く。ただし安全かどうかは保障できない。 git-coreのインストール $ sudo port install git-core +gitweb # 一応gitwebも リポジトリの置き場所を作る ここでは/opt/local/var/git/repos以下にリポジトリを作ると仮定する。 $ sudo mkdir /opt/local/var/git/repos $ cd /opt/local/var/git/repos daemonを起動 $ sudo /opt/local/libexec/git-core/git-daemon --export-all --enable=receive-pack --base-path=/opt/local/var/git/repos &#8211;base-pathでリポジトリの置き場所を指定する。&#8211;export-allと&#8211;enable=receive-packはまだよくわかってない。 リポジトリを作る 新規に空のリポジトリを作る場合は次を実行。 $ cd /opt/local/var/git/repos $ sudo mkdir testrepos.git $ cd testrepos.git $ sudo git init --bare $ sudo touch git-daemon-export-ok [...]]]></description>
		<wfw:commentRss>http://aerial.st/archive/2009/07/22/public-git-repository-on-mac/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://aerial.st/archive/2009/07/22/public-git-repository-on-mac" />
	</item>
		<item>
		<title>Growlでautospecの結果を表示</title>
		<link>http://aerial.st/archive/2009/07/21/display-autospec-results-with-growl</link>
		<comments>http://aerial.st/archive/2009/07/21/display-autospec-results-with-growl#comments</comments>
		<pubDate>Mon, 20 Jul 2009 15:17:39 +0000</pubDate>
		<dc:creator>ikm</dc:creator>
				<category><![CDATA[開発]]></category>
		<category><![CDATA[growl]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[rspec]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://aerial.st/?p=493</guid>
		<description><![CDATA[Growlの準備 Growlをインストール インストーラと一緒に入っているExtra/growlnotify/install.shを実行する autotest + growl で楽々テストを参考に、Growlが「受信される通知を聞く」、「リモートアプリケーション登録を許可」するように環境設定パネルから設定する。 gem類の準備 バージョンも併記した。 まずはgemの準備。 $sudo gem install ZenTest # 4.1.1 $sudo gem install redgreen # 1.2.2, autospecの結果をコンソールで赤と緑で塗り分けてくれる。Growlだけなら不要 $sudo gem install ruby-growl # 1.0.1 RSpecとRSpec on Railsのインストール。 ruby script/plugin install git://github.com/dchelimsky/rspec.git -r 'refs/tags/1.2.7' # 1.2.7 ruby script/plugin install git://github.com/dchelimsky/rspec-rails.git -r 'refs/tags/1.2.7.1' # 1.2.7.1 ruby script/generate rspec 画像を拝借 cd ~ curl [...]]]></description>
		<wfw:commentRss>http://aerial.st/archive/2009/07/21/display-autospec-results-with-growl/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://aerial.st/archive/2009/07/21/display-autospec-results-with-growl" />
	</item>
		<item>
		<title>MacBook Proを買った</title>
		<link>http://aerial.st/archive/2009/06/26/buy-macbook-pro</link>
		<comments>http://aerial.st/archive/2009/06/26/buy-macbook-pro#comments</comments>
		<pubDate>Thu, 25 Jun 2009 17:34:44 +0000</pubDate>
		<dc:creator>ikm</dc:creator>
				<category><![CDATA[PC]]></category>
		<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://aerial.st/?p=482</guid>
		<description><![CDATA[もう1週間前のことだけど、新型のMacBook Proを買った。 15インチの2.66GHzのやつ。型番は…MB985J/A。 やっとIntel Macに移行してGoogle Chromeを起動したら、Dock内でのバウンドなしで起動して驚いた。Core2 Duoなためかコンパイルも早いし、TimeMachineもあって環境の再構築は容易に進んだ。いいね、新型。 というわけでPowerBook G4があまったので、こっちはサーバにしてみようかと思う。会社からSSHでテスト環境として利用できたらいいなぁとか、いろいろ考えていたり。あんまり意味は無いかもしれないけど、それも勉強＆お楽しみってことで。 いやしかし新型はいいなぁ。]]></description>
		<wfw:commentRss>http://aerial.st/archive/2009/06/26/buy-macbook-pro/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://aerial.st/archive/2009/06/26/buy-macbook-pro" />
	</item>
	</channel>
</rss>
