-
ArandR
螢幕解析度 / 多螢幕配置 方便的 GUI 工具 -
Cheese
簡易 Camera 軟體 -
Comix
看漫畫,可讀壓縮檔,還不是很滿意
This file contains 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
<!DOCTYPE html> | |
<html lang="zh-TW"> | |
<head> | |
<meta charset="UTF-8"> | |
<title></title> | |
<style> | |
@media projection, screen, print{ | |
body{ | |
margin: 0; | |
font: 2em/1.3 Palatino, 'Palatino Linotype'; |
This file contains 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
/* | |
* https://github.com/h5bp/html5-boilerplate/issues/1005 | |
* image-replace | |
*/ | |
.ir { | |
text-indent: 100%; | |
white-space: nowrap; | |
overflow: hidden; | |
} |
This file contains 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
/* | |
just highlight .selector-matches~ | |
screenshot: http://i.imgur.com/Do3BDTQ.png | |
ref: http://www.lostsaloon.com/technology/using-a-custom-stylesheet-in-a-web-browser/ | |
css file located on: | |
Mac: ~/Library/Application Support/Google/Chrome/Default/User StyleSheets/Custom.css | |
PC: C:\Users\[USER NAME]\AppData\Local\Google\Chrome\User Data\Default\User StyleSheets\Custom.css | |
Ubuntu (Chromium): ~/.config/chromium/Default/User StyleSheets/Custom.css | |
(Google Chrome): ~/.config/google-chrome/Default/User StyleSheets/Custom.css |
This file contains 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
HTML5 Cookbook 書摘 | |
||| HTML5 Cookbook 書摘 | |
||| author: Kuro Hsu @ Facebook (that is NOT me) | |
||| original llnk: https://www.facebook.com/notes/kuro-hsu/html5-cookbook-%E6%9B%B8%E6%91%98/4428690773834 | |
- 基本語法 & 語意 |
This file contains 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
; new mouse: microsoft comfort 6000, | |
; custom side-button behavior by autohotkey, | |
; => helpful for browser webpage (FB/blog/news) | |
XButton1::Send {PgDn} | |
XButton2::Send {PgUp} | |
~LButton & XButton2::Send {Home} | |
~LButton & XButton1::Send {End} |
This file contains 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
# gif > png8 | |
@echo off | |
set CONVERT=D:\Software\PIC\ImageMagick-6.8.3-6\convert.exe | |
for %%a in (%*) do ( | |
dir /a %%a|findstr "DIR" >nul 2>nul && ( | |
"%CONVERT%" %%a "%%~dpna.png\*" | |
) || ( | |
"%CONVERT%" %%a "%%~dpna.png" | |
) | |
) |
This file contains 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
// escape unsafety chart | |
// via: http://stackoverflow.com/a/12034334 | |
window.entityMap = { | |
'<': '<', | |
'>': '>', | |
'"': '"', | |
'\'': ''', | |
'/': '/' | |
}; |
OlderNewer