Skip to content
View steven-miller's full-sized avatar

Block or report steven-miller

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 Loading

  1. hubspot-cpq-extension-example hubspot-cpq-extension-example Public

    WIP of a React UI extension for HubSpot, demoing various possible CPQ functionalities

    JavaScript 1 1

  2. hubspot-workflow-auditor hubspot-workflow-auditor Public

    Learn what your workflows are up to

    JavaScript

  3. HubSpot Programmable Automation: Ret... HubSpot Programmable Automation: Retrieve Order Address from BigCommerce based on Order ID
    1
    /*
    2
    SETUP:
    3
    This must be in an "Orders" workflow
    4
    Inputs: hs_order_name = Name
    5
    Output: shipping_street_address (String)
  4. Time-based page view tracker in HubS... Time-based page view tracker in HubSpot - can be added as a custom module and then can filter on custom events
    1
    <script>
    2
    $(document).ready(function() {
    3
      // verbose: get current unix datetime - outputs in MS
    4
      var dateNow = Date.now();
    5
    
                  
  5. Gmail Promotions markup in a customi... Gmail Promotions markup in a customizable HubSpot module
    1
    <div itemscope itemtype="http://schema.org/Organization">
    2
       <meta itemprop="name" content="{{ module.organization_name }}" />
    3
       <meta itemprop="logo" content="{{ module.small_logo }}" />
    4
    </div>
    5
    <div itemscope itemtype="http://schema.org/DiscountOffer">
  6. Time-based HubSpot Chatbot rotation ... Time-based HubSpot Chatbot rotation code
    1
    exports.main = (event, callback) => {
    2
      // get current time in unix
    3
      const now = new Date();
    4
    	const hourOfDayInUTC = now.getUTCHours();
    5
      const day = now.getDay(); // use this to check whether it's the weekend