Skip to content

Instantly share code, notes, and snippets.

View tentenponce's full-sized avatar

Tenten Ponce tentenponce

  • https://angkas.com/
View GitHub Profile
@tentenponce
tentenponce / KeyStoreCompat.java
Created June 4, 2019 08:56 — forked from theyann/KeyStoreCompat.java
KeyStoreCompat is a simple class that takes care of dealing with KeyStore and using the AndroidKeyStore when it can, or another type if it can't. You're welcome.
package YOUR_PACKAGE;
import android.content.Context;
import android.os.Build;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.security.KeyStore;
import java.security.KeyStoreException;
import java.security.cert.Certificate;
@tentenponce
tentenponce / git_submodules.md
Created May 8, 2018 02:45 — forked from gitaarik/git_submodules.md
Git Submodules basic explanation

Git Submodules basic explanation

Why submodules?

In Git you can add a submodule to a repository. This is basically a repository embedded in your main repository. This can be very useful. A couple of advantages of using submodules:

  • You can separate the code into different repositories.
@tentenponce
tentenponce / git_submodules.md
Created May 8, 2018 02:45 — forked from gitaarik/git_submodules.md
Git Submodules basic explanation

Git Submodules basic explanation

Why submodules?

In Git you can add a submodule to a repository. This is basically a repository embedded in your main repository. This can be very useful. A couple of advantages of using submodules:

  • You can separate the code into different repositories.