<?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>Shadow &#38; Honnix &#187; Mac</title>
	<atom:link href="http://honnix.com/blog/archives/category/technology/mac-technology/feed" rel="self" type="application/rss+xml" />
	<link>http://honnix.com/blog</link>
	<description>Already?</description>
	<lastBuildDate>Thu, 18 Feb 2010 07:20:52 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>VirtualBox里面的NumLock</title>
		<link>http://honnix.com/blog/archives/538</link>
		<comments>http://honnix.com/blog/archives/538#comments</comments>
		<pubDate>Thu, 18 Feb 2010 07:20:52 +0000</pubDate>
		<dc:creator>honnix</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[NumLock]]></category>
		<category><![CDATA[VirtualBox]]></category>
		<category><![CDATA[Win]]></category>

		<guid isPermaLink="false">http://honnix.com/blog/?p=538</guid>
		<description><![CDATA[一直困惑我的问题，现在终于必须要解决了。
host是Mac，guest是Win，那么在guest里面shift+clear就是NumLock。简单，但是一直不知道。
]]></description>
			<content:encoded><![CDATA[<p>一直困惑我的问题，现在终于必须要解决了。</p>
<p>host是Mac，guest是Win，那么在guest里面shift+clear就是NumLock。简单，但是一直不知道。</p>
]]></content:encoded>
			<wfw:commentRss>http://honnix.com/blog/archives/538/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finder里如何给一个folder加上icon</title>
		<link>http://honnix.com/blog/archives/534</link>
		<comments>http://honnix.com/blog/archives/534#comments</comments>
		<pubDate>Fri, 12 Feb 2010 09:29:58 +0000</pubDate>
		<dc:creator>honnix</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Finder]]></category>
		<category><![CDATA[folder]]></category>
		<category><![CDATA[icon]]></category>

		<guid isPermaLink="false">http://honnix.com/blog/?p=534</guid>
		<description><![CDATA[直接看这里吧，懒得写了。还是很简单的，隐藏的功能，不搜还真不知道。
]]></description>
			<content:encoded><![CDATA[<p>直接看这里吧，懒得写了。还是很简单的，隐藏的功能，不搜还真不知道。</p>
]]></content:encoded>
			<wfw:commentRss>http://honnix.com/blog/archives/534/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>open命令</title>
		<link>http://honnix.com/blog/archives/344</link>
		<comments>http://honnix.com/blog/archives/344#comments</comments>
		<pubDate>Thu, 11 Jun 2009 14:58:11 +0000</pubDate>
		<dc:creator>honnix</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[open]]></category>

		<guid isPermaLink="false">http://honnix.com/blog/?p=344</guid>
		<description><![CDATA[Mac里面，打开一个文件，打开一个目录（Finder），等等。
]]></description>
			<content:encoded><![CDATA[<p>Mac里面，打开一个文件，打开一个目录（Finder），等等。</p>
]]></content:encoded>
			<wfw:commentRss>http://honnix.com/blog/archives/344/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>处理flac和ape的过程</title>
		<link>http://honnix.com/blog/archives/333</link>
		<comments>http://honnix.com/blog/archives/333#comments</comments>
		<pubDate>Sun, 24 May 2009 05:50:01 +0000</pubDate>
		<dc:creator>honnix</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[id3]]></category>
		<category><![CDATA[iTunes]]></category>
		<category><![CDATA[mutagen]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[shntools]]></category>

		<guid isPermaLink="false">http://honnix.com/blog/?p=333</guid>
		<description><![CDATA[Linux和Mac上差不多。有个shntool，可以根据cue文件将ape或者flac进行分割，同时可以读出cue里面的唱片名、作者、tracknumber之类的信息，但问题是这些信息不是很方便传给lame，所以就这样处理一下：

shntool split -f $cue -t &#8216;%n&#8211;@%p&#8211;@%a&#8211;@%t&#8217; -o &#8216;cust ext=mp3 lame -b 320 -s 48 -quiet &#8211; %f&#8217; -d $dir $audio (简单来说，将信息放到文件名里)
python ~/bin/id3.py $dir (这是个自己写的python程序，从文件名里分离所有的信息，然后写到mp3文件里，用到了一个python的module：mutagen)

这样就不需要在iTunes里面再手工写这些信息了，唯一还需要填一下的就是总的曲目数、唱片出版年份、唱片类型。
]]></description>
			<content:encoded><![CDATA[<p>Linux和Mac上差不多。有个shntool，可以根据cue文件将ape或者flac进行分割，同时可以读出cue里面的唱片名、作者、tracknumber之类的信息，但问题是这些信息不是很方便传给lame，所以就这样处理一下：</p>
<ol>
<li>shntool split -f $cue -t &#8216;%n&#8211;@%p&#8211;@%a&#8211;@%t&#8217; -o &#8216;cust ext=mp3 lame -b 320 -s 48 -quiet &#8211; %f&#8217; -d $dir $audio (简单来说，将信息放到文件名里)</li>
<li>python ~/bin/id3.py $dir (这是个自己写的python程序，从文件名里分离所有的信息，然后写到mp3文件里，用到了一个python的module：mutagen)</li>
</ol>
<p>这样就不需要在iTunes里面再手工写这些信息了，唯一还需要填一下的就是总的曲目数、唱片出版年份、唱片类型。</p>
]]></content:encoded>
			<wfw:commentRss>http://honnix.com/blog/archives/333/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenOffice.org 3.0</title>
		<link>http://honnix.com/blog/archives/248</link>
		<comments>http://honnix.com/blog/archives/248#comments</comments>
		<pubDate>Sat, 15 Nov 2008 05:47:06 +0000</pubDate>
		<dc:creator>honnix</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[OOo]]></category>
		<category><![CDATA[SUN]]></category>

		<guid isPermaLink="false">http://honnix.com/blog/?p=248</guid>
		<description><![CDATA[之前下了一半，后来居然就忘记了，看来在家里使用Office类型的软件机会不是很多啊。不管怎么说，还是要来赞一把OpenOffce.org的表现，3.0版本确实是一个巨大的飞跃，尤其是对Mac用户来说，OOo不再是X11的简单移植，底层的图形库完全挪到了Mac上，现在是Mac上的native程序了。这中间的代码量想必是十分巨大的，SUN也是花了血本了。
native之后最大的好处就是不再依赖X11了，不用每次开OOo都先起个X server，还有就是Command+Tab可以很方便的切换。
SUN今年来干了不少好事，当然其中也是有利益的，但无论如何，他也算是为开源界贡献了不少：Java，OOo，VirtualBox，等等。
]]></description>
			<content:encoded><![CDATA[<p>之前下了一半，后来居然就忘记了，看来在家里使用Office类型的软件机会不是很多啊。不管怎么说，还是要来赞一把OpenOffce.org的表现，3.0版本确实是一个巨大的飞跃，尤其是对Mac用户来说，OOo不再是X11的简单移植，底层的图形库完全挪到了Mac上，现在是Mac上的native程序了。这中间的代码量想必是十分巨大的，SUN也是花了血本了。</p>
<p>native之后最大的好处就是不再依赖X11了，不用每次开OOo都先起个X server，还有就是Command+Tab可以很方便的切换。</p>
<p>SUN今年来干了不少好事，当然其中也是有利益的，但无论如何，他也算是为开源界贡献了不少：Java，OOo，VirtualBox，等等。</p>
]]></content:encoded>
			<wfw:commentRss>http://honnix.com/blog/archives/248/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>还是Gentoo的感觉比较好</title>
		<link>http://honnix.com/blog/archives/147</link>
		<comments>http://honnix.com/blog/archives/147#comments</comments>
		<pubDate>Sun, 13 Jul 2008 10:38:09 +0000</pubDate>
		<dc:creator>honnix</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Gentoo]]></category>
		<category><![CDATA[VirtualBox]]></category>

		<guid isPermaLink="false">http://honnix.com/blog/?p=147</guid>
		<description><![CDATA[终于经不住诱惑，又虚拟了一个Gentoo，感觉就是好。想要什么就装什么，不想要就一点多余都没有，嗯，不像Ubuntu，装好之后我还要慢慢删些用不着的东西。
不过有一点还是不爽，Gentoo里面gcc4.3还是没有stable，目前还是4.1，所以不支持我的core2。耐心等等吧。
顺便仔细玩了一把VirtualBox，还是很不错的，尤其是可以不带GUI启动，然后远程管理，这样即使host机器上没有X，也可以把guest启动起来，这个做法还是相当unix的，我喜欢。VirtualBox目前还不支持Mac上面的Bridge，我只能用NAT，然后做一些port mapping从host连到guest上，至于怎么弄，VirtualBox的manual里面说的已经相当详细了，我就不废话了。
]]></description>
			<content:encoded><![CDATA[<p>终于经不住诱惑，又虚拟了一个Gentoo，感觉就是好。想要什么就装什么，不想要就一点多余都没有，嗯，不像Ubuntu，装好之后我还要慢慢删些用不着的东西。</p>
<p>不过有一点还是不爽，Gentoo里面gcc4.3还是没有stable，目前还是4.1，所以不支持我的core2。耐心等等吧。</p>
<p>顺便仔细玩了一把VirtualBox，还是很不错的，尤其是可以不带GUI启动，然后远程管理，这样即使host机器上没有X，也可以把guest启动起来，这个做法还是相当unix的，我喜欢。VirtualBox目前还不支持Mac上面的Bridge，我只能用NAT，然后做一些port mapping从host连到guest上，至于怎么弄，VirtualBox的manual里面说的已经相当详细了，我就不废话了。</p>
]]></content:encoded>
			<wfw:commentRss>http://honnix.com/blog/archives/147/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VirtualBox里面如何开关NumLock</title>
		<link>http://honnix.com/blog/archives/536</link>
		<comments>http://honnix.com/blog/archives/536#comments</comments>
		<pubDate>Thu, 17 Feb 2000 03:17:08 +0000</pubDate>
		<dc:creator>honnix</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[NumLock]]></category>
		<category><![CDATA[VirtualBox]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://honnix.com/blog/?p=536</guid>
		<description><![CDATA[这个问题困扰了我很久，终于下决心Google一把，当然也便有了结果。
如果guest是Windows的话，在guest里按shift+clear就可以开关了。当然，我说的是Mac。
]]></description>
			<content:encoded><![CDATA[<p>这个问题困扰了我很久，终于下决心Google一把，当然也便有了结果。</p>
<p>如果guest是Windows的话，在guest里按shift+clear就可以开关了。当然，我说的是Mac。</p>
]]></content:encoded>
			<wfw:commentRss>http://honnix.com/blog/archives/536/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
