Bingo Hits 賓果嘻打
賓果嘻打是一款線上和朋友一起玩的賓果遊戲。透過地理位置偵測,可以讓幾個人一起玩賓果。
至少要有兩個 iOS 裝置才可以一起玩。
1) 首先,先讓一個朋友點選「主持人建立遊戲」,建立遊戲室。
2) 接著,其他朋友點選「加入遊戲」,並選擇遊戲室。
3) 主持人將玩家加入遊戲室,完成後開始遊戲。
希望這個遊戲可以為朋友之間帶來更多樂趣。
array('屬性列表', '驗證器', ...其它設定選項);
boolean: CBooleanValidator, 布林值 true 或 false。
captcha: CCaptchaValidator, 圖形驗證碼。
compare: CCompareValidator, 判斷兩欄位的值是否相等。
email: CEmailValidator, 有效的 e-mail address。
date: CDateValidator, 有效的時間值。
default: CDefaultValueValidator, 是否為預設值。
exist: CExistValidator, 在資料表中是否已存在。
file: CFileValidator, 檔案欄位。
filter: CFilterValidator, 使用 filter 轉換。
in: CRangeValidator, 某範圍的值。
length: CStringValidator, 限定資料長度。
match: CRegularExpressionValidator, 符合某 regular expression。
numerical:CNumberValidator, 數值。
required: CRequiredValidator, 必填欄位。
type: CTypeValidator, 特定類型的資料。
unique: CUniqueValidator, 資料表中的唯一資料。
url: CUrlValidator, 有效的網址格式。
c:\wamp\www\yii-1.1.13\framework>yiic webapp .\..\..\yiitest01
'modules'=>array(
'gii'=>array(
'class'=>'system.gii.GiiModule',
'password'=>'密碼',
// If removed, Gii defaults to localhost only. Edit carefully to taste.
'ipFilters'=>array('127.0.0.1','::1'),
),
),
controllers\MessageController.php
views\message\hello.php
點按 "Generate" 按鈕,以產生檔案。http://localhost/yiitest01/index.php?r=message // 得到 404
http://localhost/yiitest01/index.php?r=message/hello // 得到正常頁面
class MessageController extends Controller
{
public function actionHello()
{
$this->render('hello');
}
}
public $defaultAction = 'hello';
$this // controller object
$this->id // controller id
$this->action->id // action id
echo CHtml::link('連結字串', array('控制器/動作')); // 顯示連結
var loaderContext:LoaderContext = new LoaderContext(false, ApplicationDomain.currentDomain, null);
loader.load( new URLRequest('app:/easy_draw.swf'), loaderContext );
SWF 裡的 AS 可以正常執行 (所有東西不用再包成一包 SWF 了, 泣...)const regularFontNames:String = "Heiti TC Light,Heiti SC Light,微軟正黑體,_sans";
.embedFonts = true;
改成.embedFonts = false;
yum install gcc-c++ make openssl-devel
yum install git
執行 .sh
curl https://raw.github.com/creationix/nvm/master/install.sh | sh
完成,重開 console 就可以開始使用 nvm
# ps -aux
停止某 process
# kill #pid
常駐 nodejs 程式可以使用 forevernpm install forever -g #全域安裝
forever start $js_path #開始執行程式
forever list #列出目前執行的程式訊息 (包含 log 檔路徑)
forever stop $id #停止執行程式,$id 為 forever 對程式的編號,由 0 開始
forever restart $id #重新執行程式
forever cleanlogs #清除所有 log