新增 Notepad2 至右鍵選單

HKEY_CLASSES_ROOT\*\shell\Notepad2
HKEY_CLASSES_ROOT\*\shell\Notepad2\Command
預設值:"C:\Program Files\Notepad2\Notepad2.exe" "%1"

Add Notepad2 to Windows Vista or XP Right Click Context Menu » My Digital Life

[FireGestures] Resize Browser

if (FireGestures.API_resizeWindow === undefined) {
  FireGestures.API_resizeWindow = function(w, h) {
    window.resizeTo(w, h);
    window.screenX = 0;
    window.screenY = 0;
    this.setStatusText("Resized the window to " + w + " x " + h);
    this.clearStatusText(3000);
  };
}

var currentWidth = window.outerWidth;
var currentHeight = window.outerHeight;

FireGestures.generatePopup(event,
  [
    { label: "640 x 480",  oncommand: "this.API_resizeWindow(640, 480);",  type: "radio", checked: (currentWidth == 640 && currentHeight == 480) },
    { label: "800 x 600",  oncommand: "this.API_resizeWindow(800, 600);",  type: "radio", checked: (currentWidth == 800 && currentHeight == 600) },
    { label: "1024 x 768", oncommand: "this.API_resizeWindow(1024, 768);", type: "radio", checked: (currentWidth == 1024 && currentHeight == 768) },
    { label: "1280 x 1024", oncommand: "this.API_resizeWindow(1280, 1024);", type: "radio", checked: (currentWidth == 1280 && currentHeight == 1024) }
  ]
);

FireGestures :: Make Scripts
FireGestures :: Get Scripts -> [Popup] Resize Window

雙重逸出序列

錯誤摘要

HTTP 錯誤 404.11 - Not Found

要求篩選模組設定為拒絕包含雙重逸出序列的要求。


解法:
  1. 要求篩選
  2. 編輯功能設定...
  3. 勾選「允許雙重逸出」

設定 IIS 7 中的要求篩選

MIME (Multipurpose Internet Mail Extensions)

7z | application/x-7z-compressed
ts | video/mp2t
tp | video/mp2t
torrent | application/x-bittorrent
kml | application/vnd.google-earth.kml+xml

7z - Wikipedia, the free encyclopedia

Windows 7 傳送到 (Send To)

%APPDATA%/Microsoft/Windows/SendTo
Windows 7加入滑鼠右鍵的快捷列「Send To..(傳送到)」 - MIS2000 Lab.的 ASP.NET 4.0 專題實務/教學與分享- 點部落

關閉Windows 7的自動播放功能

方法一:
  1. gpedit.msc
  2. 電腦設定 → 系統管理範本 → Windows元件 → 自動播放原則
  3. 關閉自動播放 → 已啟用,停用自動播放在:所有磁碟機
  4. AutoRun的預設行為 → 已啟用,預設AutoRun行為:不執行任何AutoRun命令
方法二:
  1. 控制台
  2. 自動播放
  3. 取消勾選「所有媒體與裝置都使用自動播放功能」

教您如何關閉Windows 7的自動播放功能 « 甲胖 ~ 生活+樂趣=意義
開/關「自動播放」由你做主 - 小7聚樂部

Firefox Shortcut

Command : Find As You Type Link
Shortcut : '

Command : Bookmark All Tabs
Shortcut : Ctrl + Shift + D

Command : Add-ons
Shortcut : Ctrl + Shift + A

Keyboard shortcuts | How to | Firefox Help

FORFILES

FORFILES [/P pathname] [/M searchmask] [/S]
         [/C command] [/D [+ | -] {yyyy/MM/dd | dd}]

描述:
    選取一個檔案 (或一組檔案),並在檔案上
    執行命令。這對批次工作很有幫助。

