rittau.org Report : Visit Site


  • Ranking Alexa Global: # 5,667,474

    Server:nginx/1.10.3...
    X-Powered-By:PHP/7.2.8

    The main IP address: 89.238.65.62,Your server Germany,Sankt Wendel ISP:Manitu GmbH  TLD:org CountryCode:DE

    The description :skip to content sebastian rittau software developer scroll down to content posts posted on 2018-06-01 2018-06-01 python-dectest — improved unittest.testcase i have released the first version of dectes...

    This report updates in 23-Aug-2018

Created Date:2004-06-01

Technical data of the rittau.org


Geo IP provides you such as latitude, longitude and ISP (Internet Service Provider) etc. informations. Our GeoIP service found where is host rittau.org. Currently, hosted in Germany and its service provider is Manitu GmbH .

Latitude: 49.466331481934
Longitude: 7.1681399345398
Country: Germany (DE)
City: Sankt Wendel
Region: Saarland
ISP: Manitu GmbH
    forum.axishistory.com 

HTTP Header Analysis


HTTP Header information is a part of HTTP protocol that a user's browser sends to called nginx/1.10.3 containing the details of what the browser wants and will accept back from the web server.

Content-Length:27163
Strict-Transport-Security:max-age=31536000; includeSubDomains; preload
X-Powered-By:PHP/7.2.8
Content-Encoding:gzip
Vary:Accept-Encoding
Server:nginx/1.10.3
Connection:keep-alive
Link:; rel="https://api.w.org/"
Date:Thu, 23 Aug 2018 10:50:06 GMT
Content-Type:text/html; charset=UTF-8

DNS

soa:dns01.manitu.net. hostmaster.manitu.net. 2017120902 10800 3600 604800 86400
txt:"v=spf1 mx a -all"
ns:dns02.manitu.net.
dns01.manitu.net.
ipv4:IP:89.238.65.62
ASN:34240
OWNER:MANITU, DE
Country:DE
mx:MX preference = 10, mail exchanger = mail.rittau.org.

HtmlToText

