跳到主要內容

發表文章

目前顯示的是 12月, 2013的文章

上架第二隻iOS App卻遇到錯誤 bundle identifier

1.Apples web services operation was not successful. 2.Unable to authenticate the package:727047181.itmsp 3.ERROR ITMS -9000:"The bundle identifier cannot be changed from the current val;ue,'com.redim.pokerastic'. If u want to change your bundle identifier,you will need to create a new application in itunes Connect."at softwareAssests/SoftwareAsset(MZItmspsoftwareAssetPackage 解: 因為是第二隻App,所以Identifier、mobileprovision必須要重新申請,重新build就可以了 https://developer.apple.com

TOSHIBA L740換電池 : 淘寶一個副廠吧!

原廠電池用了兩年剩下1HR...超爛 原廠的電池賣超貴,只好找掏寶 但關鍵字L740找不到,改成電池關鍵字PA3817U-1BRS就找到一堆! 限時搶購-限時搶購省110.00 RMB http://detail.tmall.com/item.htm?id=21392228313&_u=91oi0oaac824 原本有三小時,現在多了1小時 XD

淘寶網x全家代收 歷程簡記

[淘寶網x全家代收] 為了買台灣買不到的東西只好上淘寶, 中間要付給中國集合商一次運費(NT40), 再付給全家第二次國際轉運運費(NT100), 且要在網路上操作兩次,第一次使用還蠻不習慣的, 雖然淘寶台灣是繁體中文,但處理訂單都是簡體環境,而且速度很慢 2013-11-18 付款 2013-12-06 取貨 中間歷經商品卡在中國海關說不給過,全家建議我退貨,我退貨申請失敗,因為大陸賣家已經寄到中間商了,後來海關又可以了放行了,才收到貨。 因為遇到上述問題,使用淘寶線上聊天客服,回應速度很快,PChome24HR的話就是要等1-2天才會得到回應 除了收件時間慢、操作流程繁複之外, 基本上商品價格加上運費還是遠低於台灣商, 還送全家咖啡,現在淘寶正是好時機

[腦波] NeuroSky MindWave Mobile如何取得八的頻段的值

MSG_RAW_MULTI基本上取不到(不知原因) 但MSG_EEG_POWER可以,所以勉強用吧:             case TGDevice.MSG_EEG_POWER:             int A[] = new int[100];             int i = 0;             A[i++] = ((TGEegPower)msg.obj).delta;             A[i++] = ((TGEegPower)msg.obj).highAlpha;             A[i++] = ((TGEegPower)msg.obj).highBeta;             A[i++] = ((TGEegPower)msg.obj).lowAlpha;             A[i++] = ((TGEegPower)msg.obj).lowBeta;             A[i++] = ((TGEegPower)msg.obj).lowGamma;             A[i++] = ((TGEegPower)msg.obj).midGamma;             A[i++] = ((TGEegPower)msg.obj).theta;             for(int j=0 ; j<i ;j++)             Log.e("QQ"+j , Integer.toString(A[j])  );             break;

IE8討人厭的xml bug

IE8無法用jQuery的ajax讀取XML 會噴一些奇奇怪怪的error 因此需要用最原始的IE AJAX去做... if( navigator.userAgent.indexOf("MSIE 8.0")>0 ){ // console.log("XD") var xmlhttp,xmlDoc; if (window.XMLHttpRequest) { xmlhttp=new XMLHttpRequest(); } else // IE 5/6 { xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); } xmlhttp.onreadystatechange=function() { // console.log(xmlhttp.readyState + " " + xmlhttp.status) if (xmlhttp.readyState==4 && xmlhttp.status==200) { var xml = xmlhttp.responseXML; // console.log(JSON.stringify(xml)) } } xmlhttp.open("GET",xmlurl,false); xmlhttp.send(); } else{ $.ajax({ url: xmlurl, type: 'get', dataType: 'text', //timeout: 1000, error: function(xml){ alert('xml error'); //當xml讀取失敗 // console.log(JSON.stringify(xml)) xmlData=$.parseXML(xml.responseText); }, success: function(xm