$ python3 revoke_permission.py
$ python3 revoke_permission.py <device_code>
This file contains 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 sudoku | |
/** | |
* Algorithm from http://norvig.com/sudoku.html | |
*/ | |
import ( | |
"fmt" | |
"strings" | |
) |
This file contains 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 java.util.Arrays; | |
import java.util.List; | |
public class IpRange { | |
//region BlackListIpRanges | |
public static final List<IpRange> blacklistIpRanges = Arrays.asList( | |
new IpRange("104.132.0.0 - 104.135.255.255"), | |
new IpRange("104.154.0.0 - 104.155.255.255"), | |
new IpRange("104.196.0.0 - 104.199.255.255"), |
This file contains 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
/* | |
* Copyright (C) 2015 Tuan Chau (tuanchauict) | |
* | |
* 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 |
This file contains 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
/* | |
* Copyright (C) 2014 [email protected] | |
* | |
* 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 |
This file contains 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.content.Context; | |
import android.content.res.TypedArray; | |
import android.util.AttributeSet; | |
import android.widget.FrameLayout; | |
/** | |
* Created by tuanchauict on 11/18/15. | |
*/ | |
public class AspectRatioFrameLayout extends FrameLayout { | |
private static final float DEFAULT_RATIO = 109.33f / 144f; |
This file contains 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.content.Context; | |
import android.content.res.TypedArray; | |
import android.util.AttributeSet; | |
import android.widget.FrameLayout; | |
/** | |
* Created by tuanchauict on 11/18/15. | |
*/ | |
public class AspectRatioFrameLayout extends FrameLayout { | |
private static final float DEFAULT_RATIO = 109.33f / 144f; |
This file contains 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.content.pm.PackageManager; | |
import android.os.Build; | |
import android.support.annotation.NonNull; | |
import android.support.v4.app.ActivityCompat; | |
import android.support.v4.content.ContextCompat; | |
import android.support.v7.app.AppCompatActivity; | |
import android.util.SparseArray; | |
import java.util.ArrayList; |
This file contains 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.notabasement.common.photopicker.events; | |
import android.content.Context; | |
/** | |
* Created by tuanchauict on 3/16/16. | |
*/ | |
public abstract class RotateOrientationEventListener extends SimpleOrientationEventListener { | |
public RotateOrientationEventListener(Context context) { | |
super(context); |
This file contains 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
private SparseArray<View> mViewStubSparseArray; | |
/** | |
* Find view inside ViewStub layout | |
* | |
* @param stubId | |
* @param viewId | |
* @param <T> | |
* @return | |
*/ |
OlderNewer