Skip to content

Instantly share code, notes, and snippets.

View jonhilgart22's full-sized avatar

Jonathan Hilgart jonhilgart22

  • San Francisco
View GitHub Profile
select
a.subscription_invitee_credit_minutes,
mm.messager_campaign_category,
mm.messager_campaign_name,
count(distinct a.user_id) as n_users
from analytics.acquisition_credit_card_source_tracking a
join analytics.messager_message_results mm
on mm.user_id = a.user_id
-- email sent before card added
and mm.messager_message_created_at < a.credit_card_added_user_event_at
select
a.subscription_created_at::date,
b.cleaned_source,
b.utm_campaign,
count(distinct b.browser_hash) as n_visits,
count(distinct case when w.first_user_created_event_at is not null then b.user_id else null end) as accounts_created,
count(distinct a.user_id) as credit_cards_added
from analytics.browser_hash_hits b
join analytics.acquisition_waterfall_by_browser_hash w
on w.browser_hash = b.browser_hash
with most_recent_subscription as (
select
user_id,
max(created_at) as created_at
from subscriptions s
group by 1
),
weekly_minutes as (
select
date_trunc('month', subscription_started_at) as sub_start_month,
--waitlist
select
distinct
us.name,
us.email,
c.code as pricing_plan,
c.amount,
u.created_at::date as entered_credit_card_at
from user_events u
join coupons c
with most_recent_subscription as (
select
user_id,
max(id) as subscription_id
from alooma.subscriptions
group by 1
),
weekly_minutes as (
select
a.user_id,
pyenv virtualenv 2.7.10 my-virtual-env-2.7.10
Need to run - pyenv install 3.6.5 if the python version is not installed
ls -F |grep -v / | wc -l
sudo du -hsx /* | sort -rh | head -n 40
# create
python -m venv .
# activate
source /bin/activate
.git/hooks/pre-push
^new file
chmod +x pre-push
#!/bin/bash
protected_branch='master'
current_branch=$(git symbolic-ref HEAD | sed -e 's,.*/\(.*\),\1,')