Skip to content

Instantly share code, notes, and snippets.

View eliserene's full-sized avatar

Elise Dettrick eliserene

  • Brisbane, Australia
View GitHub Profile
[
{
"name": "Keeb.io Iris",
"switchMount": "cherry",
"plate": false,
"pcb": true
},
[
{
"y": 0.25,

Keybase proof

I hereby claim:

  • I am eliserene on github.
  • I am eliserene (https://keybase.io/eliserene) on keybase.
  • I have a public key ASAQu06lEi42mRXoBy8XJqQ6XB2XKwV7baqSzYolKmwxTgo

To claim this, I am signing this object:

@eliserene
eliserene / full.atom
Created November 15, 2012 01:07
2012testatom
<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>Course Links</title>
<entry>
<title>How to enrol</title>
<link rel="alternate" type="text/html" href="http://www.uq.edu.au/enrolment/"/>
<category label="General Info" scheme="http://www.uq.edu.au/startingatuq/#info" term="general"/>
<content>The enrolment website has important information that will help you with finalising your enrolment including how to add and maintain your personal details, enrol, seek commonwealth assistance, choose your courses, organise your timetable, obtain your student ID card, pay fees and charges (including HECS or student contribution amounts) and change to a related dual degree.</content>
</entry>
<entry>
@eliserene
eliserene / gist:3374767
Created August 17, 2012 00:20
Javascript BlackJack
// Our deal function will return a random card
var deal = function() {
card = Math.floor(Math.random() * 52 + 1);
return card;
};
// Deal out our first hand
var card1 = deal();
var card2 = deal();
@eliserene
eliserene / gist:1258692
Created October 3, 2011 08:20
creating dsa keys
the old way:
$ openssl dsaparam -outform PEM -out {params_file.pem} 2048
$ openssl gendsa -out {private_key_file.pem} {the file you generated above}
$ openssl dsa -in {private_key_file.pem} -pubout -out {public_key_file.pem}
The new way:
$ openssl genpkey -genpram -algorithm DSA -out {params_file.pem} -pkeyopt dsa_paramgen_bits:2048
$ openssl genkey -paramfile {the file you generated above} -out {private_key_file.pem}
$ openssl dsa -in {private_key_file.pem} -pubout -out {private_key_file.pem}