Skip to content

Instantly share code, notes, and snippets.

View eddiemonge's full-sized avatar

Eddie Monge Jr eddiemonge

View GitHub Profile

Dear Recruiter or Hopeful Employer,

I'm going to be frank.

I don't have the time or energy to have a phone chat with every recruiter who contacts me. If you want to know about me, such as if I'm worth pursuing, I can answer any questions you have via email. I will only talk on the phone to the employees of the prospective company.

That said, here's the answer to most questions:

  • Are you looking for a new job?
    Not really, unless it meets my specific criteria.
Yeoman is a mask worn by the following members of the open-source community:
Paul Irish, Addy Osmani, Mickael Daniel, Sindre Sorhus, Eric Bidelman,
Frederick Ros, Brian Ford, Pascal Hartig, Stephen Sawchuk, and countless
other contributors.
[?] What would you like to do? Run the Webapp generator (0.4.2)
Before you create a new application, be sure you are in the directory you
wish your application to be dropped into.
angular.module('filterHelper', []);
angular.module('filterHelper').filter('bytes', function() {
return function(bytes, precision) {
var parsedBytes = parseFloat(bytes);
if (isNaN(parsedBytes) || !isFinite(bytes)) {
return '--';
}
@eddiemonge
eddiemonge / cipr.sh
Created October 16, 2012 19:02 — forked from kswedberg/cipr.sh
alias for git commit line merging head -1
alias cipr="git log -1 --pretty=format:'git commit -a --author="'"%an <%aE>" --message="%s %b"'"'"
@eddiemonge
eddiemonge / sass_converter.rb
Created November 7, 2011 03:34 — forked from wolfeidau/sass_converter.rb
Sass plugin for Jekyll
module Jekyll
# Sass plugin to convert .scss to .css
#
# Note: This is configured to use the new css like syntax available in sass.
require 'sass'
class SassConverter < Converter
safe true
priority :low
def matches(ext)