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
11x Stick to Your Guns | |
9x Caliban | |
8x Heaven Shall Burn | |
7x The Ghost Inside | |
6x Deadlock | |
6x Neaera | |
6x Parkway Drive | |
6x Terror | |
5x Darkest Hour | |
5x Emmure |
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
unsigned char bm_face_happy[] = { | |
0b11111111, 0b11111111, | |
0b00000001, 0b10000000, | |
0b00000001, 0b10000000, | |
0b00000001, 0b10000011, | |
0b00110001, 0b10000100, | |
0b00110001, 0b10001000, | |
0b00000001, 0b10001000, | |
0b00000001, 0b10001000, | |
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
Modules.RainbowMode = (function() { | |
var bcplus = null; | |
var initialize = function(_bcplus) { | |
bcplus = _bcplus; | |
buildUI(); | |
addEventListeners(); | |
}; | |
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
class Bubble { | |
float x = random(0, width); | |
float y = height; | |
void zeichnung() { | |
fill(0, 200, 220); | |
stroke(0, 127, 220); | |
ellipse(x, y, 20, 20); | |
} | |
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 com.leon.hfu.vacationHomeCalculation; | |
import java.util.Arrays; | |
import java.util.Scanner; | |
import java.util.Vector; | |
import com.leon.hfu.customDate.Date; | |
import com.leon.hfu.customDate.DateFormatException; | |
/** |
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 com.leon.hfu.customDate; | |
import java.util.Calendar; | |
/** | |
* Custom date class containing methods for date calculation. | |
* | |
* @author Stefan Hahn | |
*/ | |
public class Date implements Comparable<Date> { |
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 com.leon.uni; | |
import java.awt.Component; | |
import java.awt.EventQueue; | |
import java.awt.GraphicsEnvironment; | |
import java.awt.Point; | |
import java.awt.Rectangle; | |
import java.awt.Toolkit; | |
import java.awt.event.MouseAdapter; | |
import java.awt.event.MouseEvent; |
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.HashMap; | |
/** | |
* @author Stefan | |
*/ | |
public class PizzaService { | |
public double calculatePizzaCost(int numberOfPizza, String typeOfPizza) throws IllegalArgumentException { | |
double[] extraCost = {4.3, 3.75, 2.5, 1.75}; | |
HashMap<String, Number> typeToIndex = new HashMap<String, Number>(); | |
NewerOlder