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
/* Bare minimum styling to get ball rolling: */ | |
.accordionism > div > input[type="radio"], | |
.accordionism > div > input[type="checkbox"] { display: none; } | |
.accordionism > div > label { | |
position: relative; | |
display: block; | |
cursor: pointer; | |
cursor: hand; | |
} | |
.accordionism > div > label:after { |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
// ==UserScript== | |
// @name Gmail Font Size Changer | |
// @namespace http://mky.io | |
// @include https://mail.google.com/mail* | |
// @description Make Gmail font size larger because it sucks by default. | |
// @grant none | |
// @version 201607282 | |
// ==/UserScript== | |
(function() { |
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
let commands = {}; | |
commands['make title text with drop shadow'] = ` | |
convert \ | |
-background none \ | |
-font "Roboto Condensed/RobotoCondensed-Regular.ttf" \ | |
-pointsize 500 \ | |
-gravity Center \ | |
-interline-spacing -30 \ | |
-bordercolor none \ | |
-strokewidth 16 \ |
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
/*#slideshow { display: none; } | |
@media (min-width: 48em) { */ | |
#slideshow { | |
display: block; | |
background-position: center top; | |
background-repeat: no-repeat; | |
-webkit-background-size: cover; | |
-khtml-background-size: cover; | |
-moz-background-size: cover; | |
-ms-background-size: cover; |
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
.indent-guide-improved { | |
background-color: fade(white, 5%); | |
&.indent-guide-stack { | |
background-color: fade(cyan, 20%); | |
&.indent-guide-active { | |
background-color: fade(yellow, 20%); | |
} | |
} | |
} |
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
#!/usr/bin/env bash | |
function init() { | |
dlxsl && transform | |
} | |
function dlxsl() { | |
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
// http://callmenick.com/post/slide-and-push-menus-with-css3-transitions | |
(function(window) { | |
'use strict'; | |
/** | |
* Extend Object helper function. | |
*/ | |
function extend(a, b) { |
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
#!/usr/bin/env bash | |
open -b com.adobe.illustrator /Users/mhulse/github/mhulse/test/test.jsx | |
echo 'Done!' | |
exit 0 |
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
#target illustrator | |
alert('OMG'); |