參數清單:
    /P    pathname      表示要開始搜尋的路徑。
                        預設資料夾是目前的
                        目錄 (.)。

    /M    searchmask    根據 searchmask 搜尋檔案。
                        預設的 searchmask 是 '*'。

    /S                  指示 forfiles 遞迴搜尋
                        子目錄。例如 "DIR /S"。

    /C    command       表示每個檔案要執行的命令。
                        命令字串應該包含在雙括號
                        之間。

                        預設的命令是 "cmd /c echo @file"。

                        下列變數可以使用於命令字串:

                        @file    - 傳回檔案的名稱。
                        @fname   - 只傳回檔案的名稱,
                                   不傳回副檔名。
                        @ext     - 只傳回檔案的
                                   副檔名。
                        @path    - 傳回檔案的完整路徑。
                        @relpath - 傳回檔案的相對
                                   路徑。
                        @isdir   - 如果檔案類型是目錄的話,
                                   傳回 "TRUE",如果是檔案
                                   的話,傳回 "FALSE"。
                        @fsize   - 傳回檔案的大小,
                                   單位是位元組。
                        @fdate   - 傳回檔案上次修改的
                                   日期。
                        @ftime   - 傳回檔案上次修改
                                   的時間。

                        要在命令列中包含特殊字元的話,
                        請使用 0xHH 格式的十六
                        進位字元碼 (例如 0x09 代表 tab)。
                        內部的 CMD.exe 命令應該
                        以 "cmd /c" 執行。

    /D    date          選取檔案上次修改的時間大於或
                        等於 (+) 、小於或等於 (-),
                        使用 "yyyy/MM/dd" 格式指定的日期;
                        或選取檔案上次修改
                        的時間大於或等於 (+)
                        目前的日期再加上 "dd" 天、
                        小於或等於 (-) 目前的日期減去 "dd" 天。
                        有效的 "dd" 可以是介於
                        0 - 32768 之間的數字。
                        如果未指定,"+" 將被視為預設符號。

    /?                  顯示這個說明訊息。

範例:
    FORFILES /?
    FORFILES 
    FORFILES /P C:\WINDOWS /S /M DNS*.*
    FORFILES /S /M *.txt /C "cmd /c type @file | more"
    FORFILES /P C:\ /S /M *.bat
    FORFILES /D -30 /M *.exe
             /C "cmd /c echo @path 0x09 was changed 30 days ago"
    FORFILES /D 2001/01/01
             /C "cmd /c echo @fname is new since Jan 1st 2001"
    FORFILES /D +2011/3/10 /C "cmd /c echo @fname is new today"
    FORFILES /M *.exe /D +1
    FORFILES /S /M *.doc /C "cmd /c echo @fsize"
    FORFILES /M *.txt /C "cmd /c if @isdir==FALSE notepad.exe @file"

在 Windows Server 2008 設定單一帳戶關閉多重遠端登入的方法

  1. gpedit.msc
  2. 電腦設定 / 系統管理範本 / Windows 元件 / 終端機服務 / 終端機伺服器 / 連線
  3. 限制終端機服務的使用者只能使用一個遠端工作階段 => 已啟用

The Will Will Web | 在 Windows Server 2008 設定單一帳戶多重遠端登入的方法

AutoPagerize DOM Event

window.addEventListener("AutoPagerize_DOMNodeInserted",function(){alert('Hi');},false);
AutoPagerize for Greasemonkey
相關文章:
M01 Auto Page Fix Img
Atuo TongWen

Atuo TongWen

4shared.com skip

// ==UserScript==
// @name           4shared
// @description    自動抓取下載連結
// @include        http://www.4shared.com/get/*
// @include        http://www.4shared.com/audio/*
// @include        http://www.4shared.com/file/*
// ==/UserScript==
if (document.getElementsByClassName('dbtn')[0]) location.assign(document.getElementsByClassName('dbtn')[0].href);
if (document.querySelector('#divDLStart a')) prompt('Download Link:',document.querySelector('#divDLStart a').href);