Skip to content

Instantly share code, notes, and snippets.

View timcole's full-sized avatar
🦄

Timothy Cole timcole

🦄
View GitHub Profile
package chatters
import (
"bytes"
"encoding/json"
"io/ioutil"
"net/http"
"os"
"fmt"
)
@-moz-document url("https://github.com/Urgo?tab=repositories&q=SocialBlade") {
.h-card,
.UnderlineNav,
.col-9 .position-relative div:first-child {
display: none;
}
.container-lg {
max-width: 80% !important;
}
@timcole
timcole / AppConfig.java
Created December 11, 2017 16:36
Social Blade Android App Config
package com.socialblade.droid.statistics.app;
public class AppConfig {
private static String URL_ROOT = "https://api.socialblade.com/v2/";
public static String URL_RESET = "https://socialblade.com/forgotpw?sentemail=1";
public static String URL_LOGIN = URL_ROOT + "bridge";
public static String URL_REGISTER = URL_ROOT + "auth/register";
public static String URL_GUEST_REGISTER = URL_ROOT + "auth/guest";
public static String URL_FAVOURITES = URL_ROOT + "favorites/list";
public static String URL_FAVOURITE_CHECK = URL_ROOT + "favorites/check";