
2012年7月25日 星期三
在已越獄的 iPhone 上增加新的 LINE 免費表情符號
今日成功下載了一些免費的 line 表情貼圖,我把方法貼於後:
先前準備:已 jailbreak 的 iOS 設備 及 在設備上安裝 iFile
1.首先在背景中關掉line,然後開啟iFile並更改 iFile 的設定,把應用程式名稱打開

2. 在路徑"/var/mobile/Applications/LINE/Library/Preferences/" 中 打開 "jp.naver.line.plist” 這個檔案
3. 選擇用屬性表檢視器打開檔案
4. 找到 tel 這個選項,更改電話國碼
5. 把國碼改為日本國碼 81 ,然後儲存。
打開 line 後,開起貼圖小舖就可看到一些免費的貼圖表情符號了。
*** 8/31 更新: 此方法已被 line 修正,需以 e-mail 綁定方式登入,國家選取日本,才有辦法下載日本的貼圖 ***
2012年3月8日 星期四
讓 ios版 iMovie version 1.3 運行在 ios 5.0.1 之下
做法有許多種
網路上有人是直接改 ios 的系統版本
而我的做法是直接從 iMovie 130.ipa 來著手。
1. 裝置要 jailbreak(必需).
2. 在 PC 端安裝 iTools
3. 在 PC 端安裝 plist Editor for Windows
4. 在PC電腦端用 itunes 下載最新版的 iMovie

網路上有人是直接改 ios 的系統版本
而我的做法是直接從 iMovie 130.ipa 來著手。
1. 裝置要 jailbreak(必需).
2. 在 PC 端安裝 iTools
3. 在 PC 端安裝 plist Editor for Windows
4. 在PC電腦端用 itunes 下載最新版的 iMovie
2010年6月21日 星期一
Edius 防抖插件測試
影片是我由 Canon EOS 7D + EF 70-200mm F4L 在200mm 望遠端手持拍攝。
由於手震得很嚴重,嘗試把影片用 proDAD Mercalli 這個防抖插件來修正。
影片左側是修正後的影片,右側是未修正的影片。
2010年6月6日 星期日
2009年9月6日 星期日
2009年8月25日 星期二
2009年7月10日 星期五
2009年6月28日 星期日
2009年4月20日 星期一
2009年4月18日 星期六
[PHP 筆記] 發個私噗給自己
沒事發私噗給自己?
雖然 PLURK 有假期模式
但想保卡馬又沒時間噗浪
也不想造成他人的困擾
就想寫個程式
搭配 Windows xp '排定的工作'
成為定時發私噗的噗浪機器人
而這個私噗的內容只有自己可看到。
plurk_limit.php
<?
header('Content-type:text/html; charset=utf-8');
define('NICKNAME', ''); //輸入 PLURK 的 NICKNAME
define('PASSWORD', ''); //輸入 PLURK 的密碼
$user_id = getid(NICKNAME);
define('USER_ID', "$user_id");
set_time_limit(240);
// login
$ch = curl_init();
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_COOKIEJAR, '\plurk_cookie_n.txt');
curl_setopt($ch, CURLOPT_URL, 'http://www.plurk.com/Users/login');
curl_setopt($ch, CURLOPT_POSTFIELDS, 'nick_name='.NICKNAME.'&password='.PASSWORD);
curl_exec($ch);
curl_close($ch);
//
date_default_timezone_set("Asia/Taipei");
$out = date("Y-m-d H:i:s");
echo $out;
post($out);
function post($message){
// post
$ch3 = curl_init();
curl_setopt($ch3, CURLOPT_COOKIEFILE, '\plurk_cookie_n.txt');
curl_setopt($ch3, CURLOPT_URL, 'http://www.plurk.com/TimeLine/addPlurk');
curl_setopt($ch3, CURLOPT_POSTFIELDS, 'qualifier=gives&limited_to=%5B'.USER_ID.'%5D&lang=tr_ch&uid='.USER_ID.'&no_comments=0&content='.$message);
curl_exec($ch3);
curl_close($ch3);
}
function getid($name){
$ourl= 'http://plurk.com/'.NICKNAME;
$fid = file_get_contents($ourl);
preg_match('/user_id\": (.*?)\,/s',$fid,$matches);
$u_id = $matches[1];
return($u_id);
}
?>
上面
define ('NICKNAME', '1234'); 1234 改為你 PLURK 的 NICKNAME
define ('PASSWORD','5678'); 5678 改為你 PLURK 的密碼
如果噗同樣的內容
可能會被 Plurk 的防洪機制所阻擋
所以我把它設定為報時噗
排程的方式
以 AppServ 為例
首先要讓 php 支援 cURL 模組
我的排程是執行
D:\AppServ\php5\php.exe D:\AppServ\www\plurk\test\plurk_limit.php
切記!
每日超過 30 噗主題是會扣卡馬的
所以重複執行時間可不能設定太短喔。
順便打個小廣告
歡迎加入我的 機器人噗浪
.
[PHP 筆記]查詢某 PLURK NICKNAME 的 user id
首先要定義程式中的 NICKNAME如我的 NICKNAMEdefine('NICKNAME', 'never4get');
<?
define('NICKNAME', ''); // 在 '' 中輸入要查詢的 NICKNAME
$user_id = getid(NICKNAME);
echo $user_id;
function getid($name){
$ourl= 'http://plurk.com/'.NICKNAME;
$fid = file_get_contents($ourl);
preg_match('/user_id\": (.*?)\,/s',$fid,$matches);
$u_id = $matches[1];
return($u_id);
}
?>
2009年4月1日 星期三
2009年3月30日 星期一
大陸地區測試
能否請大陸地區的朋友幫忙測試
下面圖片
及ip能否看到
謝謝。
1.圖片測試
| 編號 | 圖片 | 備註 |
| 1. | www1.appledaily | |
| 2. | www2.appledaily | |
| 3. | appledaily | |
| 4. | next face ketchup me etw sudden tradingauto | |
| 5. | | motor |
2.網址測試
| 編號 | 網址 | ip |
| 1 | appledaily.atnext.com | http://202.85.162.80 |
| 2 | www1.appledaily.atnext.com | http://202.85.162.86 |
| 3 | www2.appledaily.atnext.com | http://202.85.162.230 |
| 4 | tradingauto.atnext.com | http://202.85.162.120 |
| 5 | travel.atnext.com | http://202.85.162.140 |
| 6 | www.appleactionews.com | http://202.85.162.121 |
| 7 | life.atnext.com | http://202.85.162.105 |
| 8 | motor.atnext.com | http://202.85.162.100 |
| 9 | lady.atnext.com | http://202.85.162.99 |
| 10 | food.atnext.com | http://202.85.162.176 |
| 11 | hk.mark6.atnext.com | http://202.85.162.98 |
| 12 | soccer.atnext.com | http://202.85.162.94 |
2009年3月17日 星期二
2009年2月28日 星期六
訂閱:
文章 (Atom)




