<?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>FalconIA&#039;s BLOG &#187; FalconIA</title>
	<atom:link href="https://falconia.org/blog/archives/author/falconia/feed" rel="self" type="application/rss+xml" />
	<link>https://falconia.org/blog</link>
	<description>FalconIA&#039;s Lazy Blog</description>
	<lastBuildDate>Tue, 02 Dec 2014 01:45:41 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.2.38</generator>
	<item>
		<title>Turn airplane mode on/off via ADB</title>
		<link>https://falconia.org/blog/archives/468</link>
		<comments>https://falconia.org/blog/archives/468#comments</comments>
		<pubDate>Tue, 02 Dec 2014 01:03:21 +0000</pubDate>
		<dc:creator><![CDATA[FalconIA]]></dc:creator>
				<category><![CDATA[技术杂烩]]></category>
		<category><![CDATA[adb]]></category>
		<category><![CDATA[android]]></category>

		<guid isPermaLink="false">http://falconia.org/blog/?p=468</guid>
		<description><![CDATA[Method 1 (4.2 or higher): settings put global airplane_mode_on 1 am broadcast -a android.intent.action.AIRPLANE_MODE --ez state true settings put global airplane_mode_on 0 am broadcast -a android.intent.action.AIRPLANE_MODE --ez state true Method 2: adb shell am start -a android.settings.AIRPLANE_MODE_SETTINGS adb shell input keyevent 19 adb shell input keyevent 23 adb shell input keyevent 4 Method 3: sqlite3 [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Method 1 (4.2 or higher):<br />
<code>settings put global airplane_mode_on 1<br />
am broadcast -a android.intent.action.AIRPLANE_MODE --ez state true</code><br />
<code>settings put global airplane_mode_on 0<br />
am broadcast -a android.intent.action.AIRPLANE_MODE --ez state true</code></p>
<p>Method 2:<br />
<code>adb shell am start -a android.settings.AIRPLANE_MODE_SETTINGS<br />
adb shell input keyevent 19<br />
adb shell input keyevent 23<br />
adb shell input keyevent 4</code></p>
<p>Method 3:<br />
<code>sqlite3 /data/data/com.android.providers.settings/databases/settings.db "update system set value='1' where name='airplane_mode_on';"</code></p>
]]></content:encoded>
			<wfw:commentRss>https://falconia.org/blog/archives/468/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Optimize iptables reject rules</title>
		<link>https://falconia.org/blog/archives/464</link>
		<comments>https://falconia.org/blog/archives/464#comments</comments>
		<pubDate>Mon, 01 Dec 2014 09:42:09 +0000</pubDate>
		<dc:creator><![CDATA[FalconIA]]></dc:creator>
				<category><![CDATA[技术杂烩]]></category>
		<category><![CDATA[iptables]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://falconia.org/blog/?p=464</guid>
		<description><![CDATA[We always use this rule to notice a interloper that the service was prohibited. -A INPUT -j REJECT --reject-with icmp-host-prohibited But, I think it's better to disguise the rejection as no service, rather than notice a interloper there was a service you cannot reache. -A INPUT -p tcp -j REJECT --reject-with tcp-reset -A INPUT -p [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>We always use this rule to notice a interloper that the service was prohibited.<br />
<code>-A INPUT -j REJECT --reject-with icmp-host-prohibited</code><br />
But, I think it's better to disguise the rejection as no service, rather than notice a interloper there was a service you cannot reache.<br />
<code>-A INPUT -p tcp -j REJECT --reject-with tcp-reset<br />
-A INPUT -p udp -j REJECT --reject-with icmp-port-unreachable<br />
-A INPUT -j REJECT --reject-with icmp-host-prohibited</code></p>
]]></content:encoded>
			<wfw:commentRss>https://falconia.org/blog/archives/464/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to modify SystemUI.apk to remove volume soft keys in system bar</title>
		<link>https://falconia.org/blog/archives/449</link>
		<comments>https://falconia.org/blog/archives/449#comments</comments>
		<pubDate>Tue, 28 Jan 2014 02:58:29 +0000</pubDate>
		<dc:creator><![CDATA[FalconIA]]></dc:creator>
				<category><![CDATA[程序相关]]></category>
		<category><![CDATA[android]]></category>

		<guid isPermaLink="false">http://falconia.org/blog/?p=449</guid>
		<description><![CDATA[Environment: Android with root access. Windows with drivers for Android device. Java(JRE) installed. Prepare: apktool.jar (http://code.google.com/p/android-apktool/downloads/list) adb.exe (android-sdk\platform-tools) notepad++ or similar text editor which supported UTF-8 without BOM, not notepad or wordpad. Steps: 1. Pull SystemUI.apk from your device. CMD&#62;adb pull /system/app/SystemUI.apk . 2. Extract res in apk. CMD&#62;apktool d -b -s SystemUI.apk 3. Edit [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><strong>Environment:</strong><br />
Android with root access.<br />
Windows with drivers for Android device.<br />
Java(JRE) installed.</p>
<p><strong>Prepare:</strong><br />
apktool.jar (<a href="http://code.google.com/p/android-apktool/downloads/list">http://code.google.com/p/android-apktool/downloads/list</a>)<br />
adb.exe (android-sdk\platform-tools)<br />
notepad++ or similar text editor which supported UTF-8 without BOM, not notepad or wordpad.</p>
<p><span id="more-449"></span><br />
<strong>Steps:</strong><br />
1. Pull SystemUI.apk from your device.<br />
<code>CMD&gt;adb pull /system/app/SystemUI.apk .</code></p>
<p>2. Extract res in apk.<br />
<code>CMD&gt;apktool d -b -s SystemUI.apk</code></p>
<p>3. Edit the XML file in 'SystemUI/res/layout/system_bar.xml'.<br />
You can find several KeyButtonView like:<br />
<code>&lt;com.android.systemui.statusbar.policy.KeyButtonView android:id="@id/volume_down" android:layout_width="@dimen/navigation_key_width" android:layout_height="fill_parent" android:src="@drawable/ic_sysbar_volume_down" systemui:keyCode="25" systemui:glowBackground="@drawable/ic_sysbar_highlight" /&gt;</code><br />
Change 'android:layout_width="@dimen/navigation_key_width"' to 'android:layout_width="0.0dp"' in the KeyButtonView which you want to hide.</p>
<p>4. Combine edited apk.<br />
<code>CMD&gt;apktool b SystemUI</code><br />
Now get new dictionary 'build' under SystemUI.</p>
<p>5. Open SystemUI.apk using 7-Zip/WinRar/WinZip.<br />
Extract 'META-INF' and 'AndroidManifest.xml' in apk to path 'SystemUI/build/apk'</p>
<p>4. Recombine apk as step 4.<br />
<code>CMD&gt;apktool b SystemUI</code><br />
Now you can get a new apk under 'SystemUI\dist'.</p>
<p>5. Make '/system' writable in your device.<br />
<code>CMD&gt;adb shell</code><br />
<code>root@android:/ # busybox mount -o remount,rw /system<br />
root@android:/ # exit</code></p>
<p>6. Push new apk to your device.<br />
<code>CMD&gt;adb push SystemUI\dist\SystemUI.apk /system/app/SystemUI.apk</code></p>
<p>7. Reboot you Android device by hand,<br />
or use command.<br />
<code>CMD&gt;adb reboot</code></p>
<p>8. Congratulation!</p>
]]></content:encoded>
			<wfw:commentRss>https://falconia.org/blog/archives/449/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[Quoted] VNC from boot on Ubuntu 12.04 without logging in, using LightDM and x11vnc</title>
		<link>https://falconia.org/blog/archives/435</link>
		<comments>https://falconia.org/blog/archives/435#comments</comments>
		<pubDate>Sat, 02 Mar 2013 07:26:37 +0000</pubDate>
		<dc:creator><![CDATA[FalconIA]]></dc:creator>
				<category><![CDATA[系统相关]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[vnc]]></category>

		<guid isPermaLink="false">http://falconia.org/blog/?p=435</guid>
		<description><![CDATA[Quoted: http://seb.so/vnc-from-boot-without-logging-in-ubuntu-lubuntu-xubuntu-and-mint-lmde/ Instructions LightDM apparently supports a VNC server out of the box; however, it’s designed to work with tightvncserver (or similar) which create separate X sessions (the 2nd lot of VNC servers I mentioned above) so not quite what we’re after1. Ubuntu derivatives use Upstart (upstart.ubuntu.com) to manage startup processes - LightDM (and GDM!) [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><strong>Quoted:</strong> <a href="http://seb.so/vnc-from-boot-without-logging-in-ubuntu-lubuntu-xubuntu-and-mint-lmde/">http://seb.so/vnc-from-boot-without-logging-in-ubuntu-lubuntu-xubuntu-and-mint-lmde/</a></p>
<h2>Instructions</h2>
<p>LightDM apparently supports a VNC server out of the box; however, it’s designed to work with tightvncserver (or similar) which create separate X sessions (the 2nd lot of VNC servers I mentioned above) so not quite what we’re after1.<br />
Ubuntu derivatives use Upstart (upstart.ubuntu.com) to manage startup processes - LightDM (and GDM!) creates a login-session-start event when the display manager is up (i.e. when X is all loaded, but before you’ve logged in) so we’ll create an upstart job that listens for that, and starts a VNC server on the existing X session, allowing connections before login.<br />
<span id="more-435"></span></p>
<h2>Step 1</h2>
<p> – we want the VNC server to have a password, just in case – the VNC port shouldn’t really be exposed to the outside world – it’s easy to wrap it in an SSH connection to encrypt everything for you (see here for a good explanation of how to set that up).<br />
<code>$ sudo x11vnc -storepasswd /etc/x11vnc.pass</code><br />
This will prompt you for a password to (lightly) secure your VNC server.</p>
<h2>Step 2a</h2>
<p> (for LightDM – XUbuntu, and all Ubuntu variants 12.04 onwards) – create the upstart job. Put this in /etc/init/x11vnc.conf :<br />
<code>start on login-session-start<br />
script<br />
/usr/bin/x11vnc -xkb -auth /var/run/lightdm/root/:0 -noxrecord -noxfixes -noxdamage -rfbauth /etc/x11vnc.pass -forever -bg -rfbport 5900 -o /var/log/x11vnc.log<br />
end script</code><br />
Note: if you’d like this to work with GDM instead, you’ll need to find where GDM puts its MIT-MAGIC-COOKIE – I believe it’s <var>/var/run/gdm/auth...</var> or something similar, although I haven’t got a box to test it on</p>
<h2>Step 2b</h2>
<p> (for lxdm – LUbuntu) – LXDM doesn’t seem to emit the right event, but instead is has /etc/lxdm/LoginReady which lets you specify pre-login events. However, we need to first get the xauth setup properly. Edit <var>/etc/lxdm/lxdm.conf</var> and uncomment the line:<br />
<code>xauth_path=/tmp</code><br />
This specifies that we’re going to use a different xauth path; we also need to update the /etc/lxdm/LoginReady file with our x11 command, using the updated xauth path.<br />
Put this in <var>/etc/lxdm/LoginReady</var>:<br />
<code>/usr/bin/x11vnc -xkb -auth /tmp/.Xauth1000 -noxrecord -noxfixes -noxdamage -rfbauth /etc/x11vnc.pass -forever -bg -rfbport 5900 -o /var/log/x11vnc.log</code></p>
<h2>Step 2c</h2>
<p> (for mdm – Mint LMDE)<br />
Mint LMDE (Debian edition) doesn’t use the upstart things; instead, put this at the end of <var>/etc/mdm/Init/Default</var>:<br />
<code>/usr/bin/x11vnc -xkb -auth /var/lib/mdm/:0.Xauth -noxrecord -noxfixes -noxdamage -rfbauth /etc/x11vnc.pass -forever -bg -rfbport 5900 -o /var/log/x11vnc.log</code><br />
Note that this uses the auth path for mdm which is <var>/var/lib/mdm/:0.Xauth</var></p>
<h2>Step 3</h2>
<p> – Done!<br />
Reboot! That’s all there is to it – hopefully, you’ll now have a shared VNC server which connects to your main desktop X session, running on port 5900 using the password you gave, all started automatically as soon as LightDM asks you to login. Hooray!<br />
1. If you’d like to have a separated VNC server running too you can – make sure you have tightvncserver installed (or similar) and then put<br />
<code>[VNCServer]<br />
enabled=true<br />
port=5901 # I've used port 5901 so it doesn't interfere with the setup from above</code><br />
in your <var>/etc/lightdm/lightdm.conf</var> then reboot – should have a separate X session available for VNC’ing into.</p>
<p><strong>Quoted:</strong> <a href="http://seb.so/vnc-from-boot-without-logging-in-ubuntu-lubuntu-xubuntu-and-mint-lmde/">http://seb.so/vnc-from-boot-without-logging-in-ubuntu-lubuntu-xubuntu-and-mint-lmde/</a></p>
]]></content:encoded>
			<wfw:commentRss>https://falconia.org/blog/archives/435/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to fix android exception of Sherlock: unable to pause activity</title>
		<link>https://falconia.org/blog/archives/429</link>
		<comments>https://falconia.org/blog/archives/429#comments</comments>
		<pubDate>Sun, 25 Nov 2012 17:08:55 +0000</pubDate>
		<dc:creator><![CDATA[FalconIA]]></dc:creator>
				<category><![CDATA[程序相关]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[sherlock]]></category>

		<guid isPermaLink="false">http://falconia.org/blog/?p=429</guid>
		<description><![CDATA[How to fix android exception of Sherlock: unable to pause activity Replace the android-support-v4.jar in the libs folder with the latest one from the SDK Manager.]]></description>
				<content:encoded><![CDATA[<p>How to fix android exception of Sherlock: unable to pause activity</p>
<p>Replace the android-support-v4.jar in the libs folder with the latest one from the SDK Manager.</p>
]]></content:encoded>
			<wfw:commentRss>https://falconia.org/blog/archives/429/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Enable numlock on in LightDM</title>
		<link>https://falconia.org/blog/archives/403</link>
		<comments>https://falconia.org/blog/archives/403#comments</comments>
		<pubDate>Wed, 08 Feb 2012 08:01:42 +0000</pubDate>
		<dc:creator><![CDATA[FalconIA]]></dc:creator>
				<category><![CDATA[系统相关]]></category>
		<category><![CDATA[lightdm]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://falconia.org/blog/?p=403</guid>
		<description><![CDATA[$ sudo apt-get install numlockx $ sudo gedit /etc/lightdm/lightdm.conf add this line at he end greeter-setup-script=/usr/bin/numlockx on]]></description>
				<content:encoded><![CDATA[<p><code>$ sudo apt-get install numlockx<br />
$ sudo gedit /etc/lightdm/lightdm.conf</code><br />
add this line at he end<br />
<code>greeter-setup-script=/usr/bin/numlockx on</code></p>
]]></content:encoded>
			<wfw:commentRss>https://falconia.org/blog/archives/403/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu 10.04 get exFat support.</title>
		<link>https://falconia.org/blog/archives/395</link>
		<comments>https://falconia.org/blog/archives/395#comments</comments>
		<pubDate>Mon, 16 Jan 2012 13:03:05 +0000</pubDate>
		<dc:creator><![CDATA[FalconIA]]></dc:creator>
				<category><![CDATA[系统相关]]></category>
		<category><![CDATA[exfat]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://falconia.org/blog/?p=395</guid>
		<description><![CDATA[Get exFat support for Ubuntu 10.04 LTS. Get fuse-exfat $ sudo add-apt-reprository ppa:relan/exfat $ sudo apt-get update $ sudo apt-get install fuse-exfat Create mount point. $ sudo mkdir /media/Data Manually mount: $ sudo mount -t exfat-fuse /dev/sda6 /media/Data umount: $ sudo umount /media/Data Automatically mount (by edit fstab): $ sudo gedit /etc/fstab add new line [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Get exFat support for Ubuntu 10.04 LTS.</p>
<p>Get fuse-exfat<br />
<code>$ sudo add-apt-reprository ppa:relan/exfat<br />
$ sudo apt-get update<br />
$ sudo apt-get install fuse-exfat</code></p>
<p>Create mount point.<br />
<code>$ sudo mkdir /media/Data</code></p>
<p><strong>Manually mount:</strong><br />
<code>$ sudo mount -t exfat-fuse /dev/sda6 /media/Data</code><br />
umount:<br />
<code>$ sudo umount /media/Data</code></p>
<p><strong>Automatically mount (by edit fstab):</strong><br />
<code>$ sudo gedit /etc/fstab</code><br />
add new line<br />
<code>/dev/sda6       /media/Data  exfat-fuse defaults            0       0</code><br />
save and restart.</p>
<p>*1 '/dev/sda6' is Device ID, could be '/dev/sdXX', such as '/dev/sdb1', please check in Disk Utility.<br />
*2 Someone says, update util-linux-ng 2.17 to 2.18, ubuntu will identify exfat automatically, but still need fuse-exfat. (actually not test)</p>
]]></content:encoded>
			<wfw:commentRss>https://falconia.org/blog/archives/395/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>使用Firefox解除国内（大陆）视频网站IP限制</title>
		<link>https://falconia.org/blog/archives/348</link>
		<comments>https://falconia.org/blog/archives/348#comments</comments>
		<pubDate>Mon, 09 Jan 2012 08:02:00 +0000</pubDate>
		<dc:creator><![CDATA[FalconIA]]></dc:creator>
				<category><![CDATA[技术杂烩]]></category>
		<category><![CDATA[IP限制]]></category>
		<category><![CDATA[优酷]]></category>
		<category><![CDATA[土豆]]></category>
		<category><![CDATA[看看]]></category>
		<category><![CDATA[迅雷]]></category>

		<guid isPermaLink="false">http://falconia.org/blog/?p=348</guid>
		<description><![CDATA[大陆视频网站土豆（tudou.com）、优酷（youku.com）、迅雷看看（kankan.xunlei.com）对部分视频做了IP限制。 下面使用Firefox的FoxyProxy插件欺骗IP检测。 优点是：只用代理欺骗IP检测页，不会因为免费代理速度过慢影响网页浏览及视频播放。 首先使用Firefox 安装FoxyProxy Standard，点我 重启Firefox 打开FoxyProxy的Options ①添加代理，点击图1-①：Add New Proxy ②设置代理 设置代理名称如：China IP limit bypass 关掉第三项：remote DNS lookups 设置大陆境内代理，如：203.91.120.143:80（请选择适合的可用代理，获取代理点我） 添加三条URL Patterns： 土豆：*v2.tudou.com/v?* 看看：*ip.kankan.xunlei.com/* 优酷：*v.youku.com/player/getPlayList/* ③选择模式（图1-③）为第一个：Use proxies based on ... 关掉FoxyProxy设置，重新刷新视频网站即可突破视频限制]]></description>
				<content:encoded><![CDATA[<p>大陆视频网站土豆（tudou.com）、优酷（youku.com）、迅雷看看（kankan.xunlei.com）对部分视频做了IP限制。</p>
<p>下面使用<strong>Firefox</strong>的FoxyProxy插件欺骗IP检测。<br />
优点是：只用代理欺骗IP检测页，不会因为免费代理速度过慢影响网页浏览及视频播放。</p>
<p><span id="more-348"></span></p>
<p>首先使用Firefox<br />
安装FoxyProxy Standard，<a title="Download FoxyProxy Standard" href="https://addons.mozilla.org/en-US/firefox/addon/foxyproxy-standard/" target="_blank">点我</a><br />
重启Firefox</p>
<p>打开FoxyProxy的Options<br />
<div id="attachment_359" style="width: 702px" class="wp-caption alignnone"><a href="http://falconia.org/blog/wp-content/uploads/2012/01/Proxy1.jpg"><img src="http://falconia.org/blog/wp-content/uploads/2012/01/Proxy1.jpg" alt="China IP limit bypass setup 1" title="China IP limit bypass setup 1" width="692" height="473" class="size-full wp-image-359" /></a><p class="wp-caption-text">China IP limit bypass setup 1</p></div></p>
<p><strong>①添加代理</strong>，点击图1-①：Add New Proxy</p>
<p><strong>②设置代理</strong><br />
<a href="http://falconia.org/blog/wp-content/uploads/2012/01/Proxy2.jpg"><img src="http://falconia.org/blog/wp-content/uploads/2012/01/Proxy2.jpg" alt="China IP limit bypass setup" title="IpLimitBypass2" width="454" height="264" class="alignnone size-full wp-image-361" /></a><br />
设置代理名称如：China IP limit bypass<br />
关掉第三项：remote DNS lookups<br />
<a href="http://falconia.org/blog/wp-content/uploads/2012/01/Proxy3.jpg"><img src="http://falconia.org/blog/wp-content/uploads/2012/01/Proxy3.jpg" alt="China IP limit bypass setup" title="IpLimitBypass3" width="643" height="204" class="alignnone size-full wp-image-362" /></a><br />
设置大陆境内代理，如：<em><del>203.91.120.143:80</del></em>（<strong>请选择适合的可用代理</strong>，获取代理<a href="http://www.sooip.cn/guoneidaili/" target="_blank"><strong>点我</strong></a>）<br />
<a href="http://falconia.org/blog/wp-content/uploads/2012/01/Proxy4.jpg"><img src="http://falconia.org/blog/wp-content/uploads/2012/01/Proxy4.jpg" alt="China IP limit bypass setup" title="IpLimitBypass4" width="665" height="299" class="alignnone size-full wp-image-363" /></a><br />
添加三条URL Patterns：<br />
<a href="http://falconia.org/blog/wp-content/uploads/2012/01/Proxy5.jpg"><img src="http://falconia.org/blog/wp-content/uploads/2012/01/Proxy5.jpg" alt="China IP limit bypass setup" title="IpLimitBypass5" width="490" height="315" class="alignnone size-full wp-image-364" /></a><br />
<code>土豆：*v2.tudou.com/v?*<br />
看看：*ip.kankan.xunlei.com/*<br />
优酷：*v.youku.com/player/getPlayList/*</code></p>
<p><strong>③选择模式</strong>（图1-③）为第一个：Use proxies based on ...<br />
关掉FoxyProxy设置，重新刷新视频网站即可突破视频限制</p>
]]></content:encoded>
			<wfw:commentRss>https://falconia.org/blog/archives/348/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>PSPISO Info Tool 1.1</title>
		<link>https://falconia.org/blog/archives/339</link>
		<comments>https://falconia.org/blog/archives/339#comments</comments>
		<pubDate>Thu, 17 Nov 2011 06:45:12 +0000</pubDate>
		<dc:creator><![CDATA[FalconIA]]></dc:creator>
				<category><![CDATA[动漫游戏]]></category>
		<category><![CDATA[原创作品]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[psp]]></category>
		<category><![CDATA[发布]]></category>
		<category><![CDATA[编程]]></category>

		<guid isPermaLink="false">http://falconia.org/blog/?p=339</guid>
		<description><![CDATA[PSPISO Info Tool 1.1 Read PSP ISO info. // 读取PSPISO信息 Download: [download id="12"] // 下载 /* What's new */ 1.1 (2011-11-17) &#160;&#160;&#160;&#160;- Fix ISO cannot read in some .Net environment.]]></description>
				<content:encoded><![CDATA[<p>PSPISO Info Tool 1.1</p>
<p>Read PSP ISO info.<br />
// 读取PSPISO信息</p>
<p>Download: [download id="12"]<br />
// 下载</p>
<p>/* What's new */<br />
1.1 (2011-11-17)<br />
&nbsp;&nbsp;&nbsp;&nbsp;- Fix ISO cannot read in some .Net environment.</p>
<p><img src="/publish/images/PSPISOInfo_1_1.jpg" alt="PSPISOInfo" /></p>
]]></content:encoded>
			<wfw:commentRss>https://falconia.org/blog/archives/339/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PSPISO Info Tool 1.0</title>
		<link>https://falconia.org/blog/archives/335</link>
		<comments>https://falconia.org/blog/archives/335#comments</comments>
		<pubDate>Mon, 08 Aug 2011 12:13:01 +0000</pubDate>
		<dc:creator><![CDATA[FalconIA]]></dc:creator>
				<category><![CDATA[动漫游戏]]></category>
		<category><![CDATA[原创作品]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[psp]]></category>
		<category><![CDATA[发布]]></category>
		<category><![CDATA[编程]]></category>

		<guid isPermaLink="false">http://falconia.org/blog/?p=335</guid>
		<description><![CDATA[PSPISO Info Tool 1.0 Read PSP ISO info. // 读取PSPISO信息 Download: [download id="11"] // 下载]]></description>
				<content:encoded><![CDATA[<p>PSPISO Info Tool 1.0</p>
<p>Read PSP ISO info.<br />
// 读取PSPISO信息</p>
<p>Download: [download id="11"]<br />
// 下载</p>
<p><img src="/publish/images/PSPISOInfo.jpg" alt="PSPISOInfo" /></p>
]]></content:encoded>
			<wfw:commentRss>https://falconia.org/blog/archives/335/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
