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
/* | |
Monster Hunter | |
Kilian Koeltzsch | |
started 07.02.2006 | |
Changelog: | |
v1 Entire game written and compiled, works like a charm | |
v1.1 Added the Build Village function. Fixed a few typos and one bug. | |
v1.2 Added magic attacks (more will come) and the shop to buy items (only health refills for now) | |
v1.3 Bug fixes and mana potions available at shop |
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
// These come from flatuicolors.com, thanks for the site @ahmetsulek! | |
import UIKit | |
struct Colors { | |
static let turquoise = UIColor(red: 26.0/255.0, green: 188.0/255.0, blue: 156.0/255.0, alpha: 1.0) | |
static let greenSea = UIColor(red: 22.0/255.0, green: 160.0/255.0, blue: 133.0/255.0, alpha: 1.0) | |
static let sunFlower = UIColor(red: 241.0/255.0, green: 196.0/255.0, blue: 15.0/255.0, alpha: 1.0) | |
static let orange = UIColor(red: 243.0/255.0, green: 156.0/255.0, blue: 18.0/255.0, alpha: 1.0) |
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
#! /bin/sh | |
echo "FPS: " | |
read input_fps | |
echo "Copying files into tmp dir" | |
mkdir tmp/ | |
find ./ -name "*.jpg" -exec cp -i {} ./tmp/ > /dev/null \; | |
echo "Joining files into video$input_fps.mp4" |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
// Module dependencies | |
var express = require('express'), | |
mysql = require('mysql'); | |
// Application initialization | |
var connection = mysql.createConnection({ | |
host : 'localhost', | |
user : 'root', |
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
===== Mine ===== | |
"Incorrect Submission | |
Check out your syntax for semicolon, parentheses, or bracket issues." | |
function warningMaker( obstacle ){ | |
var count = 0; | |
var zones = []; | |
return function ( number, location ) { | |
count++; |
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 de.tudresden.inf.mms; | |
import java.awt.Image; | |
import java.awt.image.BufferedImage; | |
/** | |
* @author Kilian Koeltzsch, 3848487 | |
* | |
*/ | |
@SuppressWarnings("JavadocReference") |
NewerOlder