I hereby claim:
- I am WesJD on github.
- I am wesjd (https://keybase.io/wesjd) on keybase.
- I have a public key whose fingerprint is 2D4E 5102 FB35 F44A 5F87 8E31 CC84 19FE 13F1 707C
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| // ==UserScript== | |
| // @name Remove Covid Banner | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description Removes the covid banner from on top of Canvas | |
| // @author You | |
| // @match *umd.instructure.com* | |
| // @grant none | |
| // ==/UserScript== |
| MariaDB [(none)]> use michelle; | |
| MariaDB [michelle]> create table items (type VARCHAR(75) NOT NULL, broken BOOL NOT NULL, used BOOL NOT NULL DEFAULT TRUE, got_date TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, last_used TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP);Query OK, 0 rows affected (0.01 sec) | |
| MariaDB [michelle]> DESCRIBE items; | |
| +-----------+-------------+------+-----+-------------------+-------+ | |
| | Field | Type | Null | Key | Default | Extra | | |
| +-----------+-------------+------+-----+-------------------+-------+ | |
| | type | varchar(75) | NO | | NULL | | | |
| | broken | tinyint(1) | NO | | NULL | | | |
| | used | tinyint(1) | NO | | 1 | | |
| package net.wesjd.rockpaperscissors | |
| import java.util.concurrent.ThreadLocalRandom | |
| import scala.collection.JavaConverters | |
| import scala.io.StdIn._ | |
| import scala.reflect.ClassTag | |
| class RockPaperScissors { |
| import javax.swing.JOptionPane; | |
| public class CarRental { | |
| private CarRental() { | |
| final String make = JOptionPane.showInputDialog("What is the car make?"); | |
| final String model = JOptionPane.showInputDialog("What is the car model?"); | |
| final String licensePlate = JOptionPane.showInputDialog("What is the license plate value?"); | |
| final int digits = Integer.parseInt(licensePlate.substring(4)); |
I hereby claim:
To claim this, I am signing this object:
| public class FileManager { | |
| private final JavaPlugin plugin; | |
| private final List<ManagedFile> managedFiles = new ArrayList<>(); | |
| public FileManager(JavaPlugin plugin) { | |
| this.plugin = plugin; | |
| plugin.getDataFolder().mkdirs(); | |
| } |