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 game1024.test; | |
import game1024.*; | |
import org.junit.*; | |
import java.util.*; | |
import static org.junit.Assert.*; | |
public class TenTwentyFourTester { |
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 game1024; | |
import game1024.Cell; | |
import java.util.ArrayList; | |
/** | |
* Created by Hans Dulimarta | |
*/ | |
public interface NumberSlider { |
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 game1024.ui; | |
import game1024.*; | |
import java.util.ArrayList; | |
import java.util.Scanner; | |
/** | |
* Created by Hans Dulimarta | |
*/ |
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"> | |
<body> | |
Hello World! | |
</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
package cs163.arrays2d; | |
import cs163.arrays2d.TwoDimensionalArrays; | |
import org.junit.Test; | |
import static org.junit.Assert.*; | |
/** | |
* Created by Hans Dulimarta (Fall 2017). | |
*/ |
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 cs163.arrays2d; | |
/** | |
* Created by Hans Dulimarta (Fall 2017). | |
*/ | |
public class TwoDimensionalArrays { | |
/** | |
* Given a 2D array of integers, sumOfOdd() returns the sum of all the odd | |
* numbers in the array |
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 xmlns="http://www.w3.org/1999/html"> | |
<head lang="en"> | |
<meta charset="UTF-8"/> | |
<title>Random Text</title> | |
<link rel="stylesheet" href="https://www.cis.gvsu.edu/~dulimarh/CS371/hw3-style.css"/> | |
<!-- lorem-ipsum.js: https://gist.github.com/rviscomi/1479649 --> | |
<script src="https://www.cis.gvsu.edu/~dulimarh/CS371/lorem-ipsum.js"></script> | |
<script src="https://www.cis.gvsu.edu/~dulimarh/CS371/hw3-verifier.js"></script> | |
<script src="hw3-functions.js"></script> |
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"> | |
<link rel="stylesheet" href="https://www.cis.gvsu.edu/~dulimarh/CS371/hw3-style.css"/> | |
<script src="https://www.cis.gvsu.edu/~dulimarh/CS371/lorem-ipsum.js"></script> | |
<script src="https://www.cis.gvsu.edu/~dulimarh/CS371/hw3-verifier.js"></script> | |
<script src="hw3-functions.js"></script> | |
<title>Generated Table</title> | |
</head> |
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 edu.gvsu.cis; | |
public class WebClient { | |
public static void main(String[] args) { | |
String hostName = "localhost"; | |
int portNumber = 8000; | |
// Step 1: Create a socket that connects to the above host and port number |
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
apply plugin: 'com.android.application' | |
apply plugin: 'kotlin-android' | |
android { | |
compileSdkVersion 24 | |
buildToolsVersion "25.0.2" | |
// other settings not shown | |
flavorDimensions "lang" |