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 java.io.FileInputStream; | |
import java.io.IOException; | |
import java.nio.file.FileVisitResult; | |
import java.nio.file.FileVisitor; | |
import java.nio.file.Files; | |
import java.nio.file.Path; | |
import java.nio.file.Paths; | |
import java.nio.file.SimpleFileVisitor; | |
import java.nio.file.attribute.BasicFileAttributes; | |
import java.util.ArrayList; |
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 java.io.BufferedInputStream; | |
import java.io.FileInputStream; | |
import java.io.IOException; | |
import java.net.URL; | |
import javax.xml.XMLConstants; | |
import javax.xml.transform.Source; | |
import javax.xml.transform.stream.StreamSource; | |
import javax.xml.validation.Schema; | |
import javax.xml.validation.SchemaFactory; |
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 java.math.BigInteger; | |
import java.security.SecureRandom; | |
import java.util.HashSet; | |
import java.util.Random; | |
import java.util.Set; | |
/** | |
* An efficient implementation of the RSA public-key cipher. All generated | |
* exponents used for encryption and decryption are greater than <code>5</code> | |
* (to secure against basic attacks, e.g. Chinese Remainder Theorem). The |
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 java.util.*; | |
import java.lang.*; | |
//////////////////////////////////////////////////////////////// | |
// A quick and dirty implementation that parses and evaluates a | |
// logical expression in post-fix form. From left to right binary | |
// expressions are extracted (3 tokens), evaluated, and it's result | |
// is inserted into its place. This is done until the expression is | |
// gone. E.g. | |
// |
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
.text | |
main: | |
li $t4, 1, #t4 = counter | |
i1: ori $t0, $0, 1000 | |
i2: ori $t1, $0, 2000 | |
i3: addi $t2, $t0, 100 | |
i4: #lw $t3, 0($t1) | |
i5: #lw $t4, 0($t0) | |
i6: add $t3, $t3, $t4 |
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
.text | |
main: | |
#populate arg registers | |
li $a0, 1 | |
li $a1, 2 | |
li $a2, 3 | |
li $a3, 4 | |
#push 5th arg on stack | |
li $t0, 10 |
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 java.util.ArrayList; | |
import java.util.HashSet; | |
import java.util.LinkedHashSet; | |
import java.util.List; | |
import java.util.Set; | |
/** | |
* | |
* A generic directed graph that doesn't allow duplicate elements and performs | |
* topological sorting to detect cycles. All primitive operations are done in |
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
/** | |
* | |
* Defines a default handler for notification callbacks. | |
* | |
* @author Ryan Beckett | |
* @version 1.0 | |
* | |
*/ | |
public abstract class NotificationHandler { |
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 java.util.*; | |
public class ControllerTest { | |
private static Controller controller = Controller.getInstance(); | |
private static View view = new View(); | |
private static LoginHandler loginHandler = new LoginHandler(); | |
public static void main(String[] args) { | |
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 java.util.*; | |
public class CommentStripper { | |
private StaticTransitionTable transitions; | |
private StringBuilder sb; | |
private int index; | |
private int state; | |
private final char EOF = '@'; |
NewerOlder