name | description | version | |
---|---|---|---|
change case | change the case of selected text | ||
dynaclip | basic web clipper for dynalist.io | ||
file properties | open properties for the selected file | 1.1 | |
google time range | 🔎 | switch between the various time ranges (hour, day, week, month, year) | |
goto open folder | 📂 | show a list of open folders when youre at a "save as" or "open" dialog | 1.3 |
lightshot+ | various improvements for the lightshot screenshot app | 0.4.1 | |
[linker](h |
This file contains hidden or 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
Array_Gui(Array, Parent="") { | |
if !Parent | |
{ | |
Gui, +HwndDefault | |
Gui, New, +HwndGuiArray +LabelGuiArray +Resize | |
Gui, Margin, 5, 5 | |
Gui, Add, TreeView, w300 h200 | |
Item := TV_Add("Array", 0, "+Expand") | |
Array_Gui(Array, Item) |
This file contains hidden or 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
/* 函数: RegExMatchAll | |
* 正则匹配所有结果,返回数组。 | |
* 用法: | |
* RegExMatchAll(Haystack, NeedleRegEx, SubPat="") | |
* 参数: | |
* Haystack - 被搜索的字符 | |
* NeedleRegEx - 正则表达式 | |
* SubPat - (可选) 获取子匹配N,而非整个匹配 | |
* 返回: | |
* 成功返回数组,失败返回空。 |
This file contains hidden or 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
; This is part of my AutoHotKey [1] script. When you are in Windows Explorer it | |
; allows you to press Alt+N and type a filename, and that file is created | |
; in the current directory and opened in the appropriate editor (usually | |
; [gVim](http://www.vim.org/) in my case, but it will use whatever program is | |
; associated with the file in Windows Explorer). | |
; This is much easier than the alternative that I have been using until now: | |
; Right click > New > Text file, delete default filename and extension (which | |
; isn't highlighted in Windows 7), type the filename, press enter twice. | |
; (Particularly for creating dot files like ".htaccess".) |
This file contains hidden or 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
; KeypressOSD.ahk | |
;-------------------------------------------------------------------------------------------------------------------------- | |
; ChangeLog : v2.22 (2017-02-25) - Now pressing same combination keys continuously more than 2 times, | |
; for example press Ctrl+V 3 times, will displayed as "Ctrl + v (3)" | |
; v2.21 (2017-02-24) - Fixed LWin/RWin not poping up start menu | |
; v2.20 (2017-02-24) - Added displaying continuous-pressed combination keys. | |
; e.g.: With CTRL key held down, pressing K and U continuously will shown as "Ctrl + k, u" | |
; v2.10 (2017-01-22) - Added ShowStickyModKeyCount option | |
; v2.09 (2017-01-22) - Added ShowModifierKeyCount option | |
; v2.08 (2017-01-19) - Fixed a bug |
This file contains hidden or 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
;------------------------------------------------------------------------------- | |
; Jake's AutoHotKey.ahk | |
; | |
; For Reference: | |
; | |
; Hotkey Modifiers | |
; # - Windows key | |
; ! - Alt | |
; ^ - Control | |
; + - Shift |
This file contains hidden or 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
node_modules | |
dist/ | |
yarn.lock | |
wwwroot |
This file contains hidden or 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
write-host "`n ## NODEJS INSTALLER ## `n" | |
### CONFIGURATION | |
# nodejs | |
$version = "4.4.7-x64" | |
$url = "https://nodejs.org/dist/latest-v4.x/node-v$version.msi" | |
# git | |
$git_version = "2.9.2" |