Skip to content

Instantly share code, notes, and snippets.

View silverjerk's full-sized avatar

Joey English silverjerk

View GitHub Profile
@silverjerk
silverjerk / .hyper.js
Last active January 12, 2024 01:29
Hyper Config File
// Future versions of Hyper may add additional config options,
// which will not automatically be merged into this file.
// See https://hyper.is#cfg for all currently supported options.
module.exports = {
config: {
// Choose either "stable" for receiving highly polished,
// or "canary" for less polished but more frequent updates
updateChannel: 'stable',
@silverjerk
silverjerk / gist:06b412eac62501048e4ac53e9d500b26
Last active November 16, 2017 22:52
Verbose Output (ansible)
➜ trellis ./bin/deploy.sh production firstamericanmerchant.com -vvv
ansible-playbook 2.4.0.0
config file = /Users/commonmind/Development/Sites/emb-fam/trellis/ansible.cfg
configured module search path = [u'/Users/commonmind/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules']
ansible python module location = /Library/Python/2.7/site-packages/ansible
executable location = /usr/local/bin/ansible-playbook
python version = 2.7.10 (default, Jul 15 2017, 17:16:57) [GCC 4.2.1 Compatible Apple LLVM 9.0.0 (clang-900.0.31)]
Using /Users/commonmind/Development/Sites/emb-fam/trellis/ansible.cfg as config file
Parsed /Users/commonmind/Development/Sites/emb-fam/trellis/hosts/development inventory source with ini plugin
Parsed /Users/commonmind/Development/Sites/emb-fam/trellis/hosts/production inventory source with ini plugin
<html>
<head>
<title>Checkbox</title>
<style>
input[type=checkbox] {
display:none;
}
input[type=checkbox] + label
{
//Cross browser CSS3 mixins
@mixin box-shadow($left, $top, $radius, $color) {
box-shadow: $left $top $radius $color;
-webkit-box-shadow: $left $top $radius $color;
-moz-box-shadow: $left $top $radius $color;
}
@mixin transition($property, $duration, $easing: linear) {
transition: $property $duration $easing;