preload
八月 11

How to Install Android on Your iPhone – PCWorld

idroid Release 0.2 (3G) | Smart Phones Download | PCWorld

——-

iClarified – iPhone – How to Install Android on Your iPhone 2G, 3G [iPhoDroid]

Tagged with:
八月 02

Comex 推出了一種超簡單的JB方法,只要用瀏覽器就能完成JB。

jbme

jbme

只需要幾個步驟就可自行完成JB。

1) 打開 iPhone 上的 Safari
2) 網址輸入 http://jailbreakme.com 並前往
3) 滑動網頁裡的那個 “Slide to jailbreak”
4) 然後等候一會你的 iPhone 就會安裝好 Cydia

注意事項:
如果你用4.0作JB的話,可能會導致 MMS 和 Facetime 失效。如果你用 iPhone 4 建議你在 JB 前,先升級到 4.0.1。

若遇到 MMS / Facetime 的 bug,可以嘗試以下的步驟來修復:

使用 ifile 修改權限或 ssh 遠端登入輸入以下指令:

chmod 755 /var/mobile
chmod 755 /var/mobile/Library
chmod 755 /var/mobile/Library/Preferences

然後重新開機並在「設定」裡啟用 Facetime。

Tagged with:
六月 26

com.apple.dynamic_pager.plist 放置路徑
/System/Library/LaunchDaemons

chmod 644

重開機即可。

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>Label</key>
	<string>com.apple.dynamic_pager</string>
	<key>OnDemand</key>
	<false/>
	<key>ProgramArguments</key>
	<array>
		<string>/sbin/dynamic_pager</string>
		<string>-F</string>
		<string>/private/var/vm/iphone_swap</string>
	</array>
	<key>RunAtLoad</key>
	<true/>
</dict>
</plist>

REF1: Mowd Blog Spaces ~ iPhone 上最好用的虛擬記憶體管理程式
REF2: iPhone Virtual Memory: Speed Boost For Your iPhone. Know The Risks | FSMdotCOM

Tagged with:
六月 26

讓你的網頁適合在 iPhone 與 iPad 上瀏覽

Tagged with:
六月 24

iPhone 人機界面設計規範(中英對照)
iPhone Human Interface Guidelines

簡介
Introduction
第一部分:設計你的 iPhone 軟件產品
Part I: Planning Your iPhone Software Product
第二部分:為你的 iPhone 軟件設計用戶界面
Part II: Designing the User Interface of Your iPhone Application

iPhone 人機界面設計規範(中英對照)

Tagged with:
五月 19

在終端機內輸入

sysctl -a hw

可得到硬體資訊,如CPU頻率、RAM大小等等。

Tagged with:
五月 19

因為不想花錢去買 iPhone 的 Benchmark App,所以自己用很簡陋的方式測試。

寫一個 shell script 的迴圈去測 CPU 超頻前後處理速度的差異。

#!/bin/bash
for ((i=1;i<=10000;i=i+1))
do
	for ((i=1;i<=10000;i=i+1))
	do
		i=`expr $i + 1`
	done
done
echo $i

然後進 MobileTerminal 用 time 指令去測量此 script 所花費的時間。

超頻前:3m26.361s
超頻後:2m0.955s

時間縮短了約25s,大約是超頻前的1.7倍。

Tagged with: