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:
public class Muenze { | |
private int farbe; | |
public Muenze(int farbe) { | |
// TODO Auto-generated constructor stub | |
this.farbe = farbe; | |
} | |
public void zeichnen() { |
#!/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 |
package sys; | |
import js.Node; | |
using StringTools; | |
#if !macro | |
/** | |
This class allows you to get informations about the files and directories. | |
**/ |
package ; | |
import js.Node; | |
@:coreApi class Sys | |
{ | |
public static function sleep( seconds : Float ) : Void { | |
#if nodejsSleepFallback | |
var stopTime : Float = time() + seconds; |
This is a place where i put images postet in Chats |
I hereby claim:
To claim this, I am signing this object:
import time | |
import xml.etree.ElementTree as ET | |
# Create test data | |
ITERATIONS = 10000 | |
TEXT_WITH_SPECIAL_CHARS = "This is a test with <, >, &, and other symbols. " * 1000 | |
TEXT_ESCAPED = TEXT_WITH_SPECIAL_CHARS.replace("&", "&").replace("<", "<").replace(">", ">") | |
PLAIN_TEXT = "This is a test with only plain text and no special characters. " * 1000 | |
def generate_xml_with_cdata(text): |