分享一下我的播放清單,主要是軍教片曾用過的主題曲、軍校招生歌曲...

01報告班長
02我知道我己長大
03一路上有你為伴
04現在的我
05夜襲
06孤單的兵
07兵變
08亮島之歌
09和天一樣高
10永遠不回頭
11老兵
12年輕的喝彩
13擦亮你的名字
14英勇勳章
15換上我的天空
16紅紅青春敲阿敲

coolouis 發表在 痞客邦 留言(0) 人氣()

隨選即用的雲端服務 Force.com 介紹

http://www.youtube.com/watch?v=drKiJQjQkh8 (1/5)

http://www.youtube.com/watch?v=ecaezmqXtpA (2/5)

http://www.youtube.com/watch?v=sJfDxFy4FHE (3/5)

http://www.youtube.com/watch?v=1vIuNrLk-Ko (4/5)

http://www.youtube.com/watch?v=SIq9Ew-Li_g (5/5)

 

Cloud Computing x - Steve Chang 張明正談雲端計算

http://www.youtube.com/watch?v=81Xr-CiCTYM (01)

http://www.youtube.com/watch?v=p65sNfXfRXg (02)

http://www.youtube.com/watch?v=Oe6d36B-BGU (Slides only)

 

雲端運算上的防毒應用-趨勢全球研發部核心事業副總經理劉琴堂

http://www.youtube.com/watch?v=We4Z5WURX1Y

http://www.youtube.com/watch?v=i8-1bS4WiOE (Slides only)

 

 

雲端運算 -- Google 2008台北程式開發日

http://www.youtube.com/watch?v=3NAP5rk9Nzs

 

騰雲駕霧程式競賽起跑記者會

http://www.youtube.com/watch?v=weQQJ-XVA-8

 

#152- Google未來十年會變成什麼樣子? [你推我報]

http://www.youtube.com/watch?v=R2wdnz8bBw8

 

雲端+Linux 來看Justgogo

http://www.youtube.com/watch?v=pJ6nLucWbOY

 

coolouis 發表在 痞客邦 留言(0) 人氣()

View -> Display Ruler [off]

View -> Display Line Numbers [on]

View -> Set Font [11,12]

 

Advanced -> Configuration -> File Handling -> Backup -> [No backup]

Advanced -> Configuration -> File Handling -> DOS/UINX/MAC Handling -> detection/conversion [Disable]

Advanced -> Configuration -> Editor Display -> Code Folding -> Enable show/hide lines and code folding [off]

 

File -> Sava As -> Format : UTF-8 - NO BOM

coolouis 發表在 痞客邦 留言(0) 人氣()

jQuery 中,大部分的操作都基於 HTML DOM,所以我們必須確定頁面文件已經完全下載好才開始執行你的程式,jQuery 提供下面這個函式來處理 DOM ready 事件 (DOMContentLoaded)

 

$(document).ready(function() {

  // 這裡放你要執行的程式碼

});

 

你也可以這樣寫:

 

$(function() {  

  // 這裡放你要執行的程式碼

});

 

jQueryDOM ready event是等HTML DOM準備好就可以開始執行程式,不像一般常用的window.onload要連圖片、外部檔案等全部都下載完畢才會觸發onload事件。

 

摘自:http://webdesign.enjoyitsimply.com/jquery/

 

coolouis 發表在 痞客邦 留言(0) 人氣()

jCarousel Lite
Offers a multi-option carousel (slider)
http://www.gmarwaha.com/jquery/jcarousellite/
jcarousel-lite.jpg

 

CSS Globe Tooltip
Dead simple hover hints
http://cssglobe.com/post/1695/easiest-tooltip-and-image-preview-using-jquery
easy-tooltip.jpg

 

Cycle Lite
Rotates banners/images
http://malsup.com/jquery/cycle/lite/

cycle-lite.jpg 

jQuery Zoom

If you have designs where the details have a lot of importance, you should use this script to let your site’s visitors know that you don’t neglect details in your designs.

http://www.mind-projects.it/projects/jqzoom/

 jquery-zoom.jpg

Kwicks

Nifty little effect for menus, can also be used for other things if you are creative (and I am sure you are).

http://www.jeremymartin.name/projects.php?project=kwicks

kwicks.jpg  

jQuery Virtual Tour

If you are really proud of your studio, you can give a good feel of what it looks like with this virtual tour jQuery plugin.

http://www.openstudio.fr/jQuery-virtual-tour.html?lang=en

virtual-tour.jpg 

coolouis 發表在 痞客邦 留言(0) 人氣()

PHP Magic Constants: __LINE__ , __FILE__ , __FUNCTION__ , __CLASS__ , and __METHOD__

 

<?php

print(__FILE__);

// C:\xampp\htdocs\test\xx.php

 

print(__LINE__);

// line 5

 

sayHello();

$one = new Person();

 

function sayHello(){

        print(__FUNCTION__);

        // sayHello

}

 

class Person {

        function __construct() {

                print(__CLASS__);

                // Person          

                print(__METHOD__);

                // Person::__construct

        }

}

?>

coolouis 發表在 痞客邦 留言(0) 人氣()

The style property gives access to these inline styles, it will always overrule all other styles.

The general rule is that all dashes are removed from the CSS property names, and that the character after a dash becomes uppercase.

margin-left becomes marginLeft, text-decoration becomes textDecoration, and border-left-style becomes borderLeftStyle.

 

// Microsoft and W3C have created ways of accessing non-inline styles.

function getRealStyle(elt,styleName)

{

        var realStyle = null;

 

        if (elt.currentStyle)

                realStyle = elt.currentStyle[styleName];

        else if (window.getComputedStyle)

                realStyle = window.getComputedStyle(elt,null)[styleName];

 

        return realStyle;

}

 

coolouis 發表在 痞客邦 留言(0) 人氣()