2009年8月25日 星期二

Flash Local Connection

Flash Local Connection:
------------------------
http://www.ahrooga.com/2008/08/how-to-communicate-between-multiple-flash-files-with-localconnection/

http://board.flashkit.com/board/archive/index.php/t-614540.html

http://www.kirupa.com/forum/archive/index.php/t-192383.html

2009年8月19日 星期三

Windows shortcut

http://support.microsoft.com/kb/126449

http://www.seoconsultants.com/windows/key/

http://www.worldstart.com/guides/shortcuts.htm

Ctrl + F5 --> complete refresh

2009年8月18日 星期二

Flash Uninstall and Player Archive for Testing Purposes

A) How to uninstall the Adobe Flash Player plug-in and ActiveX control:
http://kb2.adobe.com/cps/141/tn_14157.html

B) Archived Flash Players available for testing purposes:
http://kb2.adobe.com/cps/142/tn_14266.html

Google AJAX API

http://code.google.com/intl/zh-TW/apis/ajax/documentation/

HTML elements and their attributes : SitePoint

HTML : http://reference.sitepoint.com/html

CSS : http://reference.sitepoint.com/css

JavaScript : http://reference.sitepoint.com/javascript

SWFObject

http://code.google.com/p/swfobject/

http://www.adobe.com/devnet/flashplayer/articles/swfobject.html

http://www.adobe.com/devnet/flashplayer/articles/alternative_content.html

Traditional publishing mechanisms for rich media content created for Adobe Flash Player often rely on the twice-cooked method to embed SWF files into HTML pages. One major drawback of this method is that it is based on old-fashioned, vendor-specific markup that doesn't comply with modern web standards and also doesn't allow you to nest fallback content inside of it.

To solve this problem, we created SWFObject 2, which offers multiple standards-friendly methods to embed rich media content into web pages. It supports the use of alternative (substitute) content to display content to people who browse the web without plug-ins, to help search engines index your content, and to point visitors to the Adobe Flash Player download page.

投資網址及股票書籍

投資網址
http://www.8nn8.com/gpsj.htm

股票書籍
http://uwants.com/viewthread.php?action=printable&tid=1542138

2009年8月15日 星期六

Kindergarten

Part A: 鑽石山 / 黃大仙

1) 香港靈糧堂幼稚園
http://www.lingliang.org.hk/
鑽石山龍蟠街三號星河明居二樓平台
電話:2955 9797
開始接受申請日期: Aug 17

2) 張祝珊幼兒園幼稚園
http://www.ccsn.edu.hk
電話:2327 3317

3) 保良局金卿幼稚園
http://www.plkkhkg.edu.hk/home.php
電話:2322 0133

4) 基督教香港崇真會安強幼兒學校
http://www.ttmssd.org/Child/OK/ok.php
電話:2321 0580

5) 聖母幼稚園
http://www.olk.edu.hk/home.html
電話:2320 7544
開始派表日期: 2009年11月03日

Part B: 九龍城 / 九龍塘

1) 香港創價幼稚園
http://www.soka.edu.hk/
電話:2336 6090
開始接受申請日期: 2009年10月1日

2) 迦南幼稚園
http://www.cannan.edu.hk/
http://www.cannan.edu.hk/enrolment/enrolment_frame.html
http://www.cannan.edu.hk/pdf/application_form.pdf
a) 九龍迦南中英文幼稚園 -- 九龍城嘉林邊道28號B地下 2336-2096
b) 迦南幼稚園(九龍塘) -- 九龍塘金巴倫道9-11號 2338-3262
c) 迦南幼稚園(窩打老道) -- 九龍塘窩打老道111號 2336-0006
開始接受申請日期: 2009年9月7日

3) 基督教中心幼稚園暨幼兒園
http://www.cyckg.edu.hk
電話:2337 0072

4) 又一村學校(幼稚園)
http://www.yycskg.edu.hk/
地址:又一村壽菊路2號
電話:2381 2949

5) 九龍禮賢學校暨幼稚園
http://krs.school.hk/~kindergarten/
地址:九龍 又一村 石竹路 2號A
電話:2380 3936
開始接受交表日期: 2009年10月28日

6) 民生書院幼稚園
http://munsang.edu.hk/kindergarten/
地址:九龍城東寶庭道八號
電話:3655 3500
截止日期:2009年11月7日(星期六)

7) 德信幼稚園
地址:九龍柯士甸道103號
電話:2724 1674
http://www.taksunkg.edu.hk/index.do

8) 啟思幼稚園幼兒園(九龍塘正校)
地址:九龍九龍塘律倫街6號地下
http://www.creative.edu.hk/school-recruit.html

9) 香港培正小學幼稚園
地址:九龍九龍城窩打老道80號
http://www.pcps.edu.hk/2008kindergarten/kindergarten.html

10) 聖羅撒幼稚園
地址 : 九龍界限街104A號地下
http://www.roselima.edu.hk

11) 崇真小學暨幼稚園
電話:2777 3679
地址 : 九龍大埔道五十八號
http://www.ttpskg.edu.hk/chi/51k.htm


學校搜尋:
http://www.edb.gov.hk/index.aspx?langno=2&nodeid=510

http://kgp.proj.hkedcity.net/chi/parser.php?file=chi/search.htm&district_id=5&sch_type=Non-profit-making&voucher=Yes&sch_name=

http://www.edu-kingdom.com/custompage/edu/kinder_list.php

2009年8月8日 星期六

Perl : A perl script to execute another perl

system("2.pl");

Perl : To compare two files and print differences between them

#!/usr/bin/perl -W

open F1, "< FileA.txt";
open F2, "< FileB.txt";

my %hash1;
my %hash2;

while () { $hash1{$_} = 1; }
while () { $hash2{$_} = 1; }

print "words are in FileA but not in FileB are:\n";
foreach (keys %hash1) { print if !defined($hash2{$_}); }

print "words are in FileB but not in FileA are:\n";
foreach (keys %hash2) { print if !defined($hash1{$_}); }

close F1;
close F2;

2009年8月5日 星期三

IT Skills

Certified Information Security Manager (CISM) certification, CISSP
Solaris UNIX, LPI, Apache,
PHP, JSP, JavaScript, XML
MS SQL Server, Oracle, MySQL
Crystal Report
Flash, Actionscript