Skip to content

Instantly share code, notes, and snippets.

View cortinico's full-sized avatar
♦️
Reticulating splines...

Nicola Corti cortinico

♦️
Reticulating splines...
View GitHub Profile
@cortinico
cortinico / android-learning-material.md
Last active May 11, 2017 21:28
A short list of useful books/libraries/newsletters for every android developer (EN/IT)

Here I collect all the useful material related to Android world, probably useful for newbies and people that have never developed on Android.

Feel free to suggest any other source to add in this list :)

Nic :D - corti.nico@gmail.com

English

@cortinico
cortinico / README.md
Created June 6, 2017 09:39 — forked from lopspower/README.md
Publish AAR to jCenter and Maven Central

Publish AAR to jCenter and Maven Central

Twitter

Now I'm going to list how to publish an Android libray to jCenter and then syncronize it with Maven Central:

  1. I use "Android Studio" and I have this simple android lib that I would like to be available on maven: CircularImageView

  2. In the library folder(module) I have the lib code abovementioned. And applying in the build.gradle of this folder apply plugin: 'com.android.library' I got as output an .aar in the build/outputs/aar/ directory of the module's directory

@cortinico
cortinico / PrintRule.kt
Created November 27, 2018 15:16
Just a stupid JUnit rule that prints before and after executing a statement
import org.junit.rules.TestRule
import org.junit.runner.Description
import org.junit.runners.model.Statement
class PrintRule(val label: String) : TestRule {
override fun apply(statement: Statement, description: Description): Statement {
return object : Statement() {
override fun evaluate() {
println("$label before statement")
try {
@cortinico
cortinico / Makefile
Last active January 28, 2019 13:52
Circle CI setup for builing and publishing LaTeX files
CC = xelatex
SRC_DIR = "."
OUT_DIR = "."
SRC = $(shell find $(SRC_DIR) -name '*.tex')
# Build All
build: $(SRC)
$(CC) -output-directory=$(OUT_DIR) $<
@cortinico
cortinico / sample-yelp-api-specs.json
Created October 21, 2019 16:14
Sample Swagger Spec for a Yelp API
{
"definitions": {
"Category": {
"description": "A Category used to group businesses",
"properties": {
"id": {
"description": "Unique ID of the Category",
"format": "int64",
"type": "integer"
},
@cortinico
cortinico / build.gradle
Created October 30, 2019 09:37
swagger-gradle-codegen Gradle Configuration Block
plugins {
id("com.yelp.codegen.plugin") version "<latest_version>"
}
generateSwagger {
platform = "kotlin"
packageName = "com.yelp.codegen.samples"
inputFile = file("./sample_specs.json")
outputDir = file("./src/main/java/")
}
@cortinico
cortinico / build.gradle
Created October 30, 2019 09:39
swagger-gradle-codegen Configuring generate swagger to depend on preBuild
preBuild.dependsOn(tasks.getByName(“generateSwagger"))
@cortinico
cortinico / Category.kt
Created October 30, 2019 09:40
Generated Category classes from swagger-gradle-codegen
/**
* A Category used to group businesses on Yelp
* @property id Unique ID of the Category
* @property name Name of this category
*/
data class Category(
@Json(name = "id") var id: Long? = null,
@Json(name = "name") var name: String? = null
)
@cortinico
cortinico / Business.kt
Created October 30, 2019 09:40
Generated Business class from swagger-gradle-codegen
/**
* Represents a specific Business on Yelp
* @property category Optional category of the business
* @property id Unique ID of this Business
* @property name Name of this specific Business
* @property photoUrls Photo URls for this Business
* @property status Status of this Business on Yelp
*/
data class Business (
@Json(name = "id") var id: Long,
@cortinico
cortinico / DefaultApi.kt
Created October 30, 2019 09:41
Generated Retrofit interface from swagger-gradle-codegen
interface DefaultApi {
/**
* Find business by ID
* Returns a single Business by its ID
* @param businessId ID of Business to return (required)
*/
@GET("/business/{businessId}")
fun getBusinessById(
@retrofit2.http.Path("businessId") businessId: Long
): Single<Business>