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 | |
require_once("functions.php"); | |
class AIDatabase { | |
var $m_conn = 0; | |
var $m_query = 0; | |
// Constructor | |
function AIDatabase() {} |
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://sitcon.org/ | |
讓我們辦一個學生的Conf吧~ | |
一個以學生、資訊為主題的活動 | |
不限定學生參加,但是以學生為主軸 | |
這個社團,歡迎大家一起表達意見~ | |
如果有人沒興趣就按退出吧:D |
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
import codecs, itertools | |
decode = codecs.getdecoder('big5') | |
f = open('input.txt', 'r') | |
l = 8 # 8-byte decode block | |
L = 2 ** l # Use bit-flag to do permutations | |
d = f.read() | |
for pointer in range(0, len(d), l): | |
s = d[pointer:pointer+l] |
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
/* | |
* Author: Poren Chiang <[email protected]> | |
* 這程式會試圖清查所有未交割所有權的文件。 | |
*/ | |
var outputSheetId = "RS0123456789SITCONabcdefghijklmnopqrstuvwxyz"; // 輸出試算表的位置 | |
var rootFolderId = "SITCON2013abcdefghijklmnopqr"; // 根資料夾的位置 | |
var correctEmail = "[email protected]"; // 檔案正確的擁有者 | |
var closed = []; | |
var currentSheet; |
NewerOlder