This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Title</title> | |
</head> | |
<body> | |
<p>Hello World!</p> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package models; | |
public class User { | |
private String first; | |
private String last; | |
public User( | |
String firstName, | |
String lastName |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/********************************************************************** | |
* 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: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
use strict; | |
use warnings; | |
# Print a message. |