I hereby claim:
- I am deltachaos on github.
- I am deltachaos (https://keybase.io/deltachaos) on keybase.
- I have a public key ASAf6UK68VczQnUnmEJZtay66qGHsw2GJ-46GkalWNnTogo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
This is a place where i put images postet in Chats |
package ; | |
import js.Node; | |
@:coreApi class Sys | |
{ | |
public static function sleep( seconds : Float ) : Void { | |
#if nodejsSleepFallback | |
var stopTime : Float = time() + seconds; |
package sys; | |
import js.Node; | |
using StringTools; | |
#if !macro | |
/** | |
This class allows you to get informations about the files and directories. | |
**/ |
#!/bin/bash | |
# | |
# Short hacked script to automatically increase | |
# the serial of a zonehead file for BIND9. The | |
# zonehead file has the following format. | |
# | |
# Examle zonehead file | |
# ==================== | |
# $TTL 86400 |
public class Muenze { | |
private int farbe; | |
public Muenze(int farbe) { | |
// TODO Auto-generated constructor stub | |
this.farbe = farbe; | |
} | |
public void zeichnen() { |
function testCompositeImage() { | |
echo "<h2>compositeImage</h2>"; | |
$this->ImageMagickCanvas = new ImageMagickCanvasLib(400, 500, 'red'); | |
//$this->ImageMagickCanvas->setBackgroundColor('red'); | |
$this->ImageMagickCanvas->ellipse(10, 10, 100, 200); | |
$res = $this->ImageMagickCanvas->newLayer(130, 200, 'yellow'); | |
$res->loadFromFile(dirname(__FILE__).DS.'imagick'.DS.'test.jpg'); |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<title>yt18</title> | |
<style type="text/css"> | |
body { | |
background-color: #abcdef; | |
overflow: hidden; | |
text-decoration: bold; |
/** | |
* StrongTypes (http://github.com/fireflyjs/strongtypesjs) | |
* Copyright 2012, Maximilian Ruta <[email protected]> (http://deltachaos.de/) | |
* | |
* This is a Type System for JavaScript. It is desinged to run | |
* on node.js and in the Browser. Tested with: | |
* • Chromium 15 | |
* • Firefox 8 | |
* • Opera 11.52 | |
* • Internet Explorer 9 |