This file contains hidden or 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
| diff --git a/Library/Formula/wine.rb b/Library/Formula/wine.rb | |
| index 69990e7..442b8c0 100644 | |
| --- a/Library/Formula/wine.rb | |
| +++ b/Library/Formula/wine.rb | |
| @@ -90,6 +90,8 @@ class Wine < Formula | |
| # 64-bit builds of mpg123 are incompatible with 32-bit builds of Wine | |
| args << "--without-mpg123" if Hardware.is_64_bit? | |
| + args << "--without-x" if build.without? 'x11' | |
| + |
This file contains hidden or 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 MyLoginActivity { | |
| private static final int REQUEST_FB = 1; | |
| @Override | |
| public void onCreate(Bundle bundle) { | |
| setContentView(R.layout.activity_login); | |
| findViewById(R.id.facebook_button).setOnClickListener(new View.OnClickListener() { | |
| @Override | |
| public void onClick(View view) { |
This file contains hidden or 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
| require 'httparty' | |
| require 'json' | |
| class Crashlytics | |
| include HTTParty | |
| base_uri 'https://api.crashlytics.com/api/v2' | |
| def session(email, password) | |
| self.class.post('/session.json', | |
| body: {email: email, password:password}.to_json, |
This file contains hidden or 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
| I/DEBUG ( 157): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** | |
| I/DEBUG ( 157): Build fingerprint: 'google/occam/mako:4.2.2/JDQ39/573038:user/release-keys' | |
| I/DEBUG ( 157): Revision: '10' | |
| I/DEBUG ( 157): pid: 5786, tid: 5811, name: GAThread >>> com.codebutler.topsecret <<< | |
| I/DEBUG ( 157): signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 00000000 | |
| I/DEBUG ( 157): r0 7481ab1c r1 ffffffff r2 00000008 r3 6fd19065 | |
| I/DEBUG ( 157): r4 6fd19065 r5 6fd19066 r6 00000000 r7 6fd19065 | |
| I/DEBUG ( 157): r8 00000020 r9 6fd19065 sl 00000000 fp 7481ab1c | |
| I/DEBUG ( 157): ip 709d3da0 sp 7481aa98 lr 709bc3c7 pc 40a17430 cpsr 00000030 | |
| I/DEBUG ( 157): d0 312e312f70747468 d1 61342f7964707308 |
This file contains hidden or 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.net.SSLCertificateSocketFactory; | |
| import android.net.SSLSessionCache; | |
| import android.os.Build; | |
| import org.apache.http.conn.ssl.SSLSocketFactory; | |
| import org.apache.http.params.HttpParams; | |
| import javax.net.ssl.SSLContext; | |
| import javax.net.ssl.SSLSocket; | |
| import javax.net.ssl.TrustManager; | |
| import java.io.IOException; |
This file contains hidden or 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
| source :rubygems | |
| gem 'rest-client' | |
| gem 'nokogiri' |
This file contains hidden or 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.*; | |
| import android.database.Cursor; | |
| import android.database.sqlite.SQLiteDatabase; | |
| import android.database.sqlite.SQLiteOpenHelper; | |
| import android.database.sqlite.SQLiteQueryBuilder; | |
| import android.net.Uri; | |
| import android.provider.BaseColumns; | |
| import android.text.TextUtils; | |
| public abstract class BetterContentProvider extends ContentProvider { |
This file contains hidden or 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.support.v4.content.AsyncTaskLoader; | |
| import android.content.Context; | |
| import android.os.Handler; | |
| import android.text.format.DateUtils; | |
| public abstract class BetterAsyncLoader<T> extends AsyncTaskLoader<T> { | |
| private T mData; | |
| private long mPollInterval; | |
| private Handler mRepeatHandler; |
This file contains hidden or 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.Context; | |
| import android.text.InputType; | |
| import android.text.TextUtils; | |
| import android.view.View; | |
| import android.widget.EditText; | |
| import com.humaorie.dollar.Dollar; | |
| import static com.humaorie.dollar.Dollar.$; |
This file contains hidden or 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
| #!/bin/bash | |
| # TapChat for Irssi Installer | |
| # | |
| # Authors: | |
| # Eric Butler <eric@codebutler.com> | |
| # | |
| # See http://tapchatapp.com for more information | |
| APT_PACKAGES="libanyevent-http-perl libnet-ssleay-perl libuuid-tiny-perl liburi-query-perl libauthen-passphrase-perl libdbd-sqlite3-perl libdbix-class-perl libcrypt-generatepassword-perl libcrypt-cbc-perl libcrypt-rijndael-perl libmime-base64-urlsafe-perl liburi-encode-perl" |