I hereby claim:
- I am JakeWharton on github.
- I am jakewharton (https://keybase.io/jakewharton) on keybase.
- I have a public key whose fingerprint is 90EE 1978 7A7B CF6F D37A 1E91 80C0 8B1C 2910 0955
To claim this, I am signing this object:
| diff -U 0 -N support-v4-19.1.0/android.support.v4.BuildConfig support-v4-20.0.0/android.support.v4.BuildConfig | |
| --- support-v4-19.1.0/android.support.v4.BuildConfig 1969-12-31 16:00:00.000000000 -0800 | |
| +++ support-v4-20.0.0/android.support.v4.BuildConfig 2014-06-26 19:59:59.000000000 -0700 | |
| @@ -0,0 +1,9 @@ | |
| +public final class android.support.v4.BuildConfig { | |
| + public static final boolean DEBUG; | |
| + public static final java.lang.String PACKAGE_NAME; | |
| + public static final java.lang.String BUILD_TYPE; | |
| + public static final java.lang.String FLAVOR; | |
| + public static final int VERSION_CODE; |
I hereby claim:
To claim this, I am signing this object:
| using System; | |
| using System.Text; | |
| using System.Reflection; | |
| namespace pyysharp | |
| { | |
| public abstract class HtmlTag | |
| { | |
| private static string TAB = " "; |
| using System; | |
| using System.Runtime.InteropServices; | |
| using System.Security.Principal; | |
| namespace JakeWharton | |
| { | |
| public class Impersonator : IDisposable | |
| { | |
| private WindowsImpersonationContext ImpersonatedUser = null; | |
| private IntPtr UserHandle; |
| #!/usr/bin/env python | |
| ''' | |
| Takes a GitHub service hook POST and automatically updates the associated repo. | |
| ''' | |
| __license__ = ''' | |
| Copyright 2009 Jake Wharton | |
| hookpuller is free software: you can redistribute it and/or modify |
| #!/usr/bin/python | |
| import sys | |
| import subprocess | |
| GIT_PATH = '/usr/bin/git' | |
| TRAC_ADMIN_PATH = '/usr/local/bin/trac-admin' | |
| VALID_BRANCHES = ['master'] | |
| TRAC_ENV = '/path/to/trac' |
| namespace JakeWharton.Utilities | |
| { | |
| public static class DataContextExtensions | |
| { | |
| /// <summary> | |
| /// Disable any lazy loading of table properties by magical reflection voodoo. | |
| /// | |
| /// See: http://stackoverflow.com/questions/3388276/disable-all-lazy-loading-or-force-eager-loading-for-a-linq-context | |
| /// And: http://stackoverflow.com/questions/3396426/iterating-tables-in-a-context-and-the-properties-of-those-tables | |
| /// And: http://stackoverflow.com/questions/3397843/how-to-determine-lazy-loaded-properties-at-runtime-on-a-linq-table |
| extended device statistics | |
| device r/s w/s kr/s kw/s wait actv svc_t %w %b | |
| cmdk0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0 | |
| cmdk1 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0 | |
| cmdk2 3.0 0.0 96.0 0.0 0.0 0.0 0.2 0 0 | |
| sd1 3.0 0.0 96.0 0.0 0.0 0.0 0.3 0 0 | |
| sd2 3.0 0.0 96.0 0.0 0.0 0.0 0.7 0 0 | |
| sd3 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0 | |
| sd4 3.0 0.0 96.0 0.0 0.0 0.0 0.7 0 0 | |
| extended device statistics |
| /* | |
| * Copyright (C) 2006 The Android Open Source Project | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * | |
| * Unless required by applicable law or agreed to in writing, software |
| // Copyright 2012 Square, Inc. | |
| package com.squareup.test; | |
| import android.app.Activity; | |
| import android.content.Context; | |
| import android.view.LayoutInflater; | |
| import android.view.View; | |
| import com.actionbarsherlock.ActionBarSherlock; | |
| import com.actionbarsherlock.app.ActionBar; | |
| import com.actionbarsherlock.internal.ActionBarSherlockCompat; |