I hereby claim:
- I am tyvsmith on github.
- I am tsmith (https://keybase.io/tsmith) on keybase.
- I have a public key whose fingerprint is 6844 9AB2 4FC5 ECE7 78B7 31F9 AF0C C86E D089 D7EB
To claim this, I am signing this object:
<application android:icon="@drawable/icon" android:label="@string/app_name"> | |
<activity android:name=".ui.Main" android:label="@string/app_name"> | |
<intent-filter> | |
<action android:name="android.intent.action.MAIN" /> | |
<category android:name="android.intent.category.LAUNCHER" /> | |
</intent-filter> | |
</activity> | |
<receiver android:name=".receiver.BootReceiver"> |
class Setting < ActiveRecord::Base | |
validates_uniqueness_of :var | |
validates_presence_of :value | |
after_save :send_cron_later | |
#Setting.for(:display).set=(value) | |
def self.for(var) | |
find_or_create_by_var(var) |
test |
//Creating the business note store makes network requests | |
//to validate the auth token for the business | |
mEvernoteSession.getClientFactory().createBusinessNoteStoreClient( | |
new OnClientCallback<AsyncBusinessNoteStoreClient>() { | |
@Override | |
public void onSuccess(final AsyncBusinessNoteStoreClient client) { | |
//This is running in the UI Thread | |
client.listNotebooks(new OnClientCallback<List<Notebook>() { | |
@Override |
function dex-method-count() { | |
cat $1 | head -c 92 | tail -c 4 | hexdump -e '1/4 "%d\n"' | |
} | |
function dex-method-count-by-package() { | |
dir=$(mktemp -d -t dex) | |
baksmali $1 -o $dir | |
for pkg in `find $dir/* -type d`; do | |
smali $pkg -o $pkg/classes.dex | |
count=$(dex-method-count $pkg/classes.dex) |
public class MyApp extends Application { | |
private final String PACKAGE="me.tysmith.app"; | |
@Override | |
public void onCreate() { | |
super.onCreate(); | |
Crashlytics.start(new CrashContextWrapper(this, PACKAGE)); | |
} | |
} |
public class CrashReporting { | |
public static class GenericReportingException extends Exception { | |
public GenericReportingException(){} | |
public GenericReportingException(String str){ | |
super(str); | |
} | |
} |
public static final String SEARCH_NOTES = "com.evernote.action.SEARCH_NOTES"; | |
public static final String VIEW_NOTE_LIST = "com.evernote.action.VIEW_NOTELIST"; | |
public static final String NOTE_PICKER = "com.evernote.action.NOTE_PICKER"; | |
public static final String VIEW_NOTE = "com.evernote.action.VIEW_NOTE"; | |
public static final String NEW_NOTE = "com.evernote.action.CREATE_NEW_NOTE"; | |
public static final String EDIT_NOTE = "com.evernote.action.EDIT_NOTE"; | |
public static final String UPDATE_NOTE = "com.evernote.action.UPDATE_NOTE"; | |
public static final String DELETE_NOTE = "com.evernote.action.DELETE_NOTE"; |
package com.example.app; | |
public class App { | |
public String id; | |
public String name; | |
public String icon_url; | |
@Override | |
public String toString() { | |
return name; |
I hereby claim:
To claim this, I am signing this object: