- Discussed project updates.
- Approved budget.
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:
This file contains hidden or 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
| #!/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 = "" |
This file contains hidden or 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
| 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); | |
| } |
This file contains hidden or 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
| 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; |
This file contains hidden or 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
| 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")) |
This file contains hidden or 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 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. | |
| */ |