Skip to content

Instantly share code, notes, and snippets.

View mbround18's full-sized avatar
๐Ÿ˜
Designing

Michael mbround18

๐Ÿ˜
Designing
View GitHub Profile
@mbround18
mbround18 / haiku
Created April 2, 2019 22:34
Perl Haiku
#!/usr/bin/perl
use strict;
use warnings;
ย 
# Print a message.
/**********************************************************************
* Program: PRG/421 Week 1 Analyze Assignment
* Purpose: Analyze the coding for an abstract class
* and two derived classes, including overriding methods
* Programmer: Iam A. Student
* Class: PRG/421r13, Java Programming II
* Instructor:
* Creation Date: December 13, 2017
*
* Comments:
package models;
public class User {
private String first;
private String last;
public User(
String firstName,
String lastName
# Rules
1. [Player's D&D Basic Rules](http://media.wizards.com/2016/downloads/DND/PlayerBasicRulesV03.pdf)
2. Technology is permitted as long as it is not distracting.
3. Roleplay and acting out scenes is very welcome as long as it doesnt get out of hand.
4. As a Player Character please make sure you know your skills, stats, and other counts. Although looking things up is fine, try and limit the amount of book time as to slowed down the session.
5. If you cannot make a session please let the DM know as soon as possible. That way the sesson can be rescheduled.
# Define a function to draw and fill an equalateral right
# triangle with the given hypotenuse length and color. This
# is used to create a roof shape.
def drawTriangle(t, length, color):
t.fillcolor(color)
t.begin_fill()
t.forward(length)
@mbround18
mbround18 / turtle_farm.py
Created July 24, 2018 03:25
cyb130 week2
import time
import turtle
import math
import random
# Set the background color
screen = turtle.Screen()
screen.bgcolor("skyblue")
# Define a funtion to draw and fill a rectangle with the given
<h1>Privacy Policy of gitlab.boop.ninja</h1>
<p>gitlab.boop.ninja operates the https://gitlab.boop.ninja website, which provides the SERVICE.</p>
<p>This page is used to inform website visitors regarding our policies with the collection, use, and disclosure of Personal Information if anyone decided to use our Service, the gitlab.boop.ninja website.</p>
<p>If you choose to use our Service, then you agree to the collection and use of information in relation with this policy. The Personal Information that we collect are used for providing and improving the Service. We will not use or share your information with anyone except as described in this Privacy Policy.</p>
<p>The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at https://gitlab.boop.ninja, unless otherwise defined in this Privacy Policy.</p>
[ServerSettings]
allowThirdPersonPlayer=0
alwaysNotifyPlayerJoined=0
alwaysNotifyPlayerLeft=0
DayCycleSpeedScale=1.00000
DayTimeSpeedScale=1.00000
NightTimeSpeedScale=1.00000
DinoCharacterFoodDrainMultiplier=1.00000
DinoCharacterHealthRecoveryMultiplier=1.00000
DinoCharacterStaminaDrainMultiplier=1.00000
@mbround18
mbround18 / index.html
Created November 19, 2017 22:57
Hello world html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<p>Hello World!</p>
</body>
</html>