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
; Paste Date/time stamp as YYYYMMDDHHMMSS hash (Ctrl ;) | |
^;:: Send, %A_Now% | |
return | |
; Paste personally preferred formatted date/time stamp (Ctrl Shift ;) | |
^+;:: | |
FormatTime,CurrentTime,%A_Now%,M/d/yyyy HH:mm:ss | |
Send, %CurrentTime% | |
return |
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
/*! normalize.css v2.1.3 | MIT License | git.io/normalize */ | |
/* ========================================================================== | |
HTML5 display definitions | |
========================================================================== */ | |
/** | |
* Correct `block` display not defined in IE 8/9. | |
*/ |
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
declare @TableName sysname = 'TableName' | |
declare @Result varchar(max) = 'public class ' + @TableName + ' | |
{' | |
select @Result = @Result + ' | |
public ' + ColumnType + NullableSign + ' ' + ColumnName + ' { get; set; } | |
' | |
from | |
( | |
select |
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
<?xml version="1.0" encoding="utf-8"?> | |
<packages> | |
<package id="vim" /> | |
<package id="atom" /> | |
<package id="vlc" /> | |
<package id="python2" /> | |
<package id="google-chrome-x64" /> | |
<package id="firefox" /> | |
<package id="clover" /> | |
<package id="adobereader" /> |