Skip to content

Instantly share code, notes, and snippets.

View kiliankoe's full-sized avatar
👩‍💻

Kilian Koeltzsch kiliankoe

👩‍💻
View GitHub Profile
@kiliankoe
kiliankoe / ImageEditor.java
Created April 28, 2014 12:00
Aufgabe 1: Bildverarbeitung Medien und Medienströme @ TU Dresden SS14
package de.tudresden.inf.mms;
import java.awt.Image;
import java.awt.image.BufferedImage;
/**
* @author Kilian Koeltzsch, 3848487
*
*/
@SuppressWarnings("JavadocReference")
@kiliankoe
kiliankoe / jsrt3-2.11.js
Created May 1, 2014 19:09
Javascript Roadtrip 3 - 2.11
===== 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',
@kiliankoe
kiliankoe / anreise.svg
Created May 21, 2014 21:39
Aufgabe 2: SVG Medien und Medienstroeme @ TU Dresden
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@kiliankoe
kiliankoe / videome.sh
Created May 22, 2014 19:44
Create a timelapse video from a directory of webcam images
#! /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"
@kiliankoe
kiliankoe / Colors.swift
Created April 6, 2015 20:29
flatuicolors swift
// 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)
@kiliankoe
kiliankoe / main.cpp
Created August 10, 2015 12:13
Monster Hunter - My first program ever. A game, written by a 14 year old me.
/*
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)

Keybase proof

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:

@kiliankoe
kiliankoe / clfdns.rb
Last active February 22, 2019 20:37
Cloudflare DynDNS
#! /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"]