Skip to content
View brunohq's full-sized avatar
Block or Report

Block or report brunohq

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

Pinned

  1. hunters-network hunters-network Public

    Find the top Product Hunters in your Twitter Network

    Ruby 1

  2. lunice lunice Public

    Simple URL Shortner and URL Click Tracking tool in Rails 4 and Postgres

    Ruby 1

  3. go2dir go2dir Public

    go2dir is a shorcut manager to speed up your command line cding

    Ruby 5

  4. coolteam coolteam Public

    Ruby

  5. git post-commit hook to update refer... git post-commit hook to update referenced task status in Asana with commit message
    1
    #!/bin/bash
    2
    
                  
    3
    apikey=$(git config user.asana-key)
    4
    if [ $apikey == '' ] ; then exit 0; fi
    5
    comment=$(git log --pretty=oneline -n1)
  6. Bookmarklet to trigger a Zapier Webh... Bookmarklet to trigger a Zapier Webhook from any web age. The title and url of the current webpage go as parameters.
    1
    javascript:(function()
    2
    {
    3
      var iframe   = document.createElement('iframe');
    4
      iframe.name  = 'response';
    5
      iframe.style.visibility = 'hidden';