Skip to main content

Posts

【通靈少女 The Teenage Psychic】 #1

CASE 1-她與Alice 「這是我第八百次翹課,不是去逛街看電影,而是去廟裡幫忙通靈,金老師總說,我這叫做帶天命,注定要侍奉神明、普渡眾生,聽起來很怪嗎?我叫謝雅真,這就是我16歲的日常」 若有更新將以evernote為準: http://www.evernote.com/l/ABGMFlH-DalCSI8tY6CMCQcL_6-OnIgbBJ4/
Recent posts

【刀劍神域】第二集 Beater

Beater:beta測試者 + cheater(指鑽遊戲漏洞的玩家)

【筆記】Git指令

Working Directory git stash save:當改code改到一半還不想commit,卻又要跳到別的工作狀態或分支的情況下,可以先將目前狀況儲藏(stash)下來 git stash apply:把最後一次的stash狀態還原出來用,使用後記得還要另外手動刪除 git stash drop:刪除最後一次的stash git stash list:查看stash清單 git add <file_name> Staging Area git rm --cached <file_name>:把檔案從stage撤下 git commit git commit -m <message>:commit並加上訊息,如git commit -m "add xxx file" git reset HEAD^: 想修改已commit的檔案,使用該指令取消最後一次commit (soft),把檔案拿回來繼續編輯 git reset HEAD^ --hard: 想修改已commit的檔案,使用該指令取消最後一次commit (hard) Repository git commit --amend:修改最後一次commit內容,如果之前有git add,那些檔案也會併入該次commit,而 不會新增提交次數 git commit --amend -m <message>:修改最後一次commit,如果之前有git add,那些檔案也會併入該次commit,-m後面加上要寫的message git log -p <file_name> : 查看單一檔案的歷史紀錄,每次commit與前一版本新增\刪除的部分 git blame <file_name> : 查看檔案每一行文字最近更動的提交編號 git checkout <file_name> : 讓檔案或目錄回到最近一次commit的狀態 git checkout .:讓當前目錄回到最近一次commit的狀態 分支 git branch:檢視分支 git branch -v:檢視各分支

【Android App】Android 6.0 藍芽搜尋無法獲得任何結果

Q: Android 6.0 (API level 23) BT、BLE搜尋無法獲得任何結果? A: Android 6.0下,使用BT、BLE硬體裝置時需加入ACCESS_FINE_LOCATION或ACCESS_COARSE_LOCATION權限,另外在進行BLE掃描的時候,要提示使用者將GPS開啟。 參考: https://developer.android.com/about/versions/marshmallow/android-6.0-changes.html#behavior-hardware-id http://stackoverflow.com/questions/33043582/bluetooth-low-energy-startscan-on-android-6-0-does-not-find-devices 這封郵件來自 Evernote。Evernote 是您專屬的工作空間, 免費下載 Evernote

【有聲書】Aladdin and The Wonderful Lamp

Aladdin and The Wonderful Lamp  From The Arabian Night's Entertainment Vocabulary brass:黃銅 rub :摩擦、搓揉 grant :(通常指官方)同意,准予,授予 bathhouse :澡堂 bride :(準)新娘 bridegroom :(準)新郎 servant :(尤指舊時的)傭人,僕人/公務員、公僕 Chapter 1 The Evil Magician A long time ago, there lived a lazy boy named Aladdin. He would play with his friends all day long. Aladdin's mother was upset about her son. She would cry and pray. She wanted her son to change his behavior. However, Aladdin never changed. One day, a man came to Aladdin and asked, "Are you Mustapha's son?" "I am," answered Aladdin. "But he died long ago." The stranger kissed Aladdin when he heard this. He said, "I am your uncle. I thought you might look like my brother. Go home, and tell your mother that I am coming." Aladdin ran home and told his mother. "Yes, your father had a brother," his mother said. "But I thought he was

【CSS筆記】Position屬性

學習CSS Position各項屬性的筆記以及可以簡單操作的練習網頁。 top, bottom, left and right 已設定position屬性的物件,才可以使用left: 100px;, top: 200px;等語法來設定搭配的數值 position: static; 預設的position屬性為static,不做特別的排列,僅將物件以程式碼中的順序列出 Try it yourself-Position Static position: relative; 讓物件移動到相對於預設位置的地方,此處top, bottom, left and right設定的是相對於預設位置的margin量 Try it yourself - Position Relative position: absolute; 讓物件為在相對於最近新增且已定位 (Positioned) 之物件的位置,已定位物件是指已 設定除static外之position屬性的物件 Try it yourself - Position Absolute position: fixed; fix to the relative position to the browser window,物件會待在相對於瀏覽器畫面中的某固定位置如右下角(bottom:0; right:0;),此時網頁不管捲動到哪,該物件都會保持在右下角的位置 Try it yourself - Position Fixed 控制物件上/下層,使用z-index 兩個已定位(Positioned)物件,可以使用z-index來設定誰在上層誰在下層,z-index數值越大的越上層,背景圖片可以使用負值確保位在最底層 Try it yourself - z-index 延伸閱讀: http://www.w3schools.com/css/css_positioning.asp