Skip to content

Instantly share code, notes, and snippets.

View jhonnyfc's full-sized avatar
🌴
On vacation

jhonnyfc jhonnyfc

🌴
On vacation
View GitHub Profile
@srix55
srix55 / DoubleClickListener.java
Last active October 16, 2023 11:43
Simple double-click listener that can be used like the way OnClickListener is used on a view in Android
import android.os.SystemClock;
import android.view.View;
import android.view.View.OnClickListener;
/**
* A simple double-click listener
* Usage:
* // Scenario 1: Setting double click listener for myView
* myView.setOnClickListener(new DoubleClickListener() {
*
@azadkuh
azadkuh / OpenSSL cheat sheet for socket programmers.md
Last active January 9, 2024 16:29
OpenSSL cheat sheet. This is a brief howto for socket programmers.

#OpenSSL cheat sheet This is a brief howto for socket programmers.

create RSA key pairs

ex: 1024bits length key pair:

$> openssl genrsa -out myprivate.pem 1024
$> openssl rsa -in myprivate.pem -pubout -out mypublic.pem