Skip to content

Instantly share code, notes, and snippets.

View maccman's full-sized avatar
🦞
gpu poor

Alex MacClaw maccman

🦞
gpu poor
View GitHub Profile
import React, { Component } from 'react';
export default class DefaultImage extends Component {
state = {
error: null
}
onError = (error) => {
this.setState({error});
}

Sales candidate:

Description:

You'd be an integral part of a small, but experienced, sales team and would be responsible on day 1 for closing deals, creating & implementing growth strategy, having a keen eye for product and market opportunity, and ensuring customers are successful. Competitive base & variable comp.

Requirements:

  • 2-4 yrs experience in customer facing role (ex. sales, sales engineering, account management), preferably at B2B startup. If in sales, has been in closing role before. If not previously in sales, has desire to get into sales role.
  • Work out of SF office everyday.|

Keybase proof

I hereby claim:

  • I am maccman on github.
  • I am maccman (https://keybase.io/maccman) on keybase.
  • I have a public key ASBW2l7Vjcl9iw1Q8voOYhUKRsWGM0BrfIbpwr7uGaFIkQo

To claim this, I am signing this object:

@maccman
maccman / show.erb
Created December 26, 2016 23:37
Clearbit Reveal/Drift integration
drift.on('ready',function(api, payload) {
api.showWelcomeOrAwayMessage(<%== @options.to_json %>);
});

To install Clearbit Connect for Google Inbox, follow the instructions below:

  1. Install the Chrome extension
  2. Navigate to https://inbox.google.com
  3. Paste the following into the URL bar. Note that Chrome may remove the javascript: prefix when pasting - make sure to add it back in.

javascript:(localStorage.CB_INBOXBETA = true) && location.reload()

It should look like this:

@maccman
maccman / batch_request.csv
Last active August 4, 2021 22:20
Clearbit Batch Example
email
alex@clearbit.com
@maccman
maccman / user_signup.rb
Created February 25, 2016 18:48
Clearbit & Customer.io integration
class UserSignup
# We're using a job queuing service called Sidekiq
# so that signups are processed and pushed to
# customer.io asyncronously.
include Sidekiq::Worker
attr_reader :user, :lookup
def perform(user_id)
# Find the user by ID
@maccman
maccman / technologies.md
Last active August 29, 2015 14:24
Clearbit Tech Detect

Clearbit Tech Detect

Clearbit indexes the following technologies:

Name Type
Google Widgets google_widgets
Twitter Badge twitter_badge
Google Analytics google_analytics
Omniture Adobe Analytics omniture_adobe_analytics
@maccman
maccman / changelog.md
Last active August 29, 2015 14:21
Clearbit API Changelog

Clearbit API versions

Your API version controls the API and webhook behavior you see (e.g. what properties you see in responses, what parameters you’re permitted to send in requests, etc.). Your version gets set the first time you make an API request. When we change any of our APIs in a backwards-incompatible way, we release a new dated version, but to avoid breaking your code, we don’t change your version until you're ready to upgrade.

How can I upgrade versions?

Each of Clearbit's APIs is versioned separately. You can set the API version on a per-request basis, or globally in your dashboard. It's a good idea to keep the API version you're using up to date - we're often pushing shiny new data attributes.

API changelog

module PersonHub
module Extensions
module Version extend self
CURRENT_API_VERSION = '2015-04-30'
def registered(app)
app.set(:version) do |value|
condition { request_api_version >= value }
end