Skip to content

Instantly share code, notes, and snippets.

View igoticecream's full-sized avatar

Pedro Díaz igoticecream

View GitHub Profile
@igoticecream
igoticecream / amiibo.py
Last active May 24, 2020 11:02
Retrieve all Amiibos from AmiiboApi into Emuiibo compatible files
#!/usr/bin/env python3
from pathlib import Path
import struct
import json
import random
import datetime
import re
import requests

Keybase proof

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:

@igoticecream
igoticecream / Makefile
Last active January 25, 2021 03:18
Makefile for mixed C/C++ sources and vscode project configuration (https://code.visualstudio.com/docs/languages/cpp)
#======================================================================
# 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',
@igoticecream
igoticecream / stardew-valley.md
Last active June 24, 2022 23:47
Stardew Valley
@igoticecream
igoticecream / Example.java
Last active May 29, 2017 15:54
RxJava example of how to "fix" Observable events going to the main thread
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");
@igoticecream
igoticecream / Libraries.md
Last active June 20, 2018 23:45
Collection of favorite android libraries

Libraries

  • Android KTX
  • Anko
  • Apache commons
  • Architecture components
  • Arrow
  • AutoFactory
  • AutoValue
  • AutoValue Gson
  • Constraint layout
@igoticecream
igoticecream / app-build.gradle
Created February 21, 2017 22:47
Kotlin setup for Android Studio project
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
android {
compileSdkVersion 25
buildToolsVersion '25.0.2'
defaultConfig {
applicationId 'hellokotlin'
@igoticecream
igoticecream / app-build.gradle
Created February 21, 2017 20:47
Basic gradle configuration of Java project
plugins {
id 'application'
}
mainClassName = 'com.igoticecream.rebel.helper.Helper'
applicationDefaultJvmArgs = ["-javaagent:/An/Example/Jvm/Args.jar"]
dependencies {
compile fileTree(dir: 'libs', include: '*.jar')
}
@igoticecream
igoticecream / Singleton.java
Created January 31, 2017 18:53
Doble check singleton implementation
@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();