Posts tagged Java
ZULU Trader口座開設しました
10月 13th
イけてるシグナルプロバイダーがいっぱいいそうなので、口座開設してみました! http://accountregistration.zulutrade.com/
たとえば今、ランキング1位のシグナルプロバイダThe Hunter。28週間で539.0 pipsのプラス!maximum drawdownも-38 pipsでなかなかいけてる!
今持ってるInterbankFXが対応していないから適当な対応FX会社にアカウント作ってZULU Traderで運用してみようと思う。
1度のメッセージ呼び出しに対する複数の例外補足
2月 14th
PHPにて、1度のメッセージ呼び出しで例外が発生し、
その例外の抽象度によってハンドリングする内容を変える方法は、tryを入れ子にしなければならない。
try{
try{
throw new OriginalException('exception');
}catch(OriginalException $e){
// handling for OriginalException
throw $e;
}
}catch(Exception $e){
// handling for Exception
}
起き上がれないカピバラさん
9月 8th
<a href=”http://www.flipclip.net/clips/matsu/434c843a7c613089099ac18766a3c5e5/popup” title=”FlipClip – 悶えるカピバラさん” target=”flclpopup”><img src=”http://www.flipclip.net/thumbs/clip/matsu/434c843a7c613089099ac18766a3c5e5.jpg” alt=”悶えるカピバラさん” border=”0″ /></a><br />Powered by <a href=”http://www.flipclip.net/” title=”動画共有・動画投稿 FlipClip”>FlipClip</a> [カピバラ] 悶えるカピバラさん by まつぼっくり
足が高速回転!
夜の日比谷通り。皇居らへん。
6月 5th
今日からOperaer
12月 21st
ブラウザを乗り換えることにした。
Firefox -> Opera
Firefox不安定すぎ。ブラウザ内でJavaを実行すると描画がおかしくなったり、ブラウザが応答無くなったりする! さようならFirefox。 知名度が高いからと行って調子に乗るな。
ようこそOpera。地味だけど、Firefoxより画面描画が早い。体感でわかるぐらい違う。
Operaで便利なWidgetあったらおしえてー!
Dreamweaver + Smarty
11月 24th
背景: PHPのSmartyを使っていて不便なことは,Smartyのinclude命令によって外部ファイルを読み込んでいる場合である.そのテンプレートファイルをDreamweaverで編集するときにはSmartyタグがHTMLとして認識されるので非常に不便.また,ファイルがincludeされないので,include後の画面表示ができない.
ソリューション: このページに載っている方法を使うと,HTMLファイルをDreamweaverで開くときにファイルをhookして,includeされたファイルを画面に表示してくれる. http://smarty.incutio.com/?page=SmartyDreamweaver
手順: 1.以下のソースコードをファイルに保存し,”Dreamweaverをインストールしたディレクトリ\Configuration\Translators\”.に保存する.ファイル名はなんでもいい.
<html>
<head>
<title>Smarty Include Tag Translator</title>
<meta http-equiv="Content-Type" content="text/html; charset=">
<script language="JavaScript">
/**
* This translator will only work on this format:
* {include file="foo.tpl"}
* filename must surrounded by double or single quotes
* if 'assign' or '[var]' attribute exists, it will not tranlated
* the include tag must be in one line
* extra spaces are allowed, e.g. { include file = " foo.tpl " }
* all templates file suppose to stay in the same top 'templates' folder
* you can include subfolder in the include tag
* all other formats will be More >
最近のコメント