This file contains 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 com.sk89q.mappad.apps; | |
import java.awt.Color; | |
import java.awt.Image; | |
import java.awt.image.BufferedImage; | |
import java.io.FileNotFoundException; | |
import java.io.IOException; | |
import java.net.URL; | |
import java.net.URLConnection; | |
import java.util.Random; |
This file contains 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
diff --git a/src/main/java/org/bukkit/Material.java b/src/main/java/org/bukkit/Material.java | |
new file mode 100755 | |
index 0000000..699d5ea | |
--- /dev/null | |
+++ b/src/main/java/org/bukkit/Material.java | |
@@ -0,0 +1,617 @@ | |
+package org.bukkit; | |
+ | |
+import java.lang.reflect.*; | |
+import java.util.*; |
This file contains 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 com.roketgamer.net; | |
import java.util.ArrayList; | |
public class ServerStatusListener { | |
private static ArrayList<ServerStatusListener> listeners = new ArrayList<ServerStatusListener>(); | |
/** | |
* Constructs <code>ServerStatusListener</code> object | |
*/ |
This file contains 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
/* | |
* JPII Robotics 2012 | |
* Main.C - 10/19/12 | |
* (c) 2012 Max Kirkby & Thomas Gaubert | |
* | |
* Licensed under GNU General Public License v3.0 <http://www.gnu.org/licenses/gpl.html>. | |
*/ | |
int motorArmUpDown = port2; // Moves arm up and down. | |
int motorVertical = port3; // Moves robot up and down. | |
int motorArmBase = port6; // Base rotation |
This file contains 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
var $options = $("#options"); | |
var options = [ | |
{id: "0", value: "Select one..."}, | |
{id: "1", value: "Choice 1"}, | |
{id: "2", value: "Choice 2"}, | |
{id: "3", value: "Choice 3"}, | |
{id: "4", value: "Choice 4"} | |
]; |
This file contains 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
<?xml version="1.0" encoding="utf-8"?> | |
<resources> | |
<!-- Global Strings --> | |
<string name="app_name">Tockle</string> | |
<string name="app_authors">Thomas Gaubert & Stephen Ziske</string> | |
<string name="app_author_tgaubert">Thomas Gaubert</string> | |
<string name="app_author_sziske">Stephen Ziske</string> | |
<string name="ok">OK</string> | |
<string name="yes">Yes</string> |
This file contains 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
from gmusicapi import Webclient | |
# Use Google account credintials. If two factor is enabled, use application specific password. | |
email = '[email protected]' | |
password = 'password' | |
api = Webclient() | |
logged_in = api.login(email, password) | |
# logged_in is True if login was successful |
This file contains 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
from gmusicapi import Webclient | |
from gmusicapi import Mobileclient | |
import vlc | |
import urllib | |
# Use Google account credintials. If two factor is enabled, use application specific password. | |
email = '[email protected]' | |
password = 'password' | |
# Device ID for API queries. Leave blank if unknown. |
This file contains 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
{ | |
"name": "Project Name", | |
"version": "1.0.5", | |
"versionCode": 7, | |
"updateFirst": false, | |
"minVersion": 1, | |
"url": "https://gist.githubusercontent.com/TexasGamer/712a6df3ea7c563fc438/raw/", | |
"tasks":[ | |
{ | |
"name": "Update Program", |
This file contains 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 jmevr; | |
import com.jme3.scene.Geometry; | |
import jmevr.input.VRInput; | |
public class DefaultInput implements Input { | |
public InputMode getInputMode() { | |
return InputMode.DEFAULT; | |
} |
OlderNewer