skip to content sebastian rittau software developer scroll down to content posts posted on 2018-06-01 2018-06-01 python-dectest — improved unittest.testcase i have released the first version of dectest for python ( github ), an improved version of unittest.testcase . it is a drop-in replacement with two improvements: decorators for tests, setup, and teardown methods. this is not only more explicit than the “magic” names of unittest, it also allows multiple setup and teardown methods per class. a patch() helper method that calls unittest.mock.patch() , but stops the patch during teardown. posted on 2018-05-24 python asserts and json-get with type hints i released new versions of python-asserts (0.8.2) and python-json-get (1.1.0) that include type hints, so that typecheckers like mypy will now be able to type check calls to those libraries. json-get uses asserts for its tests and it’s now possible to type check it without --ignore-missing-imports . in addition, json-get now has a json_get_default() function that returns a default value instead of raising an exception if a path is not found. posted on 2018-03-01 friendly printers at the offices of one of my customers, the printers are extra-friendly. whenever i arrive or leave, they all greet me with a small concert. i suspect that connecting or disconnecting usb devices from my laptop (such as the mouse dongle), cups is sending a broadcast over the network, querying printers of their status. this seems to wake up all epson printers and force them to do a small self-check. this certainly needs more research. posted on 2018-02-16 a blast from the past i guess someone needs to update their download pages: posted on 2018-02-15 2018-02-15 dbupgrade – a database migration tool – published yesterday i published dbupgrade, a simple database migration tool, written in python. it allows you to put database migration files (simple sql files with a special header) into a directory and upgrade your database schema. while this is a new project, it was extracted from an internal library i’ve been using for years and should work fairly reliably for mysql/mariadb and postgres databases. dbupgrade is available at github and at pypi or via pip: pip install dbupgrade . posted on 2010-06-16 2018-03-01 chipcard woes one of my customers, a large dental practice, had a problem from time to time when reading krankenversicherungskarten (german health insurance card, kvk). the insurance number got all garbled up, which led to problems when reading the patient’s insurance data into the health care application. after their sysadmin and i analysed the situation it seemed that the application reading the data from the card and writing it to a file in a custom format was to blame. this program (kvktool) was included with the cherry card reader and had been modified by another consultant to write the read data to a file rather than displaying it on the screen. this c++ program was a huge stinking pile. all card reading was done in a method called ckvktooldlg::onreadcard. the name ckvktooldlg hints at it: this is the class responsible for showing the dialog. (yes, it had been left in the program by the previous consultant. only the dlg.domodal() call had been commented out.) the method was a gigantic 837 lines long and features all kinds of goodies such as lots of copied-and-pasted code that had been modified in some instance to fix bugs, but not in others. after a long refactoring session (which turned into a rewrite), i was able to spot the problem: a wrong workaround to bugs in a sizable amount of kvks. normally, the data on kvks is structured into fields in an arbitrary order. these fields consist of a one-byte tag to identify the field, a one-byte length marker, and then n bytes of data, where n is the length. all kvk fields are identified by tags between 0x80 and 0x92. but all kvk fields are wrapped by a super-field called the “versichten-template” (insurant template, vt) with tag 0x60. thus, data on a typical (non-buggy) kvk card would start like this: 0x60 0x89 0x85 0x09 0x53 0x65 0x62 0x61 … vt tag vt len first name tag first name length seba … now, buggy cards seem to insert a stray 0x81 byte after the 0x60 tag: 0x60 0x81 0x89 0x85 0x09 0x53 0x65 0x62 0x61 … vt tag ??? vt len first name tag first name length seba … this code in the kvktool was supposed to handle this problem: // skip tag 60 and length int i=2; // some cards seem to have a damaged tag 0x89 after 0x81 if (responsearray[1] == 0x81) i++; (snipped the huge indentation.) responsearray is a buffer that contains the kvk data and i is an index into that buffer. this code works fine in most circumstances. it works around cards with the stray byte. but there is one situation where it utterly fails: on correct cards where the versichten-template is exactly 129 bytes long. in this case, the first tag is skipped entirely, which usually is the insurant’s number. since it was not, junk (random memory content) was written to the file in place of the insurant’s number. not good, but hopefully fixed now. posted on 2009-10-11 2017-10-30 virtualbox on i386 with amd64 kernel i have recently started to use an amd64 kernel on my i386 debian unstable system. unfortunately, virtualbox ose does not work with that setup. when i try to start a virtual machine, it fails with an oblique error message: rtr3init failed with rc=-1912 (rc=-1912) the virtualbox kernel modules do not fit to this version of virtualbox. the installation of virtualbox was apparently not successful. executing ‘/etc/init.d/vboxdrv setup’ should fix that problem. make sure that you don’t mix the ose version and the puel version of virtualbox. debian bug #456391 explains the problem. in that report michael meskes alludes to running virtualbox in an amd64 chroot jail, so i tried this myself. it works flawlessly, once i got it setup. here is what i did (as root): robinson:~# mkdir /srv/amd64 robinson:~# cdebootstrap --arch amd64 sid /srv/amd64 http://ftp.debian.org/debian/ [...] robinson:~# chroot /srv/amd64 robinson:/# apt-get update [...] robinson:/# apt-get upgrade [...] robinson:/# apt-get install virtualbox-ose # add more packages here if needed [...] robinson:/# adduser --uid 1000 --no-create-home --disabled-password --disabled-login srittau [...] robinson:/# these commands install the base system and create a user account. now i created a script called /usr/local/bin/amd64.sh : #!/bin/sh chroot=/srv/amd64 if test ! -e $chroot/dev/.udev; then mount -t none /dev $chroot/dev/ -o bind fi if test `ls $chroot/proc | wc -l` = "0"; then mount -t proc none $chroot/proc fi if test `ls $chroot/sys | wc -l` = "0"; then mount -t sysfs none $chroot/sys fi if test `ls $chroot/home | wc -l` = "0"; then mount --bind /home $chroot/home fi chroot $chroot sh -c "su - srittau" running sudo amd64.sh will now enter the chroot environment as user srittau where i can start virtualbox normally. posted on 2009-02-26 2017-10-30 helmar fanselau dies aged 56 i just learned that one of my former teacher, helmar fanselau, died on january 13th, aged 56. he was a strange man. many students liked him because of his antics and strange sense for humor. others did not like him for his harsh and unforgiving marks in his subjects, latin and history. i think he was always fair, though, even if that worked to my disadvantage, because he actually liked me, but i got bad marks nevertheless. i still fondly remember him balancing rulers on his nose and for his ability to speak several different german dialects. his “weather show” featured them all in a stand-up comedy-like routine. he always was a controversial person, though. i just found an article i wrote back in ’96 or ’97 about a school mess held by him during which the school parson actually put out the candles in protest. there were always various rumours about mr. fanselau floating around in the school. for example, he was well known for eating from student’s lunch boxes. so, the story goes, a stude

URL analysis for rittau.org


https://rittau.org/2018/03/friendly-printers/
https://rittau.org/2006/02/
https://rittau.org/2009/10/virtualbox-on-i386-with-amd64-kernel/
https://rittau.org/wp-login.php
https://rittau.org/category/software-development/python/
https://rittau.org/category/software-development/databases/
https://rittau.org/#content
https://rittau.org/category/software-development/gnome/
https://rittau.org/2007/06/
https://rittau.org/category/games/magic-the-gathering/
https://rittau.org/category/software-development/debian/
https://rittau.org/category/games/
https://rittau.org/category/software-development/java/
https://rittau.org/2010/06/
https://rittau.org/2018/03/

