Skip to content
View joeyguerra's full-sized avatar
😀
chatting
😀
chatting

Sponsoring

@derailed

Organizations

@hubotio @hubot-friends
Block or Report

Block or report joeyguerra

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
joeyguerra/README.md

Hi there 👋 I'm Joey Guerra

  • 🔭 I’m currently working on ... startup business, workflow software for fixed appliance patients (Dental industry) & modernizing Hubot
  • 🌱 I’m currently learning ... Entrepreneurship
  • 👯 I’m looking to collaborate on ... Growing software engineers
  • 🤔 I’m looking for help with ... Finding problems I love
  • 💬 Ask me about ... Creating diverse teams, software engineering, solving buisiness problems, MVC, Reliability Engineering, distributed systems, agile software development and how you're not doing it
  • 📫 How to reach me: ... @joeyguerra@mastodon.social, in:joeyguerra
  • 😄 Pronouns: ... he/him
  • ⚡ Fun fact: ... I worked at NASA/JSC on International Space Station EVA hardware - module handrails, EVA helmet cams, saftey tethers, developed EVA workspace instructions
  • ⚡ Another fun fact: ... I pole vaulted for The University of Texas @ Austin 1991-1995 (17-4 1/2) 5.3 m

Pinned

  1. collagem collagem Public

    Creates a photo collage given a folder full of images.

    JavaScript 1

  2. Client side notification center. Pub... Client side notification center. Publsih/Subscribe implementation in Javascript.
    1
    (function(module){
    2
    	var observers = [];
    3
    	module.exports.notificationcenter = {
    4
    		publish: function(notification, publisher, info){
    5
    			var ubounds = observers.length;
  3. Schema.org microdata parser in Javas... Schema.org microdata parser in Javascript for the client side.
    1
    (function(win){
    2
    	/*
    3
    	Copied from https://github.com/foolip/microdatajs/blob/master/jquery.microdata.json.js
    4
    	without jQuery.
    5
    	*/
  4. devchitchat devchitchat Public

    Persistent chat room for devops collaboration.

    JavaScript 4 1

  5. Listen to Redis streams Listen to Redis streams
    1
    using StackExchange.Redis;
    2
    
                  
    3
    namespace Shipment;
    4
    
                  
    5
    public class StreamListener
  6. Debounce in javascript. Debounce in javascript.
    1
    import assert from 'assert';
    2
    describe('Debounce', ()=>{
    3
        it('When called super fast, then should only increment once', done=>{
    4
            const debounce = timer => (fn, timeout) => {
    5
                clearTimeout(timer);