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
""" | |
QRcode generator | |
usage: | |
qr_gen.py [-t] <url> | |
options: | |
-t Translate localhost or loopback address to host address | |
""" | |
import qrcode |
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
public class OAuthPostHurlStack extends HurlStack { | |
private final OAuthConsumer mConsumer; | |
private ArrayList<String> mOauthSignedPosts = new ArrayList<>(); | |
public OAuthPostHurlStack(OAuthConsumer consumer) { | |
mConsumer = consumer; | |
} | |
@Override |
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
""" | |
Copy image files with dpi suffix to Android resource folder | |
usage: | |
resource_copy.py <target-resource-folder> <source-file>... | |
""" | |
import os | |
import glob | |
import sys | |
import re |
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
""" | |
Batch compress PNG images by using TinyPNG | |
usage: | |
tinyPNG.py <key> <target-folder> <source-file>... | |
""" | |
import os | |
import glob | |
import sys | |
import re | |
import shutil |
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
from distutils.spawn import find_executable | |
import os | |
import re | |
import sys | |
import subprocess | |
import zipfile | |
import tempfile | |
import shutil | |
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.app.Activity | |
import android.content.ComponentName | |
import android.content.Context | |
import android.content.Intent | |
import android.content.pm.PackageManager | |
import android.graphics.Bitmap | |
import android.net.Uri | |
import android.support.customtabs.CustomTabsClient | |
import android.support.customtabs.CustomTabsIntent | |
import android.support.customtabs.CustomTabsServiceConnection |
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
class SampleAdapter() : RecyclerView.Adapter<SampleAdapter.ViewHolder>() { | |
var data: List<String> = emptyList() | |
var onClick: (String) -> Unit = {} | |
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): ViewHolder? { | |
val binding = ItemListBinding.inflate(LayoutInflater.from(parent.context), parent, false) | |
binding.root.setOnClickListener { | |
onClick(data[(parent as RecyclerView).getChildAdapterPosition(it)]) | |
} | |
return ViewHolder(it) |
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.app.Activity | |
import android.databinding.DataBindingUtil | |
import android.databinding.ViewDataBinding | |
fun <T : ViewDataBinding> Activity.contentViewBinding(layout: Int): Lazy<T> = lazy { | |
DataBindingUtil.setContentView<T>(this, layout) | |
} |
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 com.google.android.gms.maps.model.LatLng | |
// Compute latitude and longitude from current lat lng, | |
// using Vincenty's direct formulae https://en.wikipedia.org/wiki/Vincenty's_formulae | |
fun LatLng.computeLatLngByDistanceAndBearing(distance: Double, bearing: Double): LatLng { | |
val PI = Math.PI / 180.0 | |
val MAXITERS = 20 |
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.support.design.widget.CoordinatorLayout | |
import android.support.v4.view.NestedScrollingChild | |
import android.support.v4.view.NestedScrollingChildHelper | |
import android.util.AttributeSet | |
import android.view.View | |
/** | |
* Propagate nested scroll event to in/out nested coordinator layout |
OlderNewer