'분류 전체보기'에 해당되는 글 951건

  1. 2008.09.18 블로그에 MSN 메신저 달기
  2. 2008.09.17 flash 실행 null 에러
  3. 2008.09.11 HTML Editor Reviews
  4. 2008.09.11 플렉스 책
  5. 2008.09.10 ie6과 ie7 같이 사용하기 multi ie
  6. 2008.09.10 ie6과 ie7 같이 사용하기 multi ie
  7. 2008.09.07 적벽강
  8. 2008.09.07 진주
  9. 2008.09.05 맛있는 요리 레시피
  10. 2008.09.01 Encryption, Decryption


http://settings.messenger.live.com/applications/WebSettings.aspx

 여기에서 설정 할 수 있습니다.
Posted by [czar]
,
object에는 id를 embed에는 name을 꼭 넣어주세요.
Posted by [czar]
,
http://webdesign.about.com/gi/dynamic/offsite.htm?zi=1/XJ&sdn=webdesign&cdn=compute&tm=23&f=00&su=p284.9.336.ip_p504.1.336.ip_&tt=2&bt=1&bts=0&zu=http://www.webcommando.com/editrev/byname.html





HTML Editor Reviews
HTML Editor Reviews
HTML Editor Reviews
HTML Editor Reviews
Posted by [czar]
,

플렉스 책

카테고리 없음 2008. 9. 11. 01:56
Adobe FLEX 3 실전 트레이닝 북



http://www.yes24.com/Goods/FTGoodsView.aspx?goodsNo=3023912&CategoryNumber=001001003016001012001




하루에 한번 가슴 뛰는 일을 하자
Posted by [czar]
,

현재 XP SP2 에 IE7 을 사용하고 있는데 업무상 IE6 환경에서 테스트 할 일이 있어
멀티로 사용을 할 수는 없을까? 해서 찾아 보니 이런 좋은 프로그램이 있네요....
웹표준으로 웹페이지 생성하고 한 PC에서 크로스브라우징 테스트할 때 유용하게 사용할 수 있겠네요...

출처 : http://tredosoft.com/Multiple_IE

Posted by [czar]
,

현재 XP SP2 에 IE7 을 사용하고 있는데 업무상 IE6 환경에서 테스트 할 일이 있어
멀티로 사용을 할 수는 없을까? 해서 찾아 보니 이런 좋은 프로그램이 있네요....
웹표준으로 웹페이지 생성하고 한 PC에서 크로스브라우징 테스트할 때 유용하게 사용할 수 있겠네요...

출처 : http://tredosoft.com/Multiple_IE

Posted by [czar]
,

적벽강

카테고리 없음 2008. 9. 7. 08:47
적벽강(대장금 촬영지)->방화동(논개사당)


대장금


대둔산국립공원
Posted by [czar]
,

진주

카테고리 없음 2008. 9. 7. 08:10

천황식당


비빔밥

Posted by [czar]
,
Posted by [czar]
,
Encryption, Decryption
 
       
         /**
         * Encrypt local and inherited fields with the password.
         */
        public void encrypt(String password) throws Exception {

                if (password == null || password.length() == 0)
                        return;

                // generate the key with password
                KeyGenerator generator = KeyGenerator.getInstance("DES");
                generator.init(new SecureRandom(password.getBytes()));
                Key key = generator.generateKey();

                Cipher cipher = Cipher.getInstance("DES/ECB/PKCS5Padding");
                cipher.init(Cipher.ENCRYPT_MODE, key);

               // do encryption

                // this is for padding
                BASE64Encoder encoder = new BASE64Encoder();
                program = encoder.encode(cipher.doFinal(program.getBytes()));
               

        } 

        /** 
         * Decrypt the local and inherited feilds with the password.
         */
        public void decrypt(String password) throws Exception {

                if (password == null || password.length() == 0)
                        return; 
                 
                // generate the key with password
                KeyGenerator generator = KeyGenerator.getInstance("DES");
                generator.init(new SecureRandom(password.getBytes()));
                Key key = generator.generateKey();

                Cipher cipher = Cipher.getInstance("DES/ECB/PKCS5Padding");
                cipher.init(Cipher.DECRYPT_MODE, key);

                 // do encryption
                // this is for padding
                BASE64Decoder decoder = newBASE64Decoder();
               program = new String(cipher.doFinal(decoder.decodeBuffer(program)));
        } 
Posted by [czar]
,