Currently browsing tag

Programming, Page 2

原來NSLog();那麼好用

1 2 NSDictionary *playerInfo = [aNotification userInfo]; NSLog(@"%@", playerInfo);NSDictionary *playerInfo = [aNotification userInfo]; NSLog(@"%@", playerInfo); 我很好奇這個 NSDictionary 裡面裝了什麼膏藥? 就用NSLog幫忙揭開神祕的面紗 : Album = …

NSThread sleep

1 2 3 4 5 6 7 8 9 10 11 12 13 14 int main(int argc, char *argv[]) { [NSThread detachNewThreadSelector:@selector(checkiTunesStatus) …

使用 php 執行 system command

下面這個. 會把輸出儲存在$output 1 2 $cmd = "ls -l"; $output = shell_exec($cmd);$cmd = "ls -l"; $output = shell_exec($cmd); 還有另外一種作法用 system function . 這個在執行過程就會直接顯示出來. …

使用 php 產生 openldap sha 密碼 hash

Using php to create openldap sha password hash 應該很少有人有這樣的需求. 不過我就是有. 下面程式可以讓你產生 ldap sha 密碼 hash : 1 2 $passwd = "TOP_SECRET"; $ldap_passwd …

少用到的 html 標記.你也許需要知道!

Codes : <label for=”breakfast”>早餐</label> <select id=”breakfast” name=”breakfast”> <optgroup label=”中式”></optgroup> <option value=”c1″>饅頭</option> <option value=”c2″>燒餅</option> <option value=”c3″>油條</option>       <optgroup label=”西式”></optgroup> <option value=”w1″>鬆餅</option> <option value=”w2″>漢堡</option> <option value=”w3″>薯條</option> …