Skip to content

Instantly share code, notes, and snippets.

@FodT
FodT / strangeloop.md
Last active October 2, 2017 19:41
Strangeloop 2017 notes

STRANGELOOP 2017, St. Louis, Missouri

Note: most talks are already on YouTube, with supplementary material on GitHub

This is a writeup of the talks I attended. There are some gems I'm yet to watch the recordings of, but I'll list them at the end based on the things I heard about while chatting to other attendees feel free to use them as a jumping off point for discovering the talks.

Day 1

How to reduce the pesky long tail of queries using various approaches. It's all about that CFD curve.

Keybase proof

I hereby claim:

  • I am fodt on github.
  • I am fodt (https://keybase.io/fodt) on keybase.
  • I have a public key ASDmQBqwhIxaBG-_KyqjerYXLNFiyif0sDqgVvGTAli1_go

To claim this, I am signing this object:

@FodT
FodT / hello_t1.java
Created May 17, 2016 11:30
Using Unirest.io to make T1 API calls in java
package com.mycompany.app;
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;
import com.mashape.unirest.http.exceptions.UnirestException;
import org.json.JSONArray;
import java.util.HashMap;
import java.util.Map;
@FodT
FodT / hello_t1.py
Last active May 3, 2017 15:25
quick hello world demo of campaign/strategy/concept/creative creation and assignment.
# runs in python 3.4
from terminalone import T1
from terminalone.utils import credentials
from terminalone import models
from datetime import datetime, timedelta
ADVERTISER_ID = YOUR_ADVERTISER_ID
t1 = T1(auth_method='cookie', **credentials())