Whois Information


Whois is a protocol that is access to registering information. You can reach when the website was registered, when it will be expire, what is contact details of the site with the following informations. In a nutshell, it includes these informations;

Domain Name: RITTAU.ORG
Registry Domain ID: D103664121-LROR
Registrar WHOIS Server:
Registrar URL: http://www.antagus.de
Updated Date: 2017-01-07T01:35:22Z
Creation Date: 2004-01-06T21:47:58Z
Registry Expiry Date: 2018-01-06T21:47:58Z
Registrar Registration Expiration Date:
Registrar: Vautron Rechenzentrum AG
Registrar IANA ID: 1443
Registrar Abuse Contact Email:
Registrar Abuse Contact Phone:
Reseller:
Domain Status: ok https://icann.org/epp#ok
Registry Registrant ID: C100765352-LROR
Registrant Name: Rittau Sebastian
Registrant Organization: privat
Registrant Street: Nassauische Str. 50
Registrant City: Berlin
Registrant State/Province:
Registrant Postal Code: 10717
Registrant Country: DE
Registrant Phone: +49.1723864525
Registrant Phone Ext:
Registrant Fax: +49.1723864525
Registrant Fax Ext:
Registrant Email: [email protected]
Registry Admin ID: C100765352-LROR
Admin Name: Rittau Sebastian
Admin Organization: privat
Admin Street: Nassauische Str. 50
Admin City: Berlin
Admin State/Province:
Admin Postal Code: 10717
Admin Country: DE
Admin Phone: +49.1723864525
Admin Phone Ext:
Admin Fax: +49.1723864525
Admin Fax Ext:
Admin Email: [email protected]
Registry Tech ID: C99297638-LROR
Tech Name: Hostmaster IN-Berlin e.V.
Tech Organization: Individual Network Berlin e.V.
Tech Street: Lehrter Str. 53
Tech City: Berlin
Tech State/Province: Berlin
Tech Postal Code: 10557
Tech Country: DE
Tech Phone: +49.3045494343
Tech Phone Ext:
Tech Fax: +49.3045494344
Tech Fax Ext:
Tech Email: [email protected]
Name Server: NS1.IN-BERLIN.DE
Name Server: NS2.IN-BERLIN.DE
Name Server: NS3.IN-BERLIN.DE
Name Server: NS4.IN-BERLIN.DE
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of WHOIS database: 2017-09-24T23:40:50Z <<<

For more information on Whois status codes, please visit https://icann.org/epp

Access to Public Interest Registry WHOIS information is provided to assist persons in determining the contents of a domain name registration record in the Public Interest Registry registry database. The data in this record is provided by Public Interest Registry for informational purposes only, and Public Interest Registry does not guarantee its accuracy. This service is intended only for query-based access. You agree that you will use this data only for lawful purposes and that, under no circumstances will you use this data to: (a) allow, enable, or otherwise support the transmission by e-mail, telephone, or facsimile of mass unsolicited, commercial advertising or solicitations to entities other than the data recipient's own existing customers; or (b) enable high volume, automated, electronic processes that send queries or data to the systems of Registry Operator, a Registrar, or Afilias except as reasonably necessary to register domain names or modify existing registrations. All rights reserved. Public Interest Registry reserves the right to modify these terms at any time. By submitting this query, you agree to abide by this policy.

  REFERRER http://www.pir.org/

  REGISTRAR Public Interest Registry

SERVERS

  SERVER org.whois-servers.net

  ARGS rittau.org

  PORT 43

  TYPE domain

DOMAIN

  NAME rittau.org

  HANDLE D103664121-LROR

  CREATED 2004-06-01

STATUS
ok https://icann.org/epp#ok

NSERVER

  NS1.IN-BERLIN.DE 192.109.42.4

  NS2.IN-BERLIN.DE 130.133.8.34

  NS3.IN-BERLIN.DE 85.214.47.1

  NS4.IN-BERLIN.DE 130.133.8.36

OWNER

  HANDLE C100765352-LROR

  NAME Rittau Sebastian

  ORGANIZATION privat

ADDRESS

STREET
Nassauische Str. 50

  CITY Berlin

  PCODE 10717

  COUNTRY DE

  PHONE +49.1723864525

  EMAIL [email protected]

ADMIN

  HANDLE C100765352-LROR

  NAME Rittau Sebastian

  ORGANIZATION privat

ADDRESS

