Skip to content

Instantly share code, notes, and snippets.

View GrunclePug's full-sized avatar
it's not a problem if I don't admit it.

Chad Humphries GrunclePug

it's not a problem if I don't admit it.
View GitHub Profile
first_name = str(input("What is your first name?: "))
middle_name = str(input("What is your middle name?: "))
last_name = str(input("What is your last name?: "))
good = "Oh that's wonderful!"
bad = "Oh I'm sorry to hear :("
idk = "Well, at least you're not upset."
first_name = first_name.capitalize()
middle_name = middle_name.capitalize()
@GrunclePug
GrunclePug / Python Discord Bot
Last active April 17, 2018 04:33
Python Discord Bot
//Made By: @GrunclePug#7015
@GrunclePug
GrunclePug / C# Discord Bot
Last active March 9, 2022 14:56
C# Discord Bot
//Discord Bot By: @GrunclePug#7015
@GrunclePug
GrunclePug / Word Filteration Discord Python
Created June 27, 2018 22:12
Word Filteration Discord Python
#Discord Bot by GrunclePug#7015
#Libraries
import discord
from discord.ext import commands
import asyncio
import platform
#Bot setup
version = "Gruncle Word Filteration v0.1"
@GrunclePug
GrunclePug / Person.class
Created May 26, 2019 08:13
COMP 1409 | Lab01
/**
* Class that models a Person.
*
* @author Chad
* @version 1.0
*/
public class Person
{
String firstName;
String lastName;
@GrunclePug
GrunclePug / Person.class
Created May 26, 2019 08:22
COMP 1409 | Lab02
/**
* Class that models a Person.
*
* @author Chad
* @version 1.1
*/
public class Person
{
private int age;
private double height; // cm
@GrunclePug
GrunclePug / Person.class
Created May 26, 2019 08:23
COMP 1409 | Lab03
/**
* Class to model a Person
*
* Lab 3
*
* @author Chad
* @version 1.2
*/
public class Person
{
@GrunclePug
GrunclePug / Person.class
Created May 26, 2019 08:26
COMP 1409 | Lab04
/**
* Class to model a Person
*
* Lab 4
*
* @author Chad
* @version 1.3
*/
public class Person
{
@GrunclePug
GrunclePug / Vehicle.class
Created May 26, 2019 12:21
COMP 1409 | Assignment01
/**
* Class to model a Vehicle
*
* Assignment 1
*
* @author Chad
* @version 1.0
*/
public class Vehicle
{
@GrunclePug
GrunclePug / Customer.class
Created July 5, 2019 01:35
COMP 1409 | Assignment 3
/**
* Information for customers renting a musical instrument.
*
* @author Chad
* @version 1.0
*/
public class Customer
{
private String firstName;
private String lastName;