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
; Variables definition | |
; ----------------------------------------------------------------------------- | |
EnvGet, userProfile, USERPROFILE | |
Software := userProfile . "\Dropbox\software\" | |
; Launch or toggle program, http://lifehacker.com/5468862/create-a-shortcut-key-for-restoring-a-specific-window | |
; ----------------------------------------------------------------------------- | |
ToggleWinMinimize(WindowTitle) | |
{ | |
SetTitleMatchMode,2 |
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
VERSION BUILD=8820413 RECORDER=FX | |
'open a new tab | |
TAB OPEN | |
TAB T=2 | |
'goto online-editor and paste markdown from clipboard | |
URL GOTO=http://joncom.be/experiments/markdown-editor/edit/ | |
TAG POS=1 TYPE=TEXTAREA ATTR=TXT:Start<SP>typing<SP>in<SP>the<SP>blue<SP>box... CONTENT={{!CLIPBOARD}} |
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
@ECHO OFF | |
REM Lists/Deletes all duplicates in the active directory. | |
REM Uses: sfk.exe | SwissFileKnife | http://stahlworks.com/dev/swiss-file-knife.html | |
REM Configuration ++++++++++++++++++++ | |
SET FILE_EXT=txt | |
SET SEARCH_PATH=. | |
REM ---------------------------------- | |
ECHO. |
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
@echo off | |
sfk echo -spat "<html><body><pre>\n" >sfkhelp.html | |
sfk -html >>sfkhelp.html | |
sfk echo " " >>sfkhelp.html | |
call sub-make-html.bat filefind | |
call sub-make-html.bat alias | |
call sub-make-html.bat bin-to-src | |
call sub-make-html.bat color | |
call sub-make-html.bat crlf-to-lf | |
call sub-make-html.bat deblank |
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
VERSION BUILD=8820413 RECORDER=FX | |
'open a new tab | |
TAB OPEN | |
TAB T=2 | |
'goto online-editor, clear input and paste markdown from clipboard | |
URL GOTO=http://jrmoran.com/playground/markdown-live-editor/ | |
TAG POS=1 TYPE=BUTTON ATTR=ID:clear | |
TAG POS=1 TYPE=TEXTAREA ATTR=ID:wmd-input CONTENT={{!CLIPBOARD}} |
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
/* ahk script | |
+ source: <http://thegeekdaily.com/how-to-create-hotkey-to-showhide-desktop-icons-using-ahk-script/> | |
Do you have too many icons on your Desktop? | |
You always think of cleaning it up but they’re just TOO many filled all over your desktop. | |
So what would you do? Clean them by sorting out the most used | |
or just press a simple shortcut key (or Hotkey technically) to hide them when not needed | |
and again press the same hotkey to show them up. | |
Obviously, the second one (the lazy man’s hack). Right? |
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
//create namespace if not existing | |
var testProject = testProject || {}; | |
//create a "module" inside the namespace | |
// this is a so called "power constructor" | |
testProject.module = (function () { | |
'use strict'; | |
var that = {}; //create new base object or for inheritance use a "power constructor" or create a new object from a class to set the parent. | |
var privateElement = 10; |
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
// add our binaries path | |
env_set path = $(SYS.PATH);D:\Tools; |
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
cd $(CURRENT_DIRECTORY) | |
yaml2json.exe "$(FILE_NAME)" | |
//python yaml2json.py "$(FILE_NAME)" | |
npp_open "$(NAME_PART).json" |
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
yamllint -f parsable "$(FULL_CURRENT_PATH)" |
OlderNewer