Category Archives: Other Technologies

  • GTUG HK Event

    Posted on March 16, 2010 by in Blog, Other Technologies

    GTUG HK Event / ADL2010 on 5 March 2010

    No Comments. Continue Reading...
  • Adobe Acrobat Connect Pro Mobile

    Posted on February 25, 2010 by in Blog, Flash, Other Technologies

    Connect Pro Mobile is an iPhone app and it is available in store now. http://blogs.adobe.com/acrobatconnect/2010/02/adobe_acrobat_connect_pro_mobi.html

    No Comments. Continue Reading...
  • jQuery Resources

    Posted on December 7, 2009 by in Blog, HTML, Javascript, Other Technologies

    Main site / Documentation http://www.jquery.com/ UI theme jQuery UI – http://ui.jquery.com/ Plugins / extended library jQuery plugins directory – http://plugins.jquery.com/ jQuery TOOLS – http://flowplayer.org/tools/index.html leigeber – http://sandbox.leigeber.com/ Mullinx – http://mullinx.makinguse.com/ (A multi-direction hyperlink)

    No Comments. Continue Reading...
  • Case Sensitive Query in MySQL

    Posted on August 3, 2009 by in Blog, Other Technologies, SQL

    The default return result of MySQL query is case insensitive, e.g. header label SELECT header FROM table WHERE header = “LABEL” Result: label If you want the result of the query to be case sensitive. You have to add keyword “BINARY” in front of the field name. SELECT header FROM table WHERE BINARY header = [...]

    1 Comment. Continue Reading...
  • Unit PNG Fix for IE 6

    Posted on April 20, 2009 by in Blog, Other Technologies

    If your boss still requires you to support IE 6 and your site has PNG images. Unit PNG Fix is a good choice to solve the IE PNG issue. I have tried with some other similar library but would cause some errors or they are not working.   http://labs.unitinteractive.com/unitpngfix.php

    No Comments. Continue Reading...
  • IE Disabled Input

    Posted on April 15, 2009 by in Blog, Other Technologies

    IE is very suck … You cannot change the color of the disabled input. The color remains grey all the time while it is possible to do so in Safari and Firefox. I found a solution from the web which can pretend a disabled input, setting the input as onfocus=”this.blur();” onselectstart=”event.returnValue=false;” rather than disabled=”disabled” It [...]

    2 Comments. Continue Reading...
  • Image Recovery …

    Posted on March 20, 2009 by in Blog, Feelings, Image, Life, Other Technologies, Personal

    話說頭先仲好嬲冇哂D 相個陣突然諗起可以RECOVER 返張SD CARD入面既相… 咁就GOOGLE到兩個BROTHERS 推薦既SOFTWARE, 一開始我裝左 PC Inspector File Recovery ..呢個SOFTWARE好在個UI比較靚D 感覺上…不過就唔係好識用..因為佢唔USER FRIENDLY, 同埋佢RECOVER 到D相得一半… =.= 以下既係其中一張失敗既相 ..     如你所見…灰左……….. 跟住我試完第2個Digital Image Recovery之後開心返哂…因為TOTAL得1,2張救唔到, 其他相都救得返, 勁開心. 係呢度強烈推薦大家去用… 其實呢個SOFTWARE真係好有用, 因為好多時我地去用相機影相個陣真係會好易唔小心DELETE哂D相架..      呢個係同一幅相~

    No Comments. Continue Reading...
  • IBM Contest

    Posted on March 12, 2009 by in Blog, Life, Other Technologies, Personal No Comments. Continue Reading...
  • PHP with using Gmail SMTP

    Posted on September 23, 2008 by in Other Technologies

    If you want to use gmail smtp server in PHP, php mailer is a good choice for you. Here is the example: include(“class.phpmailer.php”); $mail = new PHPMailer (); $mail->IsSMTP (); $mail->SMTPAuth   = true; $mail->SMTPSecure = “ssl”; $mail->Host = “smtp.gmail.com”; $mail->Port  = 465; $mail->Mailer= “smtp”; $mail->Username   = “username@gmail.com”; $mail->Password   >= “password”; $mail->AddReplyTo (“Reply [...]

    1,633 Comments. Continue Reading...