Skip to content

Instantly share code, notes, and snippets.

View melvyniandrag's full-sized avatar
🌕
A Picture of Jupiter and 4 of its Moons Through Our Telescope.

melvyniandrag

🌕
A Picture of Jupiter and 4 of its Moons Through Our Telescope.
View GitHub Profile
@melvyniandrag
melvyniandrag / AndroidManifest.xml
Created February 24, 2022 03:15 — forked from codinginflow/AndroidManifest.xml
Runtime Permission Request Tutorial
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.codinginflow.permissionrequestexample">
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
@melvyniandrag
melvyniandrag / README.md
Created April 25, 2018 18:29 — forked from bewest/README.md
plea for GIO examples for python + gdbus servers#
@melvyniandrag
melvyniandrag / README.md
Created April 25, 2018 18:29 — forked from bewest/README.md
plea for GIO examples for python + gdbus servers#
@melvyniandrag
melvyniandrag / ECDH_BC.java
Created August 31, 2017 20:28 — forked from wuyongzheng/ECDH_BC.java
Elliptic curve Diffie–Hellman using Bouncy Castle v1.50 example code
import java.math.BigInteger;
import java.security.PublicKey;
import java.security.PrivateKey;
import java.security.KeyFactory;
import java.security.Security;
import java.security.KeyPairGenerator;
import java.security.KeyPair;
import java.security.SecureRandom;
import java.security.spec.PKCS8EncodedKeySpec;
import java.security.spec.ECGenParameterSpec;