Skip to content

Instantly share code, notes, and snippets.

View rchasman's full-sized avatar
🇦🇺
Living in Australia

Roey D. Chasman rchasman

🇦🇺
Living in Australia
View GitHub Profile
@rchasman
rchasman / cytosine.json
Last active December 18, 2015 11:49
Cytosine nitrogenous base JSON representation. Made for a d3.js force directed graph.
{
"nodes": [
{"atom": "H", "size": 1},
{"atom": "C", "size": 12},
{"atom": "N", "size": 14},
{"atom": "H", "size": 1},
{"atom": "C", "size": 12},
{"atom": "O", "size": 16},
{"atom": "N", "size": 14},
{"atom": "C", "size": 12},
@rchasman
rchasman / thymine.json
Last active December 18, 2015 11:49
Thymine nitrogenous base JSON representation. Made for a d3.js force directed graph.
{
"nodes": [
{"atom": "C", "size": 12},
{"atom": "H", "size": 1},
{"atom": "H", "size": 1},
{"atom": "H", "size": 1},
{"atom": "C", "size": 12},
{"atom": "C", "size": 12},
{"atom": "O", "size": 16},
{"atom": "N", "size": 14},
@rchasman
rchasman / CSC 352 Prog1
Created August 31, 2012 23:54
This was the first assignment given to us by McCann, it parses passed arguments to be unique, and ordered from largest to smallest.
/*=============================================================================
| Assignment: Program #1: Short to Long Uniques Argument List
| Author: Roey Chasman (rchasman@email.arizona.edu)
| Grader: Sam Martin
|
| Course: 352
| Instructor: L. McCann
| Due Date: 8/30/12 5:00pm
|
| Description: A program that accepts a variety of command-line arguments,