<?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/"
	>

<channel>
	<title>さかどん記録 &#187; Macな記事</title>
	<atom:link href="http://sakadon.net/tag/mac/feed" rel="self" type="application/rss+xml" />
	<link>http://sakadon.net</link>
	<description>記録とか、写真とか、たわごとなど下らなくどうでも良いような事を載せるところ。つまり、ちまたで良くあるウェブログっぽいの。</description>
	<lastBuildDate>Wed, 07 Dec 2011 18:47:20 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>GrowlStyleのOreNamaをMacBook向け(横1280px)にしてみた</title>
		<link>http://sakadon.net/2010/02/02/209</link>
		<comments>http://sakadon.net/2010/02/02/209#comments</comments>
		<pubDate>Mon, 01 Feb 2010 21:35:18 +0000</pubDate>
		<dc:creator>sakadon</dc:creator>
				<category><![CDATA[Macな記事]]></category>
		<category><![CDATA[ソフトウェアについてなど]]></category>
		<category><![CDATA[マークアップとCSS]]></category>
		<category><![CDATA[研究・実験してみた]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Growl]]></category>
		<category><![CDATA[MacBook]]></category>
		<category><![CDATA[コンピュータ]]></category>
		<category><![CDATA[実験]]></category>
		<category><![CDATA[記録]]></category>

		<guid isPermaLink="false">http://sakadon.net/?p=209</guid>
		<description><![CDATA[タイトル通り。
Ustream実況用ニコニコ風Growlスタイル OreNamaというのが公開されていて、これはGrowlと言われるMac向けの通知用ソフトウェアの表示スタイルの一部で、あとはぐぐれ
それで、これ見てみた [...]]]></description>
			<content:encoded><![CDATA[<p>タイトル通り。</p>
<p><a href="http://akicks.tumblr.com/post/365055513">Ustream実況用ニコニコ風Growlスタイル OreNama</a>というのが公開されていて、これはGrowlと言われるMac向けの通知用ソフトウェアの表示スタイルの一部で、あとはぐぐれ</p>
<p>それで、これ見てみたら、横が720pxだか780pxあたりまでで、MacBookで流すと画面いっぱいに流れてくれない。</p>
<p>キモイので、とりあえずなんとかしてみた。けど、すごいテキトーだから誰かにまかせる。</p>
<p>とりあえず、流れれればいいやって人向けかなー。あとは、細かい事は自分でstyle.cssか、表示時間の調整をしてみては。おれは、システム拡張設定のGrowl画面から弄れる方のOreNama表示時間は6.5sぐらいにした。</p>
<p>で、ダウンロード形式もめんどくさいんで、貼付けておくね！</p>
<p>ああ、ちなみにstyle.cssだけど、OreNamaインストールしてから、/Users/accountname/Library/Application Support/Growl/Plugins/OreNama.growlStyle のパッケージを開けば中にあるよ。</p>
<pre>html {
 height: 100%;
}
body {
 font-family: "Hiragino Kaku Gothic StdN", MeiryoKe_PGothic;
 align: left;
 padding: 0px 0px 0px 0px;
 position: relative;
 margin-left: -1280px; /* -"最大横幅サイズ" */
 margin-top: 20px; /* 各Growl通知間のスペース */
 margin-right: 0;
 margin-bottom: 0;
}
#box {
 font-size: 24px; /* 文字サイズ */
 width: 1440px; /* =最大横幅サイズ+画面左からの横幅サイズ */
 -webkit-text-stroke-width:1px; /* 文字のアウトライン太さ */
 -webkit-text-stroke-color:#000; /* 文字のアウトライン色 */
 text-shadow: #000 0 0 2px; /* 疑似アンチエイリアス */
 white-space: nowrap;
 word-wrap: normal;
 overflow: visible;
 position: relative;
 margin: 0;
 padding: 0;
 white-space: normal;
 word-wrap: break-word;
}
/* アニメーション（文字流し）の設定 */
#animation  {
 margin-left: 1280px; /* 最大横幅サイズ */
 width: 1280px; /* 最大横幅サイズ */
 -webkit-animation-name: move; /* アニメーション名 */
 -webkit-animation-duration: 11.5s; /* 移動表示時間（秒） */
 -webkit-animation-iteration-count: 1; /* アニメーション実行回数 */
 -webkit-animation-timing-function: linear; /* アニメーションの種類 */
 margin-top: 0;
 margin-right: 0;
 margin-bottom: 0;
 padding: 0;
 white-space: normal;
 word-wrap: break-word;
}
/*アニメーション制御 0%=始点 100%=終点 */
@-webkit-keyframes move {
 0%        { -webkit-transform: translate(1280px,0px);} /* "最大横幅サイズ",0 */
 60%        { -webkit-transform: translate(0px,0px);}
 75%        { -webkit-transform: translate(0px,0px);}
 100%    { -webkit-transform: translate(-1280px,0px);} /* "最大横幅サイズ",0 */
}
/* Growl優先度（プライオリティ）設定 */
.verylow {
 color: #929292;
}
.moderate {
 color: #c0c0c0;
}
.normal {
 color: #fff;
}
.high {
 color: #fbff32;
}
.emergency {
 color: #f71818;
}
</pre>
<p>とりあえず、作者さんがTwitter用なるものも作ってるみたいだから、そっちのほう待った方が良いかも〜ねかもね。</p>
]]></content:encoded>
			<wfw:commentRss>http://sakadon.net/2010/02/02/209/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>大学生になったが、生活の品質は明らかに低下した。</title>
		<link>http://sakadon.net/2008/04/13/20</link>
		<comments>http://sakadon.net/2008/04/13/20#comments</comments>
		<pubDate>Sun, 13 Apr 2008 04:02:00 +0000</pubDate>
		<dc:creator>sakadon</dc:creator>
				<category><![CDATA[大学生活など]]></category>
		<category><![CDATA[日記やタワゴト]]></category>
		<category><![CDATA[Macな記事]]></category>
		<category><![CDATA[大学生]]></category>
		<category><![CDATA[日記]]></category>
		<category><![CDATA[生活]]></category>
		<category><![CDATA[考え事]]></category>

		<guid isPermaLink="false">http://sakadon.net/wordpress/?p=20</guid>
		<description><![CDATA[まず、大学内のネットワーク認証がとてつもなく糞で、Macでは現在一切の認証が出来ない。
問い合わせたところ、Tigerは5月頃から対応する、Leopardは対応時期未定らしい。
それなりの人物を輩出しているであろうこの大 [...]]]></description>
			<content:encoded><![CDATA[<p>まず、大学内のネットワーク認証がとてつもなく糞で、Macでは現在一切の認証が出来ない。</p>
<p>問い合わせたところ、Tigerは5月頃から対応する、Leopardは対応時期未定らしい。</p>
<p>それなりの人物を輩出しているであろうこの大学、実は内部は腐ってました。セキュリティのために入れた認証システムは、セキュリティのために新しく進化したOSには対応しないという、根本的に間違ったシステムを導入して満足げに浸っているのだ。アホか。</p>
<p>まあ、かわいそうだから何処の筑波大学だとか書かないでおくが、こんな大学糞だよ。バーカ。</p>
<p>Windowsだと、WindowsUpdateを自動更新しているようにしないと、認証されないらしい。俺なんかは、確認してからアップデートしたいから自動更新しないようにしてるけど、そういうのも許されないんだね。</p>
<p>別にパケット監視したりP2Pソフトウェアを制限してみたりなんてスルのは構わないけど（色々言いたいことは有るが）、ポリシー監視するのも良いけど（それはそれでキモイけど）、対応してないOSだと認証すら出来ないというのは、糞ったれだな…。</p>
<p>しかも認証システムのために、わざわざJava Runtime Environmentを入れなくては成らなくて、一応java.comとかは認証しなくても開けるようには成ってるみたい？だけど、Operaなんかはjava.comじゃないURIからダウンロードすることになるので、結局ダウンロードできない。</p>
<p>とまあ、従って俺は一生学内ネットワークが使えない、みたいな？（笑）</p>
<p>あーもう最悪。なんでこんなところなんだろ。</p>
]]></content:encoded>
			<wfw:commentRss>http://sakadon.net/2008/04/13/20/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iTunes(Mac)で作ったm4aをWindowsのiTunesに持って行ったら強制早送り☆</title>
		<link>http://sakadon.net/2008/03/22/17</link>
		<comments>http://sakadon.net/2008/03/22/17#comments</comments>
		<pubDate>Fri, 21 Mar 2008 20:16:00 +0000</pubDate>
		<dc:creator>sakadon</dc:creator>
				<category><![CDATA[ソフトウェアについてなど]]></category>
		<category><![CDATA[日記やタワゴト]]></category>
		<category><![CDATA[iTunes]]></category>
		<category><![CDATA[m4a]]></category>
		<category><![CDATA[Macな記事]]></category>
		<category><![CDATA[困った]]></category>
		<category><![CDATA[日記]]></category>

		<guid isPermaLink="false">http://sakadon.net/wordpress/?p=17</guid>
		<description><![CDATA[タイトル通り。
謎過ぎる現象である。ファイルはm4aで、MacOS X上のiTunesで読み込んだやつ。Mac上での再生は何ら問題は無い。しかしそれをWindowsなマシンに持ってきてiTunesで聞くと、強制早送りにな [...]]]></description>
			<content:encoded><![CDATA[<p>タイトル通り。</p>
<p>謎過ぎる現象である。ファイルはm4aで、MacOS X上のiTunesで読み込んだやつ。Mac上での再生は何ら問題は無い。しかしそれをWindowsなマシンに持ってきてiTunesで聞くと、強制早送りになったり飛び飛びになったりする。謎だ…</p>
<p>試しにGOM Playerでも再生したけど、同じ現象に。ファイル転送時に壊れたかな、と思ってzipにして送ってもダメだし、m4aからmp3にして送ってもダメ。</p>
<p>なんだかよく分からない。とりあえずiTunesが早送りじゃなくしてくれれば正常に聞けそうなんだけど、そこんとこドウニカならないですかね？</p>
<p>で、転送過程でネットワークなんでsambaつこーてんのが悪いのかとUSBフラッシュメモリで直でやりとりしてもダメ。</p>
<p>うおー発狂しちゃうよ！！！！！なぞなぞなぞ！</p>
]]></content:encoded>
			<wfw:commentRss>http://sakadon.net/2008/03/22/17/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>soundflower1.3.2では構成を増やせない</title>
		<link>http://sakadon.net/2008/03/13/14</link>
		<comments>http://sakadon.net/2008/03/13/14#comments</comments>
		<pubDate>Thu, 13 Mar 2008 08:21:00 +0000</pubDate>
		<dc:creator>sakadon</dc:creator>
				<category><![CDATA[Macな記事]]></category>
		<category><![CDATA[ソフトウェアについてなど]]></category>
		<category><![CDATA[soundflower]]></category>
		<category><![CDATA[ソフトウェア]]></category>

		<guid isPermaLink="false">http://sakadon.net/wordpress/?p=14</guid>
		<description><![CDATA[前回のエントリでは、SoundflowerのInfo.plistをいじくって構成を増やす事が前提だったけど、残念ながら最新版であるSoundflower1.3.2ではInfo.plistをどういじくってもダメ（MacOS [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://weblog.sakadon.net/2008/03/macskypeitunes.html">前回のエントリ</a>では、<a href="http://blog.kawauso.com/kawauso/2007/12/soundflower_ladiocast28.html">SoundflowerのInfo.plistをいじくって構成を増やす</a>事が前提だったけど、残念ながら最新版であるSoundflower1.3.2ではInfo.plistをどういじくってもダメ（MacOS Xが起動しなくなる）だった。</p>
<p>残念ながら、バージョン1.2.1に下げるか、妥協するしかないようだ。</p>
<p>妥協バージョンについて設定方法などは、そのうちまとめる。</p>
]]></content:encoded>
			<wfw:commentRss>http://sakadon.net/2008/03/13/14/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MacでSkypeとiTunesを駆使してラジオ放送の図</title>
		<link>http://sakadon.net/2008/03/09/10</link>
		<comments>http://sakadon.net/2008/03/09/10#comments</comments>
		<pubDate>Sat, 08 Mar 2008 15:58:00 +0000</pubDate>
		<dc:creator>sakadon</dc:creator>
				<category><![CDATA[Macな記事]]></category>
		<category><![CDATA[ソフトウェアについてなど]]></category>
		<category><![CDATA[iTunes]]></category>
		<category><![CDATA[LadioCast]]></category>
		<category><![CDATA[Skype]]></category>
		<category><![CDATA[soundflower]]></category>
		<category><![CDATA[ソフトウェア]]></category>
		<category><![CDATA[ラジオ]]></category>

		<guid isPermaLink="false">http://sakadon.net/wordpress/?p=10</guid>
		<description><![CDATA[MacOS Xではサウンドミキシングがシステム内部で簡単にできるので、おすすめだお！
サウンドミキシングに使用するソフトはSoundflowerとLadioCast。詳しくはリンク先で。
で、簡単に関係図をつくってみた。 [...]]]></description>
			<content:encoded><![CDATA[<p>MacOS Xではサウンドミキシングがシステム内部で簡単にできるので、おすすめだお！</p>
<p>サウンドミキシングに使用するソフトは<a href="http://veadardiary.blog29.fc2.com/blog-entry-1038.html">Soundflower</a>と<a href="http://veadardiary.blog29.fc2.com/blog-entry-1175.html">LadioCast</a>。詳しくはリンク先で。</p>
<p>で、簡単に関係図をつくってみた。これで理解できる人はすごい。</p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_dBxOTcV3lN8/R9K5AhSX7SI/AAAAAAAAAXM/3i40__mSLhE/s1600-h/ust_flow.png"><img style="cursor:pointer; cursor:hand;" src="http://bp1.blogger.com/_dBxOTcV3lN8/R9K5AhSX7SI/AAAAAAAAAXM/3i40__mSLhE/s400/ust_flow.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5175402340388695330" /></a></p>
<p>そのうち、設定画面とか晒す。</p>
]]></content:encoded>
			<wfw:commentRss>http://sakadon.net/2008/03/09/10/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

