Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am jorgemancheno on github.
  • I am jorgemancheno (https://keybase.io/jorgemancheno) on keybase.
  • I have a public key ASCMi58NwT4jor1n-Z0HdOC5q9JJF-cBbF2Wt5zc4BlJvwo

To claim this, I am signing this object:

@jorgemancheno
jorgemancheno / styles.less
Created February 28, 2014 03:32
My personal Atom style overrides
.tree-view .icon-file-directory {
font-weight: bold;
}
.editor .line,
.editor .line-number {
line-height: 1.5;
}
.editor .invisible-character,
.editor .indent-guide {
color: rgba(192,197,206,0.15);
@jorgemancheno
jorgemancheno / Puppetfile
Created June 13, 2013 21:09
My personal boxen Puppetfile
# This file manages Puppet module dependencies.
#
# It works a lot like Bundler. We provide some core modules by
# default. This ensures at least the ability to construct a basic
# environment.
def github(name, version, options = nil)
options ||= {}
options[:repo] ||= "boxen/puppet-#{name}"
mod name, version, :github_tarball => options[:repo]
@jorgemancheno
jorgemancheno / jorgemancheno.pp
Last active December 18, 2015 02:29
My personal boxen manifest.
class people::jorgemancheno {
# Applications
include adium
include appcleaner
include alfred
include better_touch_tools
include charles
include chrome::dev
include chrome::canary
include codekit
@jorgemancheno
jorgemancheno / gist:2595074
Created May 4, 2012 14:21
Helpful Regular Expressions
// Find jQuery Events
(\.(blur|change|(dbl)?click|error|focus(in|out)?|hover|key(down|press|up)|(un)?load|mouse(down|enter|leave|move|up)|ready|resize|scroll|select|submit|toggle)\()
// Find jQuery Handler Attachment Methods
(\.((un)?bind|(un)?delegate|die|live|off|on(e)?|trigger(Handler)?)\()