Skip to content

Instantly share code, notes, and snippets.

View jmbeach's full-sized avatar
🏠

Jared Beach jmbeach

🏠
View GitHub Profile
@jmbeach
jmbeach / autohotkey_paste_date.ahk
Created June 24, 2016 14:24 — forked from JamoCA/autohotkey_paste_date.ahk
Autohotkey shortcuts to paste current date & time as either a 14 digit date hash (YYYYMMDDHHMMSS) or using formatting.
; 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
@jmbeach
jmbeach / github-pandoc.css
Created June 9, 2016 20:57 — forked from dashed/github-pandoc.css
GitHub-like CSS for pandoc standalone HTML files (perfect for HTML5 output). Based on Marked.app's GitHub CSS. Added normalize.css (v2.1.3) in the prior to GitHub css.
/*! normalize.css v2.1.3 | MIT License | git.io/normalize */
/* ==========================================================================
HTML5 display definitions
========================================================================== */
/**
* Correct `block` display not defined in IE 8/9.
*/
@jmbeach
jmbeach / Create model class
Created June 6, 2016 13:20 — forked from eternnoir/Createmodelclass.sql
Create model class
declare @TableName sysname = 'TableName'
declare @Result varchar(max) = 'public class ' + @TableName + '
{'
select @Result = @Result + '
public ' + ColumnType + NullableSign + ' ' + ColumnName + ' { get; set; }
'
from
(
select
@jmbeach
jmbeach / packages.config
Last active March 30, 2016 18:31 — forked from okhiroyuki/packages.config
Packages.Config of Chocolatey
<?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" />