I hereby claim:
- I am LarsKumbier on github.
- I am larskumbier (https://keybase.io/larskumbier) on keybase.
- I have a public key whose fingerprint is 61DF 4812 8447 4B95 689B 9DB0 EE73 4042 E4AC D8BA
To claim this, I am signing this object:
#!/usr/bin/env bash | |
## | |
## This will update the remote ssh keys and reset the known_hosts file after a redeploy of a new VM | |
## | |
## will return the found *.example.com host names from an ansible file | |
## - alternatively, put your own logic here or give a fixed list: | |
## HOSTS=( host1.example.com host2.example.de ) | |
HOSTS=( $(grep -o -e "[a-zA-Z0-9\-]*\.example\.com" inventory/heidelberg/inventory) ) |
from urllib.parse import urlparse | |
import requests | |
import sys | |
MAX_REDIRECTS=8 | |
URL_LIST='urls.txt' | |
def requestUrl(url, counter=0): | |
def upgradeUrl(url): |
{ | |
"userId" : 1, | |
"__classname__" : "some-static-string", | |
"failedLoginCount": 0, | |
"mailValidated": true, | |
"answers": { | |
"toTheQuestion": -42, | |
"niceBlog": "Slate Star Codex" | |
} | |
} |
mongoimport -d db -c users --type tsv --file export.tsv --headerline --columnsHaveTypes |
userId.auto() | __classname__.auto() | failedLoginCount.int32() | mailValidated.boolean() | answers.toTheQuestion.int32() | answers.niceBlog.auto() | |
---|---|---|---|---|---|---|
1 | 'some-static-string' | 0 | TRUE | -42 | 'Slate Star Codex' | |
2 | 'some-static-string' | 2 | FALSE | -42 | 'Slate Star Codex' |
COPY ( | |
SELECT | |
userid AS "userId.auto()", | |
'some-static-string' AS "__classname__.auto()", | |
failed_login_count AS "failedLoginCount.int32()", | |
CASE WHEN mail_validated=TRUE THEN 'TRUE' ELSE 'FALSE' END AS "mailValidated.boolean()", | |
-42 AS "answers.toTheQuestion.int32()", | |
'Slate Star Codex' AS "answers.niceBlog.auto()" | |
FROM | |
users.accounts |
I hereby claim:
To claim this, I am signing this object: