I hereby claim:
- I am kiliankoe on github.
- I am kilian (https://keybase.io/kilian) on keybase.
- I have a public key ASCz4sJieKckxHJqOiR30vsRPg47ypoeanEFpDPUAuPuigo
To claim this, I am signing this object:
package de.tudresden.inf.mms; | |
import java.awt.Image; | |
import java.awt.image.BufferedImage; | |
/** | |
* @author Kilian Koeltzsch, 3848487 | |
* | |
*/ | |
@SuppressWarnings("JavadocReference") |
===== 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++; |
// Module dependencies | |
var express = require('express'), | |
mysql = require('mysql'); | |
// Application initialization | |
var connection = mysql.createConnection({ | |
host : 'localhost', | |
user : 'root', |
#! /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" |
// 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) |
/* | |
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 |
#! /usr/bin/env ruby | |
require 'mechanize' | |
mechanize = Mechanize.new | |
poll_name = ARGV[0] | |
options = ARGV.slice(1,ARGV.count) | |
I hereby claim:
To claim this, I am signing this object:
#! /usr/bin/env ruby | |
require 'net/http' | |
require 'cloudflare' | |
# Email used for login | |
CLOUDFLARE_EMAIL = ENV["CLOUDFLARE_EMAIL"] | |
# API Key, can be found here => https://www.cloudflare.com/a/account/my-account | |
CLOUDFLARE_API_KEY = ENV["CLOUDFLARE_API_KEY"] |