Skip to content

Instantly share code, notes, and snippets.

@ClaytonFarr
ClaytonFarr / hubspot-product-playbook.md
Created February 26, 2024 15:47
HubSpot Product Playbook

Reddit/r/SideProject post

Someone reached out directly with question and personal experience about the still very present challenge of "how to get in front of HubSpot users…"

This problem (marketing/acquisition) has definitely earned the front spot of my mind too. Our team has moved at the outset from answering "can we do it?" to "who are the specific people that need this and where will we be able to reach them?" (and even even more importantly - "how can we confirm that first?")

I do think a targeted B2B marketplace, like HubSpot's, provides strong tailwinds to help solve marketing and acquisition (e.g. users with targeted needs, platform handing-off traffic directly from the main app, many needs don't have a lot of products directly competing yet [and even less that are differentiating through solid product and support work], etc.)

In case it's helpful to others - here's the playbook we've been work

@KidkArolis
KidkArolis / post.md
Last active November 17, 2020 11:21
Designing custom React hooks - sequencing of async effects

We've been building a hooks based REST API wrapper.

A specific use case discussed in this gist is – how do you close a modal after updating a remote resource completes succesfully?

Which of the following options seems best or is there a better approach altogether?

1. Async/Await

function EditNoteModal ({ id, onClose }) {
@swalkinshaw
swalkinshaw / tutorial.md
Last active November 13, 2023 08:40
Designing a GraphQL API
@julienbourdeau
julienbourdeau / wilson.php
Last active January 11, 2023 05:34
[PHP] 5 Star Rating - Lower bound of Wilson score confidence interval for a Bernoulli parameter
<?php
/*
|--------------------------------------------------------------------------
| 5 Star Rating
|--------------------------------------------------------------------------
|
| Lower bound of Wilson score confidence interval for a Bernoulli parameter (0.9604)
|
| See:
@lots0logs
lots0logs / child-theme-functions-php-snippet.php
Created May 2, 2016 22:55
WordPress :: Divi Builder :: Blog Module :: Sort Posts By Title
<?php
/* DON'T copy the first line (above) if your functions.php already has it.
* ---------------------------------------------------------------------- */
function my_et_theme_setup() {
if ( class_exists( 'ET_Builder_Module_Blog' ) ) {
get_template_part( 'my-main-modules' );
$et_pb_blog = new My_ET_Builder_Module_Blog();
remove_shortcode('et_pb_blog');
add_shortcode('et_pb_blog', array( $et_pb_blog, '_shortcode_callback' ) );