STREET
Nassauische Str. 50

  CITY Berlin

  PCODE 10717

  COUNTRY DE

  PHONE +49.1723864525

  EMAIL [email protected]

TECH

  HANDLE C99297638-LROR

  NAME Hostmaster IN-Berlin e.V.

  ORGANIZATION Individual Network Berlin e.V.

ADDRESS

STREET
Lehrter Str. 53

  CITY Berlin

  STATE Berlin

  PCODE 10557

  COUNTRY DE

  PHONE +49.3045494343

  EMAIL [email protected]

  REGISTERED yes

Go to top

Mistakes


The following list shows you to spelling mistakes possible of the internet users for the website searched .

  • www.urittau.com
  • www.7rittau.com
  • www.hrittau.com
  • www.krittau.com
  • www.jrittau.com
  • www.irittau.com
  • www.8rittau.com
  • www.yrittau.com
  • www.rittauebc.com
  • www.rittauebc.com
  • www.rittau3bc.com
  • www.rittauwbc.com
  • www.rittausbc.com
  • www.rittau#bc.com
  • www.rittaudbc.com
  • www.rittaufbc.com
  • www.rittau&bc.com
  • www.rittaurbc.com
  • www.urlw4ebc.com
  • www.rittau4bc.com
  • www.rittauc.com
  • www.rittaubc.com
  • www.rittauvc.com
  • www.rittauvbc.com
  • www.rittauvc.com
  • www.rittau c.com
  • www.rittau bc.com
  • www.rittau c.com
  • www.rittaugc.com
  • www.rittaugbc.com
  • www.rittaugc.com
  • www.rittaujc.com
  • www.rittaujbc.com
  • www.rittaujc.com
  • www.rittaunc.com
  • www.rittaunbc.com
  • www.rittaunc.com
  • www.rittauhc.com
  • www.rittauhbc.com
  • www.rittauhc.com
  • www.rittau.com
  • www.rittauc.com
  • www.rittaux.com
  • www.rittauxc.com
  • www.rittaux.com
  • www.rittauf.com
  • www.rittaufc.com
  • www.rittauf.com
  • www.rittauv.com
  • www.rittauvc.com
  • www.rittauv.com
  • www.rittaud.com
  • www.rittaudc.com
  • www.rittaud.com
  • www.rittaucb.com
  • www.rittaucom
  • www.rittau..com
  • www.rittau/com
  • www.rittau/.com
  • www.rittau./com
  • www.rittauncom
  • www.rittaun.com
  • www.rittau.ncom
  • www.rittau;com
  • www.rittau;.com
  • www.rittau.;com
  • www.rittaulcom
  • www.rittaul.com
  • www.rittau.lcom
  • www.rittau com
  • www.rittau .com
  • www.rittau. com
  • www.rittau,com
  • www.rittau,.com
  • www.rittau.,com
  • www.rittaumcom
  • www.rittaum.com
  • www.rittau.mcom
  • www.rittau.ccom
  • www.rittau.om
  • www.rittau.ccom
  • www.rittau.xom
  • www.rittau.xcom
  • www.rittau.cxom
  • www.rittau.fom
  • www.rittau.fcom
  • www.rittau.cfom
  • www.rittau.vom
  • www.rittau.vcom
  • www.rittau.cvom
  • www.rittau.dom
  • www.rittau.dcom
  • www.rittau.cdom
  • www.rittauc.om
  • www.rittau.cm
  • www.rittau.coom
  • www.rittau.cpm
  • www.rittau.cpom
  • www.rittau.copm
  • www.rittau.cim
  • www.rittau.ciom
  • www.rittau.coim
  • www.rittau.ckm
  • www.rittau.ckom
  • www.rittau.cokm
  • www.rittau.clm
  • www.rittau.clom
  • www.rittau.colm
  • www.rittau.c0m
  • www.rittau.c0om
  • www.rittau.co0m
  • www.rittau.c:m
  • www.rittau.c:om
  • www.rittau.co:m
  • www.rittau.c9m
  • www.rittau.c9om
  • www.rittau.co9m
  • www.rittau.ocm
  • www.rittau.co
  • rittau.orgm
  • www.rittau.con
  • www.rittau.conm
  • rittau.orgn
  • www.rittau.col
  • www.rittau.colm
  • rittau.orgl
  • www.rittau.co
  • www.rittau.co m
  • rittau.org
  • www.rittau.cok
  • www.rittau.cokm
  • rittau.orgk
  • www.rittau.co,
  • www.rittau.co,m
  • rittau.org,
  • www.rittau.coj
  • www.rittau.cojm
  • rittau.orgj
  • www.rittau.cmo
Show All Mistakes Hide All Mistakes