View OnFolderOverflowSelectedListener.java
private ListView mListView; | |
private ArrayAdapter mListAdapter; | |
private final AlphaAnimation mFadeOut = new AlphaAnimation(1.0f, 0.3f); | |
private final AlphaAnimation mFadeIn = new AlphaAnimation(0.3f, 1.0f); | |
public class OnFolderOverflowSelectedListener implements OnClickListner { | |
// Stuff from above | |
public void onClick(View v) { | |
// All the stuff above |
View OnAlbumOverflowSelectedListener.java
public class OnAlbumOverflowSelectedListener implements OnClickListener { | |
private Album mAlbum; | |
private Context mContext; | |
public OnFolderOverflowSelectedListener(Context context, Album album) { | |
mContext = context; | |
mAlbum = album; | |
} | |
@Override |
View git-backup-to-AWS-S3.sh
#!/bin/bash | |
# Script to backup git repo to S3 | |
# Set bucket, dir, password and account to use for the backup. I keep mine in local env vars | |
# These are set by localrc which lives on an encrypted home directory and is executed by my bashrc | |
bucket=$GITHUB_BACKUP_BUCKET | |
dir=$GITHUB_BACKUP_DIR | |
password=$GITHUB_BACKUP_PASSWORD | |
account=$GITHUB_ACCOUNT |
View gist:1692506
# Prepare: add column 'price_value' and 'price_normalized' to you table | |
# 1) Run this one first | |
UPDATE top_android_apps | |
SET price_value = 0; | |
# 2) Run this one second | |
UPDATE top_android_apps | |
SET price_value = CASE | |
WHEN ( country IN ( 'GB', 'AU', 'CA', 'HK', 'RU' ) ) THEN |