Skip to content

Instantly share code, notes, and snippets.

View janoelze's full-sized avatar
💭
setting my status

Jan Oelze janoelze

💭
setting my status
View GitHub Profile
@janoelze
janoelze / naturkosmetik.py
Last active December 17, 2015 16:09 — forked from maxfriedrich/naturkosmetik.py
the script is now checking if the domain is already taken
from random import randint
import httplib
def get_name(silben = 3):
name = ''
vokale = ['a', 'e', 'i']
konsonanten = ['d', 'l', 'v', 'w']
for i in range(silben):
k = konsonanten[randint(0, len(konsonanten)-1)]