Skip to content

Instantly share code, notes, and snippets.

View msmick's full-sized avatar

Smickster msmick

View GitHub Profile
@msmick
msmick / Stylefile.yml
Created August 3, 2018 17:05
Customizations for smick.net via StyleURL.
---
version: 1.0
domains:
- smick.net
url_patterns:
- smick.net/*
timestamp: '2018-08-03T17:05:02Z'
id: 36Hp
redirect_url: http://smick.net/portfolio/
shared_via: StyleURL - (https://www.styleurl.app) import and export CSS changes from
@msmick
msmick / gist:6364475
Created August 28, 2013 10:14
autohotkey script for making middle mouse button drag the canvas in illustrator, emulating the spacebar action (simlar to many other software)
#IfWinActive ahk_class illustrator
MButton::
Send {Space Down}
Send {LButton Down}
KeyWait, MButton
Send {LButton Up}
Send {Space Up}
Return