Skip to content

Instantly share code, notes, and snippets.

View zcdziura's full-sized avatar

Z. Charles Dziura zcdziura

View GitHub Profile
@zcdziura
zcdziura / elementary-os-colors.xml
Created February 26, 2021 21:38
Elementary OS Colors as Android Res XML
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="strawberry_100">#ff8c82</color>
<color name="strawberry_300">#ed5353</color>
<color name="strawberry_500">#c6262e</color>
<color name="strawberry_700">#a10705</color>
<color name="strawberry_900">#7a0000</color>
<color name="orange_100">#ffc27d</color>
@zcdziura
zcdziura / PlayerWho.xml
Last active October 19, 2016 23:03
A simple Lusternia reflex allowing users to see additional information about other players. Written for the Mudlet client.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE MudletPackage>
<MudletPackage version="1.0">
<TriggerPackage/>
<TimerPackage/>
<AliasPackage>
<AliasGroup isActive="yes" isFolder="yes">
<name>Player Who</name>
<script></script>
<command></command>
@zcdziura
zcdziura / Crypto Test
Last active July 13, 2023 05:08
Encryption using Elliptic Curves and Diffie-Hellman key exchanges
import java.io.UnsupportedEncodingException;
import java.security.InvalidAlgorithmParameterException;
import java.security.InvalidKeyException;
import java.security.Key;
import java.security.KeyPair;
import java.security.KeyPairGenerator;
import java.security.NoSuchAlgorithmException;
import java.security.NoSuchProviderException;
import java.security.PrivateKey;
import java.security.PublicKey;