Skip to content

Instantly share code, notes, and snippets.

View HopperMCS's full-sized avatar

G. F. Hopper HopperMCS

View GitHub Profile
' Program Name: Pizza Project
' Program Description: Logs user in, then allows them to order a pizza with toppings. Calculates pizza price and delivery charges if applicable.
' This program also will show how many pizzas were ordered and deliveries that were made.
' Programmer: Matthew Gage Morgan
' Date: March 25th, 2019
Option Strict On
Public Class PizzaProject
' declare the two vars needed for running totals
Private GrandTotalPizzasOrdered As Integer
@HopperMCS
HopperMCS / logo.rs
Last active July 20, 2017 18:52
#WetA$$Code
extern crate cairo;
use std::error::Error;
use std::fs::File;
use std::io::prelude::*;
use std::path::Path;
use cairo::{Context, ImageSurface, Format};
use std::fs;
fn main() {
@HopperMCS
HopperMCS / playground.rs
Created July 1, 2017 03:47 — forked from anonymous/playground.rs
Rust code shared from the playground
enum Gender {
Agender,
}
struct Details {
name: String,
description: String,
sentence: String,
}
@HopperMCS
HopperMCS / playground.rs
Created June 27, 2017 05:54 — forked from anonymous/playground.rs
Rust code shared from the playground
fn main() {
enum IsGender {
Yes,
No,
}
fn is_gender(is_gender: IsGender) -> String {
match is_gender {
IsGender::Yes => String::from("Status: Is A Gender"),
@HopperMCS
HopperMCS / JayEdmundson.md
Last active July 7, 2017 10:54
Interview for OOD

Interview with

Jay Edmundson

Notes (both programming AND consulting, double-whammy!!!!

Started about 100 years ago (lmao) in the mid-90s - in real estate and thought "This vb stuff looks relly cool" so took credit class for and learned programming

Works on gov't projects - solving problems

Problem solving, need to be lazy - find a better way to do it, all about shortcuts

@HopperMCS
HopperMCS / InterviewChad.md
Last active June 14, 2017 00:18
My Interview with Chad Bryant

Interview #1

With whome?

Chad Bryant

Where?

UNOH Campus

Job? (Not mine, however still in tech field):

@HopperMCS
HopperMCS / installed-programs.txt
Created June 13, 2017 00:19
EVERY PROGRAM I'VE EVER INSTALL IN FEDORA SINCE 06/12/2017
Last metadata expiration check: 22:29:15 ago on Sun Jun 11 21:46:10 2017 EDT.
Installed Packages
Cg.x86_64 3.1.0013-6.fc26 @@commandline
GConf2.x86_64 3.2.6-17.fc26 @@commandline
GConf2-devel.x86_64 3.2.6-17.fc26 @@commandline
GeoIP.x86_64 1.6.11-1.fc26 @updates-testing
GeoIP-GeoLite-data.noarch 2017.05-1.fc26 @@commandline
GraphicsMagick.x86_64 1.3.25-6.fc26 @@commandline
ImageMagick.x86_64 6.9.3.0-6.fc26 @@commandline
ImageMagick-c++.x86_64 6.9.3.0-6.fc26 @@commandline
@HopperMCS
HopperMCS / playground.rs
Created June 3, 2017 01:23 — forked from anonymous/playground.rs
Shared via Rust Playground
struct Triangle {
base: f32,
height: f32
}
trait Area {
fn triangle(&self) -> f32;
}
impl Area for Triangle {
@HopperMCS
HopperMCS / HcOa-2.py
Created May 2, 2017 18:21
null created by mgagemorgan - https://repl.it/HcOa/2
"""
(304, 270)
(311, 380)
(252, 326)
Current slopes needed:
(304, 270)(311, 380) -> Side 1
(311, 380)(252, 326) -> Side 2
@HopperMCS
HopperMCS / HcOa-0.py
Created May 2, 2017 18:12
null created by mgagemorgan - https://repl.it/HcOa/0
"""
(304, 270)
(311, 380)
(252, 326)
Current slopes needed:
(304, 270)(311, 380) -> Side 1
(311, 380)(252, 326) -> Side 2