I hereby claim:
- I am RahulSDeshpande on github.
- I am rhld (https://keybase.io/rhld) on keybase.
- I have a public key whose fingerprint is E635 1D59 19C1 7641 7A47 CE8C 9DA8 4D29 D71E 0F45
To claim this, I am signing this object:
/** | |
* Get reference to the connectivity manager | |
*/ | |
ConnectivityManager connectivityManager = | |
(ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE); | |
/** | |
* Find out whether device is connected to wifi or cellular at the moment | |
*/ | |
public NetworkType getNetworkType() { |
SELECT table_schema AS "Database", | |
ROUND(SUM(data_length + index_length) / 1024 / 1024, 2) AS "Size (MB)" | |
FROM information_schema.TABLES | |
GROUP BY table_schema; |
I hereby claim:
To claim this, I am signing this object:
// Kotlin extension | |
fun Context.alert( | |
@StyleRes style: Int = 0, | |
dialogBuilder: MaterialAlertDialogBuilder.() -> Unit | |
) { | |
MaterialAlertDialogBuilder(this, style) | |
.apply { | |
setCancelable(false) | |
dialogBuilder() | |
create() |
public class MyAsyncTask extends AsyncTask<Void, Void, Cursor> { | |
@Override | |
protected Cursor doInBackground(Void... params) { | |
DatabaseHelper helper = new DatabaseHelper(MainActivity.this); | |
return helper.getReadableDatabase().rawQuery("SELECT * FROM myTable", null); | |
} | |
@Override |
public class MyAsyncTask extends AsyncTask<Void, Void, Cursor> { | |
@Override | |
protected Cursor doInBackground(Void... params) { | |
DatabaseHelper helper = new DatabaseHelper(MainActivity.this); | |
return helper.getReadableDatabase().rawQuery("SELECT * FROM myTable", null); | |
} | |
@Override |
/* | |
* Copyright 2013 Evelio Tarazona Cáceres <[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 |
#!/bin/bash | |
# Android 4.3+ changes app's internal directory permissions and you can not just pull your | |
# databases to your computer, so I did this as a workaround to extract my databases. | |
# I only use it for debug, use it under your responsability. | |
package=$1 | |
db_name=$2 | |
path="/data/data/$package/" |
#!/bin/bash | |
if [ "$1" == "" ]; then | |
echo Usage: $0 pngfile | |
exit 0; | |
fi | |
FILE=`basename $1 .png` | |
if [ ! -e $FILE.png ]; then |