I hereby claim:
- I am mdrabic on github.
- I am mikedrabic (https://keybase.io/mikedrabic) on keybase.
- I have a public key ASCFtkllKmnti-M7c7wlSvSiWnlT2upDTXRG6yh-TpkMDQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env python | |
# encoding: utf-8 | |
import tweepy #https://github.com/tweepy/tweepy | |
#Twitter API credentials | |
consumer_key = "" | |
consumer_secret = "" | |
access_key = "" | |
access_secret = "" |
final Scheduler.Worker worker = Schedulers.newThread().createWorker(); | |
worker.schedule(new Action0() { | |
@Override | |
public void call() { | |
if (!mAnimationSet.isStarted()) { | |
removeViewAt(0); | |
worker.unsubscribe(); | |
} else { | |
worker.schedule(this, 500, TimeUnit.MILLISECONDS); | |
} |
package com.mdrabic.content; | |
import android.content.Context; | |
import android.database.sqlite.SQLiteDatabase; | |
import android.support.v4.content.AsyncTaskLoader; | |
import com.docdock.android.R; | |
import com.docdock.android.db.DaoMaster; | |
import com.docdock.android.db.DaoSession; |
apply plugin: 'com.android.application' | |
// Manifest version information! | |
def versionMajor = 1 | |
def versionMinor = 0 | |
def versionPatch = 0 | |
def versionBuild = 0 // bump for dogfood builds, public betas, etc. | |
def gitSha = 'git rev-parse --short HEAD'.execute([], project.rootDir).text.trim() | |
def buildTime = new Date().format("yyyy-MM-dd'T'HH:mm'Z'", TimeZone.getTimeZone("UTC")) |
import android.os.Parcel; | |
import android.os.Parcelable; | |
import java.util.ArrayList; | |
import java.util.List; | |
/** | |
* POJO to hold contents of a Mail. Implements Parcelable so that it can be used in the bundle to | |
* save and restore information to the UI entered by the user in a Activity. | |
*/ |