This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // http://game.ioxapp.com/color/ | |
| function fa($obj) { | |
| $obj.click(); | |
| } | |
| setInterval(function(){ | |
| var $target = [], bgcolor = []; | |
| $("#box span").each(function(i){ | |
| switch($target.length) { | |
| case 0: // 初始狀態 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class Progress_bar | |
| { | |
| private $max = 1; | |
| private $cnt = 0; | |
| private $molecular = 0; // 分子 | |
| private $ng; // 下一個目標 | |
| private $clear_line = " \r"; | |
| public $printFormat; |
from sys import stdin
import collections
len1, len2 = [ int(_) for _ in stdin.readline().split(' ')]
len1 -= 1
填表網址:http://goo.gl/forms/qaXu7OQmsl
請問 Bootstrap 的 Grid System 把寬度分成多少等分?把螢幕寬度分成多少個等級?
- 分成
12等分、分成4個等級。 - 分成
10等分、分成4個等級。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo off | |
| timeout 3 | |
| start /b "" "D:\Program Files (x86)\putty\PAGEANT.exe" ssh-key-path1 [ssh-key-path2 ...] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| // supported encoding list, name & code in pair | |
| "encoding_list" : [ | |
| // ["Chinese Simplified (GBK)", "GBK"], | |
| // ["Chinese Traditional (BIG5)", "BIG5"], | |
| // ["Korean (EUC-KR)", "EUC-KR"], | |
| // ["Japanese (CP932)", "CP932"], | |
| // ["Japanese (Shift_JIS)", "Shift_JIS"], | |
| // ["Japanese (EUC-JP)", "EUC-JP"], | |
| // ["UTF-8", "UTF-8"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /* | |
| @author taichunmin <[email protected]> | |
| @program Send Taiwan Mobile SMS by https://messaging.taiwanmobile.com/ | |
| @version 2013.03.29 taichunmin | |
| 這個程式只是暫時寫到【能夠執行】的程度,錯誤處理還沒有處理得很好。 | |
| 有些流程可能有些不順,等有動力再來更新吧。 | |
| */ | |
| @header("Content-type:text/html; charset=utf-8"); | |
| date_default_timezone_set('Asia/Taipei'); |