2014年12月30日 星期二
Mina Liou :: Start with Empathy, the World is My Field :): 【課程筆記】穿戴式產品設計與需求研究實務案例(20141014)
Mina Liou :: Start with Empathy, the World is My Field :): 【課程筆記】穿戴式產品設計與需求研究實務案例(20141014): 基於保護講師的Know How,以及悠識營運的考量 內容已經過刪減並獲得講師本人同意刊登於網路 :) 講師臉書: https://www.facebook.com/newterencetai 課程網址: http://edu.userxper.com/wearable-d...
2014年12月17日 星期三
Crawl TMall or Taobao Sales Record
1. Use QTP as crawler
1.1 grab a specific TABLE tag
1.2 do necessary pagination then perform 1.1 again
1.3 export stream as a local text file
2. Have a parser by using C#
2.1 parser text file
2.2 create data in staging data in database
2.3 only import latest records
1.1 grab a specific TABLE tag
1.2 do necessary pagination then perform 1.1 again
1.3 export stream as a local text file
2. Have a parser by using C#
2.1 parser text file
2.2 create data in staging data in database
2.3 only import latest records
2014年12月7日 星期日
Request format is unrecognized
[ Issue ]
After .Net web service deployment, the web service returns "System.InvalidOperationException Request format is unrecognized" (System.InvalidOperationException 無法辨認要求格式) whatever browse to [xxx].asmx or [xxx].asmx?wsdl .[ Solution ]
1. Check IIS protocols in management consoleMake sure HttpSoap, HttpGet, HttpPost are list
2. Investigate web.config in [IIS Root]/web.config, e.q. c:\inetpub\wwwroot\web.config
Check if there any "<clear />" in system.web->webService->protocols
3. Manual remove "<clear />" from web.config then apply the change
2014年10月5日 星期日
蘭姆杜絲(Dulcey)巧克力馬卡龍
她有著那淺棕色的光滑外表點綴些許可可豆碎, 夾入多明尼克蘭姆酒提味的法國高級品牌法芙娜杜絲巧克力(Dulcey)甘納許內餡.
輕咬一口, 一開始有著可可 & 杏仁香味以及馬卡龍獨有的甜蜜入心. 更有那杜絲巧克力的焦糖香, 細滑柔順的口感 & 高雅的鹹味點綴其中, 再帶點成人風的蘭姆酒香引人入勝. 最後最後, 還可以享受咬碎可可豆碎爆發出來的那純粹苦味和高雅的可可豆香.
AgileCommunity Taiwan: Agile Tour Taipei 2014
Agile Tour Taipei 2014議程表發表囉, 大家可以依照興趣選擇四個track之一.
網路報名時間預定在10/13 PM12:00開始. 為了使各位有最佳的參與效果, 每個track都有名額限制. 要搶票囉 !
網路報名時間預定在10/13 PM12:00開始. 為了使各位有最佳的參與效果, 每個track都有名額限制. 要搶票囉 !
2014年8月19日 星期二
AgileCommunity.Tw假日聚會首發
AgileCommunity.Tw假日聚會首發
歡迎大家來參加
這次特別安排兩種不同形態的議程, 一個是workshop, 另一個則是來自Nulab的專家座談(英文演講).
報名去 >> Agile Meetup 2014年8月假日聚會
2014年4月15日 星期二
巧克力培根 Chocolate Bacon
超市牌Bacon
Brown Sugar 二號砂糖
Black Paper
苦甜巧克力75%以上
Steps :
1. 烤箱預熱180度C
2. 撒上黑胡椒粉
3. 撒上brown sugar(一片培根至少8g糖)
4. 入烤箱180度C, 10min
5. 降到160度15min(如果烤箱溫度不均, 請順便對調)
6. 出爐略為降溫後, 放到網架上等待加工
7. 隔水加熱苦甜巧克力(一片培根至少10g)
8. 依個人喜好淋到培根上
2014年3月22日 星期六
Client side validation via personalization in Oracle EBS R12.2 withoutOAF
Pre-request : Oracle EBS R12.2 (or later)
Technology :
1. Event listener, event handler & event propogation in native JavaScript
2. Embed you blocks of JavaScript via adding a RawText item through Page personalization
Sample code
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript">
var XXValidation = {
xxInitialize : function(pHookObject, pHookEvent, pReplaceAttr) {
XXValidation.xxHookObject = pHookObject;
XXValidation.xxHookEvent = pHookEvent;
XXValidation.xxReplaceAttr = pReplaceAttr;
}
,
xxDelegation : function(){
$clone = $('#' + XXValidation.xxHookObject).clone(true).insertAfter('#' + XXValidation.xxHookObject);
$clone.attr("id", "CloneButton");
$clone.hide();
$('#' + XXValidation.xxHookObject).attr(XXValidation.xxReplaceAttr, "null");
},
xxValidater : function(){if(1 == 2){alert("validation success"); return true;} else {alert("validation fail"); return false;}}
,
xxSubmitForm : function(event){ $("#CloneButton")[XXValidation.xxHookEvent]();}
,
xxCancel : function(event){event.stopPropagation(); event.preventDefault();}
,
xxValidationHandler : function(event) {alert("Hook client side event through personalization !"); if(XXValidation.xxValidater()){XXValidation.xxSubmitForm(event);}
else{ XXValidation.xxCancel(event);} }
,
xxRegister : function() {
$('#' + XXValidation.xxHookObject).bind(XXValidation.xxHookEvent, XXValidation.xxValidationHandler);
}
};
XXValidation.xxInitialize("GoButton", "click", "onclick");
XXValidation.xxDelegation();
XXValidation.xxRegister();
</script>
Technology :
1. Event listener, event handler & event propogation in native JavaScript
2. Embed you blocks of JavaScript via adding a RawText item through Page personalization
Sample code
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript">
var XXValidation = {
xxInitialize : function(pHookObject, pHookEvent, pReplaceAttr) {
XXValidation.xxHookObject = pHookObject;
XXValidation.xxHookEvent = pHookEvent;
XXValidation.xxReplaceAttr = pReplaceAttr;
}
,
xxDelegation : function(){
$clone = $('#' + XXValidation.xxHookObject).clone(true).insertAfter('#' + XXValidation.xxHookObject);
$clone.attr("id", "CloneButton");
$clone.hide();
$('#' + XXValidation.xxHookObject).attr(XXValidation.xxReplaceAttr, "null");
},
xxValidater : function(){if(1 == 2){alert("validation success"); return true;} else {alert("validation fail"); return false;}}
,
xxSubmitForm : function(event){ $("#CloneButton")[XXValidation.xxHookEvent]();}
,
xxCancel : function(event){event.stopPropagation(); event.preventDefault();}
,
xxValidationHandler : function(event) {alert("Hook client side event through personalization !"); if(XXValidation.xxValidater()){XXValidation.xxSubmitForm(event);}
else{ XXValidation.xxCancel(event);} }
,
xxRegister : function() {
$('#' + XXValidation.xxHookObject).bind(XXValidation.xxHookEvent, XXValidation.xxValidationHandler);
}
};
XXValidation.xxInitialize("GoButton", "click", "onclick");
XXValidation.xxDelegation();
XXValidation.xxRegister();
</script>
2014年2月5日 星期三
Notes - Oracle Application Framework
http://oraclearea51.com/premium-content/18-technical-articles/oa-framework/51-working-with-pop-ups-in-oaf.html
http://mukx.blogspot.tw/2007/09/implementing-simple-watch-in-oa.html
how to popup confirm window on base page ( https://community.oracle.com/message/2057132 )
http://oracle.anilpassi.com/oa-framework-r12-extension-example-2.html
http://apps2fusion.com/
Partial Page Rendering in OAF Page
http://oafadfmahi.com/oaf/partial_page_rendering.html
http://mukx.blogspot.tw/2007/09/implementing-simple-watch-in-oa.html
how to popup confirm window on base page ( https://community.oracle.com/message/2057132 )
http://oracle.anilpassi.com/oa-framework-r12-extension-example-2.html
http://apps2fusion.com/
Partial Page Rendering in OAF Page
http://oafadfmahi.com/oaf/partial_page_rendering.html
訂閱:
文章 (Atom)