I hereby claim:
- I am dsoverby1986 on github.
- I am shaneoverby (https://keybase.io/shaneoverby) on keybase.
- I have a public key ASCtIdKRuYGRIulH33qTCAtjZgzPqkeDD16yDnT2nkxJzQo
To claim this, I am signing this object:
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Anatomy - Narwhal: The Unicorn of the Sea</title> | |
<style> | |
:root { | |
--primary: #2E3B4E; | |
--secondary: #4ECDC4; |
I hereby claim:
To claim this, I am signing this object:
var usTerritoryCapitals = [ | |
{ name: 'Pago Pago', territoryAbbrev: 'AS' }, | |
{ name: 'Hagåtña', territoryAbbrev: 'GU' }, | |
{ name: 'Saipan', territoryAbbrev: 'MP' }, | |
{ name: 'San Juan', territoryAbbrev: 'PR' }, | |
{ name: 'Charlotte Amalie', territoryAbbrev: 'VI' } | |
]; |
var territoriesUS = [ | |
{ name: 'American Samoa', abbrev: 'AS' }, | |
{ name: 'Guam', abbrev: 'GU' }, | |
{ name: 'Northern Mariana Islands', abbrev: 'MP' }, | |
{ name: 'Puerto Rico', abbrev: 'PR' }, | |
{ name: 'U.S. Virgin Islands', abbrev: 'VI' } | |
]; |
var stateCapitals = [ | |
{ name: 'Montgomery', stateAbbrev: 'AL' }, | |
{ name: 'Juneau', stateAbbrev: 'AK' }, | |
{ name: 'Phoenix', stateAbbrev: 'AZ' }, | |
{ name: 'Little Rock', stateAbbrev: 'AR' }, | |
{ name: 'Sacramento', stateAbbrev: 'CA' }, | |
{ name: 'Denver', stateAbbrev: 'CO' }, | |
{ name: 'Hartford', stateAbbrev: 'CT' }, | |
{ name: 'Dover', stateAbbrev: 'DE' }, | |
{ name: 'Tallahassee', stateAbbrev: 'FL' }, |
var states = [ | |
{ name: 'Alabama', abbrev: 'AL' }, | |
{ name: 'Alaska', abbrev: 'AK' }, | |
{ name: 'Arizona', abbrev: 'AZ' }, | |
{ name: 'Arkansas', abbrev: 'AR' }, | |
{ name: 'California', abbrev: 'CA' }, | |
{ name: 'Colorado', abbrev: 'CO' }, | |
{ name: 'Connecticut', abbrev: 'CT' }, | |
{ name: 'Delaware', abbrev: 'DE' }, | |
{ name: 'Florida', abbrev: 'FL' }, |
/* | |
I've wrapped the calls to setRandomNumber() and setCrystalValues() in the window ready function so that | |
so that they won't be called until the page has completely loaded all elements. I am doing this to because | |
both of these functions work with DOM elements and I want to make sure that the elements exist before trying | |
to access them. | |
Also, have included a jQuery click event handler in the window ready function so that it's bound to the button image | |
elements only after they are loaded in the DOM. | |
*/ | |
$(function(){ |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text.RegularExpressions; | |
namespace ConsoleApp | |
{ | |
class Program | |
{ | |
static void Main(string[] args) |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text.RegularExpressions; | |
namespace NumberGuessingGame | |
{ | |
class Program | |
{ | |
private const string _MIN = "minimum"; |
using System; | |
using System.Collections.Generic; | |
using System.ComponentModel; | |
using System.Data; | |
using System.Drawing; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
using System.Windows.Forms; |