Skip to content

Instantly share code, notes, and snippets.

{
"company": "Hipo",
"team": "Android",
"members": [
{
"name": "Yasin Cetiner",
"age": 33,
"location": "Istanbul",
"github": "artizco",
"hipo": {
@artizco
artizco / IntelliJ_IDEA__Perf_Tuning.txt
Created January 24, 2016 00:12 — forked from P7h/IntelliJ_IDEA__Perf_Tuning.txt
Performance tuning parameters for IntelliJ IDEA. Add these params in idea64.exe.vmoptions or idea.exe.vmoptions file in IntelliJ IDEA. If you are using JDK 8.x, please knock off PermSize and MaxPermSize parameters from the tuning configuration.
-server
-Xms2048m
-Xmx2048m
-XX:NewSize=512m
-XX:MaxNewSize=512m
-XX:PermSize=512m
-XX:MaxPermSize=512m
-XX:+UseParNewGC
-XX:ParallelGCThreads=4
-XX:MaxTenuringThreshold=1
@artizco
artizco / gist:d56045af93389488c361
Created July 18, 2014 11:00
Android open ssl sha1
Open SSL
cmd -> cd C:\Program Files\Java\jdk1.7.0_40\bin
keytool -v -list -keystore "C:\Users\Yasin\.android\debug.keystore"
keytool -exportcert -alias androiddebugkey -keystore "C:\Users\Yasin\.android\debug.keystore" | "C:\OpenSSL\bin\openssl" sha1 -binary | "C:\OpenSSL\bin\openssl" base64