簡介
- ff13-2裡面有個時鐘小遊戲,影片參考。
- 說穿了就是一個排列組合遊戲,比起其他小遊戲這個難度高很多,所以網路上有一些人寫了程式專門解這個小遊戲。其實有很多解答版本,但是都不太好用,UI也…。乾脆自己寫一個!
- 有參考某個flash實做,不過我用純html5+js實現。js核心是jquery1.7.1,框架是javascriptMVC。
命名
Chromie = 克羅米
克羅米是魔獸世界WoW中擁有時間穿梭能力的種族-青銅龍族中的一員。 克羅米@wow wiki
克羅米是魔獸世界WoW中擁有時間穿梭能力的種族-青銅龍族中的一員。 克羅米@wow wiki
1
|
|
不行。你應該用controller去更新view。
1 2 3 4 5 6 7 |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
|
Rhino javascript debugger一直有一段敘述過不了
1
|
|
可是明明真實的瀏覽器跑起來都正常運作,用jsfiddle的jslint看也沒問題:
用online jslint看, 突然想起來final好像是js保留字不能直接拿來當key, 實際上會因為瀏覽器有沒有處理而定。
steal is a function that loads scripts, css, and other resources into your application.
steal(FILE_or_FUNCTION, ...)
Add a script tag that loadssteal/steal.js
and add the path to the first file to load in the query string like:
<script type=‘text/javascript’
src='../steal/steal.js?myapp/myapp.js'>
</script>
title: “[git] 心得(1) Submodule, Bitbucker” date: 2012-02-15 23:32 comments: true
偶然間發現這個github的競爭者Bitbucker推出了無限免費私有倉庫+無限硬碟空間,
origin/master 於是有了一個想法:把不能說得project放到bitbucker,把好玩的open source放在github,兩者透過submodule互通! 畢竟工作上要用到大量的open source project,每次更新都要cp實在很累人。 在大部分專案都在github,而且他的介面也真的很好用的狀況下,在github上開repo還是有必要得! 而且還要能夠隨時跟原作者的repo同步!
要達成這個目的還是得先了解一下submodule的用法, 以下是學到的事情。
cd my_existing_repo
git add submodule git@github.com:alivedise/lab.git
git submodule init #啟動submodule
git submodule update #把submodule內容抓回本地端
git commit -a -m 'commited with submodule lab added!' #commit submodule的設定回自己的git remote
git submodule update
#確認是你想要得內容
git commit -a -m 'commited with submodule lab updated.' #commit submodule新的版本號回去自己的git remote
我的作法:直接fork回自己的repo,將submodule重新指向自己的repo,自己來維護這份repo。
很簡單,利用add remote->fetch->merge->commit
cd my_forked_submodule
git add remote upstream git@github.com:alivedise/lab.git
git fetch upstream
git merge origin master
在ubuntu上架設octopress環境的懶人包:
略過
apt-get install libssl-dev
apt-get install libtool
sudo apt-get install libyaml-0-2 libyaml-dev
bash -s stable < <(curl -s https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer) echo ‘[[ -s “$HOME/.rvm/scripts/rvm” ]] && . “$HOME/.rvm/scripts/rvm” # Load RVM function’ >> ~/.bash_profile source ~/.bash_profile rvm pkg install openssl rvm pkg install iconv rvm install 1.9.2 -C —with-openssl-dir=$HOME/.rvm/usr,—with-iconv-dir=$HOME/.rvm/usr rvm rubygems latest rvm use 1.9.2 —default rvm reload gem install bundler
git clone git://github.com/imathis/octopress.git octopress cd octopress yes bundle install rake setup_github_pages git@github.com:alivedise/alivedise.github.com.git git pull
完成!
(https://github.com/tpope/vim-pathogen)
html原生tooltip(title屬性)顯示多行的方法:
1
|
|
殘念得是很難得的firefox有bug,多行會變成空白字元…. IE跟Chrome是正常的。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
|
1 2 3 4 5 6 |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
|