Dataloader + CLIQ実装

注意点:command lineでSalesforceに接続する場合、proxy使うと、必ずDataloaderフォルダにjvmを使ってください
標準なjdk使うと、proxy設定はうまくいけない可能性があります
例:dataloader19 + cliqの場合、その現象が発生する
“HTTP/1.1 407 Proxy Authentication Required”

上記問題対応するため、最新のDataloaderVersionをDownloadして、利用する(例:Dataloader 25.0.2)

Linux + Dataloader(Redhat 6 + DataLoader25.0.2 + CLIQ)検証済み、問題なし、稼働できます

Apexクラスステップ数統計

Integer classLines = 0;
Integer triggerLines = 0;

for(ApexClass a : [Select Name, Body From ApexClass]){
List lines = a.Body.split(‘\n’);
classLines += lines.size();
System.debug(a.name + ‘:’ + lines.size());
}

for(ApexTrigger a : [Select Name, Body From ApexTrigger]){
List lines = a.Body.split(‘\n’);
triggerLines += lines.size();
System.debug(a.name + ‘:’ + lines.size());
}

system.debug(‘Apex Class lines: ‘ + classLines);
system.debug(‘Apex Trigger lines: ‘ + triggerLines);
system.debug(‘Apex Total lines: ‘ + (classLines+ triggerLines));

Mac BookPro 13ich SSD

http://ascii.jp/elem/000/000/703/703053/index-3.html

http://ascii.jp/elem/000/000/705/705609/

http://www.osxtoy.com/2011/09/20/macbook-pro%E6%8B%86%E6%9C%BA%E5%85%89%E9%A9%B1%E6%9B%B4%E6%8D%A2%E5%9B%BA%E6%80%81%E7%A1%AC%E7%9B%98%E5%AE%9E%E6%88%98/

http://tech.huanqiu.com/digit/pc/focus/2011-06/1749529_2.html

http://iphone4.tw/forums/showthread.php?t=179079

——————-速度修复——————
http://bbs.weiphone.com/read-htm-tid-1267624.html