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 Customer { | |
String firstName; | |
String lastName; | |
// 20 Other properties | |
public String getFirstName() { | |
return firstName; | |
} | |
public void setFirstName(String firstName) { |
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
// Connect to your API with your http lib, i use http-request: https://github.com/kevinsawicki/http-request | |
// Then get the reader. The 'request' variable below is just a HttpRequest object | |
// as shown here: http://kevinsawicki.github.io/http-request/ | |
final Reader reader = request.reader(); | |
final ObjectMapper mapper = new ObjectMapper(); | |
final JsonFactory factory = mapper.getFactory(); | |
// Create a new streaming parser with the reader | |
JsonParser jp = factory.createParser(reader); |
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 dagger.Module; | |
import dagger.Provides; | |
@Module | |
( | |
complete = false | |
) | |
public class BootstrapModule { | |
@Provides | |
Picasso providesPicasso(Context context) { |
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
@Test | |
public void shouldBeAbleToGoToComments() { | |
Uri deepLink = Uri.parse("pfm:///user/frank/status/123/?version=88983845"); | |
System.out.println(String.format("Testing %s", deepLink.toString())); | |
// The intent to start. | |
Intent expectedIntent = new Intent(Robolectric.application, Status.class); | |
expectedIntent.putExtra(Constants.Extras.STATUS_ID, 123L); |
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
//r = require('rethinkdb') | |
var MongoClient = require('mongodb').MongoClient, | |
format = require('util').format; | |
var querystring = require('querystring'); | |
var https = require('https'); | |
var Inserter = function (collection) { | |
this.collection = collection; |
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
dependencies { | |
compile fileTree(dir: 'libs', include: '*.jar') | |
compile('com.google.android.gms:play-services:3.1.+') { | |
exclude module: 'support-v4' | |
} | |
compile 'com.android.support:appcompat-v7:+' | |
compile 'com.android.support:support-v4:13.0.+' | |
compile 'com.squareup.dagger:dagger:1.1.0' | |
compile 'com.squareup.dagger:dagger-compiler:1.1.0' | |
compile 'com.squareup.picasso:picasso:2.1.1' |
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
[user] | |
name = FirstName LastName | |
email = [email protected] | |
[alias] | |
A = add -A | |
a = add | |
aa = add --all | |
ae = add --edit | |
ai = add --interactive | |
amend = commit --amend -C HEAD |
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
// Other build stuff | |
task ndkBuild(type:Exec) { | |
if(androidNdkPath != null) { | |
def ndkBuild = new File(androidNdkPath, 'ndk-build') | |
commandLine ndkBuild | |
} else { | |
// do something else | |
} | |
} |
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.graphics.*; | |
import com.squareup.picasso.Transformation; | |
/** | |
* Transforms an image into a circle representation. Such as a avatar. | |
*/ | |
public class CircularTransformation implements Transformation | |
{ | |
int radius = 10; |
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
# | |
# Build configuration for Circle CI | |
# | |
general: | |
artifacts: | |
- /home/ubuntu/your-app-name/app/build/outputs/apk/ | |
machine: | |
environment: |