Skip to content

Instantly share code, notes, and snippets.

View BlackthornYugen's full-sized avatar

John Steel BlackthornYugen

View GitHub Profile
@BlackthornYugen
BlackthornYugen / Mail_API.md
Last active October 1, 2015 13:02
API specification for a mail service
@BlackthornYugen
BlackthornYugen / ocsp_test.md
Last active February 23, 2016 17:57
This is a script that verifies a site's certificate using OCSP via openssl

OCSP Test

Examples

Good certificate

sh ./ocsp_test.sh google.ca
======== Downloading certificates ========
Saving certificate in "ssl_certificate_nAy.pem"...
10.8kB 0:00:00 [ 124kB/s] [   <=>                                                                                                                                                                  ]
Saving certificate chain in "ssl_certificate_chain_kL9.pem"...
2.63kB 0:00:00 [  40kB/s] [   <=>                                                                                                                                                                  ]

Keybase proof

I hereby claim:

  • I am blackthornyugen on github.
  • I am jsteel (https://keybase.io/jsteel) on keybase.
  • I have a public key whose fingerprint is 9E51 C6A0 D9A7 2863 28EA 1013 A356 539D 1BAA 7B27

To claim this, I am signing this object:

@BlackthornYugen
BlackthornYugen / GameOfLife.js
Last active January 2, 2016 05:59
A JS version of Conway's Game of Life SRC: https://jsbin.com/OqaYefOl/
/*\ A JS version of Conway's Game of Life v0.14
|*|
|*| Revision History
|*| 2013-12-30 - 1605: Setup countElementsFrom to keep track of coords.
|*| 2013-12-30 - 1743: Added statics on hover.
|*| 2014-01-02 - 0433: Began refactoring code to OOP.
|*| 2014-01-02 - 0606: Making signifigent changes to scope on events.
|*| 2014-01-02 - 2157: Changing code logic to optimize speed. Current method is extreamly wastefull. Checking ajacent cells of cells that are no where near living cells.
|*| 2014-01-03 - 1240: Milestone .12 got it mostly working but auto-step needs to be a seperate function.
|*| 2014-01-04 - 1309: Built autostep dealie.