I hereby claim:
- I am igoticecream on github.
- I am pedrodiaz (https://keybase.io/pedrodiaz) on keybase.
- I have a public key whose fingerprint is 6D23 8616 1CFB 78AF 8A42 BB6E 1241 3F42 C3A8 90E9
To claim this, I am signing this object:
#!/usr/bin/env python3 | |
from pathlib import Path | |
import struct | |
import json | |
import random | |
import datetime | |
import re | |
import requests |
I hereby claim:
To claim this, I am signing this object:
#====================================================================== | |
# Makefile for mixed C/C++ sources (igoticecream 2019) | |
#====================================================================== | |
#---------------------------------------------------------------------- | |
# Project Structure | |
#---------------------------------------------------------------------- | |
# TARGET is the name of the output | |
# BUILD is the directory where object files & intermediate files will be placed | |
# OUT is the directory where target files will be placed |
// Future versions of Hyper may add additional config options, | |
// which will not automatically be merged into this file. | |
// See https://hyper.is#cfg for all currently supported options. | |
module.exports = { | |
config: { | |
//fontWeight: 'normal', | |
//fontWeightBold: 'normal', | |
//fontWeight: '10', |
public class ShareConnect implements Single.OnSubscribe<Bundle> { | |
private final GoogleApiClient client; | |
private final Scheduler.Worker worker; | |
private final ShareConnectException error; | |
public ShareConnect(final Share share) { | |
this.client = share.getClient(); | |
this.worker = Schedulers.io().createWorker(); | |
this.error = new ShareConnectException("No se ha podido establecer conexión con Google Drive"); |
apply plugin: 'com.android.application' | |
apply plugin: 'kotlin-android' | |
apply plugin: 'kotlin-android-extensions' | |
android { | |
compileSdkVersion 25 | |
buildToolsVersion '25.0.2' | |
defaultConfig { | |
applicationId 'hellokotlin' |
plugins { | |
id 'application' | |
} | |
mainClassName = 'com.igoticecream.rebel.helper.Helper' | |
applicationDefaultJvmArgs = ["-javaagent:/An/Example/Jvm/Args.jar"] | |
dependencies { | |
compile fileTree(dir: 'libs', include: '*.jar') | |
} |
@SuppressWarnings({"unused", "FieldCanBeLocal", "WeakerAccess"}) | |
public final class Singleton { | |
private static volatile Singleton ourInstance = null; | |
public static Singleton getInstance() { | |
if (ourInstance == null) { | |
synchronized (Singleton.class) { | |
if (ourInstance == null) { | |
ourInstance = new Singleton(); |