This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
---- | |
I got a BA in sociology. Got accepted to law school but opted out because I was burned out and hated everything. | |
I went to work at a hotel and randomly fell into accounting. It worked for me and now I have a CPA. | |
Life is a journey. | |
---- | |
Psychology degree -> bartending | |
---- | |
Got a psych degree, now im an electrician |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import praw | |
from praw.models import MoreComments | |
# go through the comment tree and find all the top level MoreComments objects | |
def gather_more_comments(submission): | |
top_level_comment_count = 0 | |
more_comments = [] | |
for top_level_comment in submission.comments: | |
if isinstance(top_level_comment, MoreComments): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Architect | |
at Everstring | |
San Mateo, CA | |
Description | |
EverString helps build new pipeline and increase conversion rates with the only account-based, full lifecycle, predictive platform for B2B sales and marketing. The EverString Decision Platform identifies a company’s ideal customer profile, and then finds the prospects that best fit that profile, both inside and outside the existing pipeline. EverString’s SaaS platform provides Predictive Scoring, Predictive Demand Generation and Predictive Ad Targeting, empowering marketers with the full potential of predictive analytics and applied data science. EverString is backed by leading investors including Lightspeed Venture Partners, Sequoia Capital, IDG Ventures and Lakestar. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# --------------------------------------------------------------------------------------------------------------------- | |
# Helper functions | |
# --------------------------------------------------------------------------------------------------------------------- | |
function show_help() { | |
echo " | |
################################################################################################################### |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Getting Started example sketch for nRF24L01+ radios | |
This is a very basic example of how to send data from one node to another | |
Updated: Dec 2014 by TMRh20 | |
*/ | |
#include <SPI.h> | |
#include "RF24.h" | |
#include "printf.h" |