
Entries categorized as ‘テック’
Sign Up Forms Must Die
January 21, 2009 · Leave a Comment
I found a very informative site [A list apart]
“Sign Up Forms Must Die” catches my attention and I agree with the other.
Lots of things and website you can discover when you browse and be engage with it.
using java.util.zip.ZipOutputStream
December 17, 2008 · Leave a Comment
using java.util.zip.ZipOutputStream build in is nice, but It cannot handle the encoding of the file to download in Japanese.
ファイルは日本語になると出来上がったZIPファイルの中身に文字化けのままになちゃう。 Using [org.apache.tools.zip.ZipOutputStream] from apache ANT (all you need is the ant.jar) will solve the problem!
org.apache.tools.zip.ZipOutputStream zipOutputStream = new
org.apache.tools.zip.ZipOutputStream(newOutputStream);
//使うにしたがって、 AntのZipEntryも利用する
// Also don`t forget to use the ZipEntry From apache.tools
org.apache.tools.zip.ZipEntry zipEntry = new org.apache.tools.zip.ZipEntry(targetFile.getName());
Categories: テック
Using Apache POI [HSSF and XSSF for Excel Documents]
November 26, 2008 · Leave a Comment
Trying to access(Read, Write, Modify, FileOutput to some file types like text,CSV format) MS Excel Format becomes easy using Apache PIO [HSSF and XSSF for Excel Documents]
Thanks Harada san for introducing it
Download the [poi-bin-3.5-beta3-20080926.zip] and include PIO jars in your JAVA project and make some reference to its API and thats it, you can start experimenting and making fun!
Things I like about it:
1. Can Formulate the formula inside the Excel file using [org.apache.poi.hssf.usermodel.HSSFFormulaEvaluator;]
2. Fast in processing
3. Not that very complicated, I think.
Reference:
Categories: テック
google website english and Japanese
September 16, 2008 · Leave a Comment
I created a Google English, Japanese Menu translation for my dear friend ate chatty.
Also for anyone who have difficulty in reading Japanese Menu in Google homepage, It is a vey simple translattion.
Categories: my stuff ;-) · テック
mail from thunderbird to thunderbird
July 16, 2008 · Leave a Comment
when I setup my new machine, I need to restore my old emails from my account.
※In old machine,
1 locate → C:\Documents and Settings\<user>\Application Data\Thunderbird\Profiles
2 Save it somewhere, but in safe place
※ In New machine where, you installed Thunderbird.
1. locate → C:\Documents and Settings\<user>\Application Data\Thunderbird\Profiles
2. If you aren`t sure to overwrite your account in new machine, you can create a NEW PROFILE.
Mozilla Support helps me to work this out.
3. Better to give the new account unique, so theat you can determined you target mail account from source.like
[from_old_machine]
Copy the file you want to restore,
1. *.msf
2. partner with the one without extension.
3. If you have a folder, the same with the *.msf name, copying will restore appropriate contents of the account.
Categories: テック
SI Object Browser10コメント表に文字化けが・・
July 15, 2008 · Leave a Comment
Oracle 10g
Object Browser10 の組み合わせをインストール次第に、テーブルのコメント表じ文字化けが出てきました。
解決策は、
①. 環境変数に二つの変数を設定するのは必要:
「ORACLE_HOME」- Oracleディレクトリー
「NS_LANG」- 値は以下のような、
NLS_LANG
JAPANESE_JAPAN.JA16SJIS
②. regeditの確認
HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\{Oracleホーム}に、以下のように指定されるかどうかの確認。
NLS_LANG
JAPANESE_JAPAN.JA16SJIS
(Object BrowserではSJISのみサポートしており、
それ以外の設定の場合は文字化けなどの問題が発生することがあります。)by Object Browser Support Team
Answer reference came from OB support Team
Categories: テック
IE6 and IE7 installed at same time (IE6とIE7を共存させるって)
February 28, 2008 · Leave a Comment
両方のIEバージョン(6and7)のCSSの違いを明確に差異を知るためにソフトを試してみた。
I tried to install and find out the information given by my officemate:
IE6とIE7共通される インストールしたあとに、ブロッグ日々の同じ条件で意識した。IE7をベースにIE6のスタンドアローン版をインストールするの経由で設定した。
-
IE logo is IE6
-
No Tab that have in IE7
-
But, when you look at the version, It is version 7 のまま
-
Can run the two IE version at the same time
-
and I didn`t yet distinguished the difference between the too.. むむむ・・(-。-)y-゜゜゜
Categories: テック
Japanese キーボード変換文字
August 22, 2007 · Leave a Comment
何回、キーボード変換文字の問題をあったことがありますが、解決策は忘れてしまいました・・
今回は記録にしときます。
I want to write in hiragana in English keyboard setting like:
- あ = for A key
- い = for I key
- う= for U key
etc. ・・
but my problem is, when I push the letter key it appears like this:
- A key = ち
- I key = に
- U key = な 「備考:the hiragana that appear under Alphabet appears]
ジャンジャラジャン~~\(◎o◎)/! The Solution!
Originally I experiment with lots of key combinatin stokes from → this site! “The Japanese keyboard driver”
- just alt + Kana (Hiragana) = (between Henkan and right Alt), It will back and fort from Japanese Keyboard to English keyboard
- If its katakana just push the ” Kana (Hiragana) = (between Henkan and right Alt)” buttton
- That`s it! (^_-)-☆
Categories: テック

