<?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; iPhone</title>
	<atom:link href="http://blog.xnux.net/tag/iphone/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.xnux.net</link>
	<description>still life ...</description>
	<lastBuildDate>Wed, 06 Jan 2010 18:34:30 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>热闹的6月</title>
		<link>http://blog.xnux.net/2009/06/06/june_2009/</link>
		<comments>http://blog.xnux.net/2009/06/06/june_2009/#comments</comments>
		<pubDate>Sat, 06 Jun 2009 11:48:30 +0000</pubDate>
		<dc:creator>Jack.f</dc:creator>
				<category><![CDATA[未分类]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[june 2009]]></category>
		<category><![CDATA[WWDC]]></category>
		<category><![CDATA[变形金刚2]]></category>
		<category><![CDATA[成都公交车]]></category>
		<category><![CDATA[终结者4]]></category>

		<guid isPermaLink="false">http://blog.xnux.net/?p=104</guid>
		<description><![CDATA[6.1 儿童节
6.3 ~ 6.5 中国网站维护日, 算是一种特殊的纪念吧
6.5 成都公交车火灾, 默哀...
6.9 终结者4国内首映日
6.9 苹果WWDC, iPhone 3GS发布, 点这里看瘾科技报道
?6.14? 苹果WWDC, 发布iPhone第三代硬件(时间不确定，只知道是6月第二周)
6.24 变形金刚2国内首映, 据说原版包含轰炸上海的镜头, 无法通过广电总局审查(日), 需要删减或者其它修改操作, 所以能否在6.24上映还是个未知数
]]></description>
			<content:encoded><![CDATA[<p>6.1 儿童节</p>
<p>6.3 ~ 6.5 中国网站维护日, 算是一种特殊的纪念吧</p>
<p><span style="color:#FF0000;">6.5 成都公交车火灾, 默哀...</span></p>
<p>6.9 终结者4国内首映日</p>
<p>6.9 苹果WWDC, iPhone 3GS发布, <a title="WWDC 2009" href="http://cn.engadget.com/2009/06/08/phil-schiller-keynote-live-from-wwdc-2009/" target="_blank">点这里看瘾科技报道</a></p>
<p><span style="-webkit-text-decorations-in-effect: line-through;">?6.14? 苹果WWDC, 发布iPhone第三代硬件(时间不确定，只知道是6月第二周)</span></p>
<p>6.24 变形金刚2国内首映<span style="text-decoration: line-through;">, 据说原版包含轰炸上海的镜头, 无法通过广电总局审查</span><span style="color: #FF0000;"><span style="text-decoration: line-through;">(日)</span></span><span style="text-decoration: line-through;">, 需要删减或者其它修改操作, 所以能否在6.24上映还是个未知数</span></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.xnux.net/2009/06/06/june_2009/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>整理一下lighttpd+php在iPhone上的安装的方法</title>
		<link>http://blog.xnux.net/2009/04/03/iphone_lighttpd_php5_mysql5/</link>
		<comments>http://blog.xnux.net/2009/04/03/iphone_lighttpd_php5_mysql5/#comments</comments>
		<pubDate>Fri, 03 Apr 2009 02:34:57 +0000</pubDate>
		<dc:creator>Jack.f</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[开发]]></category>
		<category><![CDATA[技术]]></category>
		<category><![CDATA[cgi]]></category>
		<category><![CDATA[fastcgi]]></category>
		<category><![CDATA[lighttpd]]></category>
		<category><![CDATA[mod_fastcgi]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://blog.xnux.net/?p=83</guid>
		<description><![CDATA[&#62; Win32使用putty，linux和mac osx使用ssh连接到iPhone;
&#62; 安装php和lighttpd;
apt-get update; apt-get install php; apt-get install lighttpd
&#62; 创建布署目录;
mkdir -p /var/www/htdocs
&#62; 修改lighttpd配置;
vi /usr/local/etc/lighttpd.conf
修改:
server.document-root = "/var/www/htdocs"
server.modules = ( "mod_fastcgi" )
server.tag = "lighttpd 1.4.18/PHP 5.2.8 (cgi-fcgi)"   #此处可以随意填写
server.pid-file = "/var/run/lighttpd.pid"
index-file.names = ( "index.php", "index.py", "index.html", "index.htm" ) #根据自己需要填写
static-file.exclude-extensions = ( ".php", ".fcgi", ".cgi", ".py" )
 fastcgi.map-extensions = ( ".php3"=&#62;".php" )
 fastcgi.server = (
    ".php"=&#62;((
       [...]]]></description>
			<content:encoded><![CDATA[<p>&gt; Win32使用putty，linux和mac osx使用ssh连接到iPhone;</p>
<p>&gt; 安装php和lighttpd;</p>
<blockquote><p>apt-get update; apt-get install php; apt-get install lighttpd</p></blockquote>
<p>&gt; 创建布署目录;</p>
<blockquote><p>mkdir -p /var/www/htdocs</p></blockquote>
<p>&gt; 修改lighttpd配置;</p>
<blockquote><p>vi /usr/local/etc/lighttpd.conf</p>
<p>修改:</p>
<p>server.document-root = "<span style="color: #ff0000;">/var/www/htdocs</span>"<br />
server.modules = ( <span style="color: #ff0000;">"mod_fastcgi"</span> )<br />
server.tag = "<span style="color: #ff0000;">lighttpd 1.4.18/PHP 5.2.8 (cgi-fcgi)</span>"   #此处可以随意填写<br />
server.pid-file = "<span style="color: #ff0000;">/var/run/lighttpd.pid</span>"<br />
index-file.names = (<span style="color: #ff0000;"> "index.php", "index.py", "index.html", "index.htm"</span> ) #根据自己需要填写<br />
static-file.exclude-extensions = ( <span style="color: #ff0000;">".php"</span>, ".fcgi", ".cgi", ".py" )<br />
<span style="color: #ff0000;"> fastcgi.map-extensions = ( ".php3"=&gt;".php" )</span><br />
<span style="color: #ff0000;"> fastcgi.server = (<br />
    ".php"=&gt;((<br />
        "host"=&gt;"127.0.0.1",<br />
        "port"=&gt;9000,<br />
        "broken-scriptfilename"=&gt;"enable",<br />
        "fix-root-scriptname"=&gt;"enable"<br />
    ))<br />
)</span><br />
cgi.assign = (<br />
     ".py" =&gt; "/usr/bin/python"  # 如果安装python的话，可以考虑添加这行<br />
)</p>
<p>#其它保持不变<br />
memetype.assign ...</p></blockquote>
<p>&gt; 运行;</p>
<blockquote><p>php-cgi -b 127.0.0.1:9000 &amp;</p>
<p>lighttpd -f /usr/local/etc/lighttpd.conf &amp;</p></blockquote>
<p>&gt; 测试;</p>
<blockquote><p>echo "&lt;?php phpinfo(); ?&gt;" &gt; /var/www/htdocs/info.php</p>
<p>打开safari，输入地址 http://localhost/info.php</p></blockquote>
<p> </p>
<p>以上操作必备条件，jb过的iPhone，已经安装unix subsystem，mobile terminal，cydia，openssl，openssh。</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.xnux.net/2009/04/03/iphone_lighttpd_php5_mysql5/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Cydia开发者投靠M$</title>
		<link>http://blog.xnux.net/2009/04/01/cydia_sold_ms_jokes/</link>
		<comments>http://blog.xnux.net/2009/04/01/cydia_sold_ms_jokes/#comments</comments>
		<pubDate>Wed, 01 Apr 2009 15:22:26 +0000</pubDate>
		<dc:creator>Jack.f</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[cydia]]></category>
		<category><![CDATA[microsoft]]></category>

		<guid isPermaLink="false">http://blog.xnux.net/?p=74</guid>
		<description><![CDATA[Cydia首页发表声明，Cydia开发者Jay Freeman(saurik)已经将iPhone上最好的第三方在线软件管理器Cydia出售给Microsoft，并表示自己将致力于.NET与Objective-C连接器的开发(用.NET开发iPhone GUI应用)和Silverlight的iPhone移植工作 ......
原文:
ok, don't hate me: I totally sold Cydia to Microsoft, and am now working on a .NET to Objective-C connector with the eventual goal of porting Silverlight.
Apparently, Microsoft has a booth here at CTIA, and Bill Gates decided to show up in order to make the deal himself: he feels thy need [...]]]></description>
			<content:encoded><![CDATA[<p>Cydia首页发表声明，Cydia开发者Jay Freeman(saurik)已经将iPhone上最好的第三方在线软件管理器Cydia出售给Microsoft，并表示自己将致力于.NET与Objective-C连接器的开发(用.NET开发iPhone GUI应用)和Silverlight的iPhone移植工作 ......</p>
<p>原文:</p>
<blockquote><p>ok, don't hate me: I totally sold Cydia to Microsoft, and am now working on a .NET to Objective-C connector with the eventual goal of porting Silverlight.</p>
<p>Apparently, Microsoft has a booth here at CTIA, and Bill Gates decided to show up in order to make the deal himself: he feels thy need this to compete with Apple's mobile strategy.</p>
<p>I'm not exactly certain what this will mean for Cydia, but I'm certain that it will be positive: probably a new look based on Aero and integrated support for VBScript control files. I'm excited!</p></blockquote>
<p> </p>
<div id="attachment_75" class="wp-caption aligncenter" style="width: 210px"><a href="http://blog.xnux.net/wp-content/uploads/2009/04/img_0001.png"><img class="size-medium wp-image-75 " title="img_0001" src="http://blog.xnux.net/wp-content/uploads/2009/04/img_0001-200x300.png" alt="cydia" width="200" height="300" /></a><p class="wp-caption-text">cydia</p></div>
<div id="attachment_76" class="wp-caption aligncenter" style="width: 210px"><a href="http://blog.xnux.net/wp-content/uploads/2009/04/img_0002.png"><img class="size-medium wp-image-76 " title="img_0002" src="http://blog.xnux.net/wp-content/uploads/2009/04/img_0002-200x300.png" alt="microsoft" width="200" height="300" /></a><p class="wp-caption-text">microsoft</p></div>
<p> </p>
<p><span id="more-74"></span><br />
嘿嘿，愚人节好像还没过去!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.xnux.net/2009/04/01/cydia_sold_ms_jokes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>你怎么用iPhone？</title>
		<link>http://blog.xnux.net/2009/03/25/iphone_do_anything/</link>
		<comments>http://blog.xnux.net/2009/03/25/iphone_do_anything/#comments</comments>
		<pubDate>Wed, 25 Mar 2009 12:23:21 +0000</pubDate>
		<dc:creator>Jack.f</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[开发]]></category>
		<category><![CDATA[技术]]></category>
		<category><![CDATA[3proxy]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[apt-get]]></category>
		<category><![CDATA[google ape]]></category>
		<category><![CDATA[gprs]]></category>
		<category><![CDATA[httpd]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[putty]]></category>
		<category><![CDATA[sqlite]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[svn]]></category>
		<category><![CDATA[vi]]></category>
		<category><![CDATA[vim]]></category>
		<category><![CDATA[winscp]]></category>

		<guid isPermaLink="false">http://blog.xnux.net/?p=48</guid>
		<description><![CDATA[iPhone的操作系统是mac os x，越狱的iPhone通常都会带上unix subsystem，也就意味着iPhone已经不再是手机那么简单，反正在我的眼里它就是一台可以随身携带的迷你unix server，不过要借助ssh客户端软件，比如putty。
列一下我在iPhone上最常用的命令行工具:
&#62; svn：用于从开源社区，如Google Code获取源码;
&#62; wget：命令行下载工具;
&#62; apt：基于命令行的软件管理工具，可以完成cydia所能做的事;
&#62; links：基于命令行的浏览器，超屌，应用场景嘛，自己想想，类似的工具还有lynx，可以用apt-get安装;
&#62; top：类似windows任务管理器，不过不能直接关掉进程，需要使用kill/killall来关闭;
&#62; killall：关闭指定程序名称的所有进程，killall SpringBoard;
&#62; vim：用来代替subsystem自带的vi，我是直接用apt-get install vim安装的，支持大部分语法高亮，我另外安装了actionscript 1.0 - 3.0的语法包;
&#62; httpd：http服务器，可以装php5，当开发用的server来跑;
&#62; sqlite：命令行下访问通讯录等数据库;
&#62; google appengine sdk：开发使用google ape服务python应用;
&#62; 3proxy：在iPhone上架设代理服务器，特殊情形下，用于笔记本利用wifi通过iPhone GPRS上网，包含socks/http(s)/imap;
&#62; iphone sdk：可以在iPhone上开发iPhone使用的xcode代码(有点绕)，需要安装gcc for iphone;
还有不少东东就没有写，总而言之，你还真“别拿iPhone不当电脑” ，如果你愿意，可以把iPhone当网站服务器用，嘿嘿...
这些东东已经小用了数月，也小有体会，如果有同样需求要的同学，可以留言，一起发掘iPhone的潜力，下面上几张小图。
 
 
]]></description>
			<content:encoded><![CDATA[<p>iPhone的操作系统是mac os x，越狱的iPhone通常都会带上unix subsystem，也就意味着iPhone已经不再是手机那么简单，反正在我的眼里它就是一台可以随身携带的迷你unix server，不过要借助ssh客户端软件，比如putty。</p>
<p>列一下我在iPhone上最常用的命令行工具:</p>
<p>&gt; svn：用于从开源社区，如<a title="google code" href="http://code.google.com/" target="_blank">Google Code</a>获取源码;</p>
<p>&gt; wget：命令行下载工具;</p>
<p>&gt; apt：基于命令行的软件管理工具，可以完成cydia所能做的事;</p>
<p>&gt; links：基于命令行的浏览器，超屌，应用场景嘛，自己想想，类似的工具还有lynx，可以用apt-get安装;</p>
<p>&gt; top：类似windows任务管理器，不过不能直接关掉进程，需要使用kill/killall来关闭;</p>
<p>&gt; killall：关闭指定程序名称的所有进程，killall SpringBoard;</p>
<p>&gt; vim：用来代替subsystem自带的vi，我是直接用apt-get install vim安装的，支持大部分语法高亮，我另外安装了actionscript 1.0 - 3.0的语法包;</p>
<p>&gt; httpd：http服务器，可以装php5，当开发用的server来跑;</p>
<p>&gt; sqlite：命令行下访问通讯录等数据库;</p>
<p>&gt; google appengine sdk：开发使用google ape服务python应用;</p>
<p>&gt; 3proxy：在iPhone上架设代理服务器，特殊情形下，用于笔记本利用wifi通过iPhone GPRS上网，包含socks/http(s)/imap;</p>
<p>&gt; iphone sdk：可以在iPhone上开发iPhone使用的xcode代码(有点绕)，需要安装gcc for iphone;</p>
<p>还有不少东东就没有写，总而言之，你还真“别拿iPhone不当电脑” ，如果你愿意，可以把iPhone当网站服务器用，嘿嘿...</p>
<p>这些东东已经小用了数月，也小有体会，如果有同样需求要的同学，可以留言，一起发掘iPhone的潜力，下面上几张小图。</p>
<div id="attachment_55" class="wp-caption alignnone" style="width: 160px"><a href="http://blog.xnux.net/wp-content/uploads/2009/03/iphone_putty_sqlite3.jpg"><img class="size-thumbnail wp-image-55 " title="iphone_putty_sqlite3" src="http://blog.xnux.net/wp-content/uploads/2009/03/iphone_putty_sqlite3-150x123.jpg" alt="iphone_putty_sqlite3" width="150" height="123" /></a><p class="wp-caption-text">sqlite</p></div>
<div id="attachment_54" class="wp-caption alignnone" style="width: 160px"><a href="http://blog.xnux.net/wp-content/uploads/2009/03/iphone_putty_links.jpg"><img class="size-thumbnail wp-image-54 " title="iphone_putty_links" src="http://blog.xnux.net/wp-content/uploads/2009/03/iphone_putty_links-150x150.jpg" alt="links for iPhone" width="150" height="150" /></a><p class="wp-caption-text">links</p></div>
<p> </p>
<div id="attachment_53" class="wp-caption alignnone" style="width: 160px"><a href="http://blog.xnux.net/wp-content/uploads/2009/03/iphone_putty_as.jpg"><img class="size-thumbnail wp-image-53 " title="iphone_putty_as" src="http://blog.xnux.net/wp-content/uploads/2009/03/iphone_putty_as-150x150.jpg" alt="actionscript syntax" width="150" height="150" /></a><p class="wp-caption-text">actionscript syntax</p></div>
<div id="attachment_52" class="wp-caption alignnone" style="width: 160px"><a href="http://blog.xnux.net/wp-content/uploads/2009/03/iphone_putty_ape.jpg"><img class="size-thumbnail wp-image-52 " title="iphone_putty_ape" src="http://blog.xnux.net/wp-content/uploads/2009/03/iphone_putty_ape-150x150.jpg" alt="google ape" width="150" height="150" /></a><p class="wp-caption-text">google ape</p></div>
<p> </p>
<div id="attachment_51" class="wp-caption alignnone" style="width: 160px"><a href="http://blog.xnux.net/wp-content/uploads/2009/03/iphone_putty.jpg"><img class="size-thumbnail wp-image-51 " title="iphone_putty" src="http://blog.xnux.net/wp-content/uploads/2009/03/iphone_putty-150x150.jpg" alt="python" width="150" height="150" /></a><p class="wp-caption-text">python</p></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.xnux.net/2009/03/25/iphone_do_anything/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>联通上海开始推广3G版iPhone</title>
		<link>http://blog.xnux.net/2009/03/25/iphone3g_sh_unicom/</link>
		<comments>http://blog.xnux.net/2009/03/25/iphone3g_sh_unicom/#comments</comments>
		<pubDate>Wed, 25 Mar 2009 07:25:34 +0000</pubDate>
		<dc:creator>Jack.f</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[3g]]></category>
		<category><![CDATA[G1]]></category>
		<category><![CDATA[unicom]]></category>
		<category><![CDATA[wifi]]></category>
		<category><![CDATA[联通]]></category>

		<guid isPermaLink="false">http://blog.xnux.net/?p=45</guid>
		<description><![CDATA[联通上海分公司网站在3G专区推荐iPhone3G, G1等多款手机，不过详细配置里对于wifi支持只字未提，嘿嘿...
]]></description>
			<content:encoded><![CDATA[<p>联通上海分公司网站在<a href="http://www.sh.chinaunicom.com/3G/">3G专区</a>推荐iPhone3G, G1等多款手机，不过详细配置里对于wifi支持只字未提，嘿嘿...</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.xnux.net/2009/03/25/iphone3g_sh_unicom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
