Install ImageMagick 6.7.7-10
$ brew install https://gist.githubusercontent.com/jgilfelt/907d60ba5657e18daf9b4db1e442a6b0/raw/a56bc99ade0c86a60c954ec42cd2bc3bba8180ce/imagemagick.rb
$ brew install https://gist.githubusercontent.com/jgilfelt/907d60ba5657e18daf9b4db1e442a6b0/raw/a56bc99ade0c86a60c954ec42cd2bc3bba8180ce/imagemagick.rb
import org.junit.Rule; | |
import org.junit.Test; | |
import java.io.IOException; | |
import okhttp3.Call; | |
import okhttp3.Interceptor; | |
import okhttp3.OkHttpClient; | |
import okhttp3.Request; | |
import okhttp3.Response; |
/* | |
* Copyright (C) 2016 Jeff Gilfelt. | |
* | |
* 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 |
private Notification buildNotification() { | |
NotificationCompat.Builder builder = new NotificationCompat.Builder(context) | |
.setCategory(NotificationCompat.CATEGORY_EVENT) | |
.setVisibility(NotificationCompat.VISIBILITY_PRIVATE) // default | |
.setContentTitle(title) | |
.setContentText(shortText) | |
.setStyle(new NotificationCompat.BigTextStyle().bigText(fullText)) | |
.setSmallIcon(R.drawable.ic_stat_notification) | |
.setColor(context.getResources().getColor(R.color.my_color)) | |
.setContentIntent(intent); |
# add the webupd8team java PPA | |
sudo apt-get install software-properties-common python-software-properties | |
sudo add-apt-repository ppa:webupd8team/java | |
sudo apt-get update | |
# install oracle java 6 | |
sudo apt-get install oracle-java6-installer |
package com.example.scalpeldrawer; | |
import android.app.Activity; | |
import android.content.Context; | |
import android.support.v4.widget.DrawerLayout; | |
import android.util.AttributeSet; | |
import android.view.LayoutInflater; | |
import android.view.View; | |
import android.view.ViewGroup; | |
import android.widget.CheckBox; |
/* | |
* Copyright (C) 2013 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 |
package com.example.shame; | |
import android.annotation.TargetApi; | |
import android.app.Activity; | |
import android.os.Build; | |
import android.view.KeyEvent; | |
import android.view.ViewConfiguration; | |
public abstract class ShameActivity extends Activity { |
# Whartoff - An ActionBarSherlock migration utility | |
# | |
# usage: whartoff.sh <option> <project directory> | |
# | |
# options: | |
# -c : ActionBarSherlock to compatibility ActionBar | |
# -n : ActionBarSherlock to native ActionBar | |
#!/bin/bash |
/* | |
* Copyright (C) 2013 readyState Software Ltd | |
* | |
* 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 |