- Imagus - Image popups
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Einwohner in DE: 82.790.000 | |
Prognose infizierter Anteil: 70 - 80 % | |
Sterblichkeitsrate: 3,4 % | |
--------------------------------------- | |
80 % von 82.790.000 = 66.232.000 | |
davon sterben 3,4 % = 2.318.120 |
- Dr. Jaroslav Belsky
- Prof. Eran Bendavid
- Prof. Dr. Sucharit Bhakdi
- Prof. Jay Bhattacharya
- Dr. Bodo Schiffmann
- Dr. med. Jesko Matthes
- Dr. Jenö Ebert
- Dr. Marc Fiddige
- Dr. med. Gunter Frank
- Theodor W. Adorno: Zum Verhältnis von Soziologie und Psychologie. Aufsätze zur Gesellschaftstheorie und Methodologie. Suhrkamp, Frankfurt a. M. 1955.
- Theodor W. Adorno: Erziehung nach Auschwitz. Suhrkamp, Frankfurt a. M. 1966.
- Theodor W. Adorno: Studien zum autoritären Charakter (hrsg. von Ludwig von Friedeburg). Suhrkamp Taschenbuch 1973. ISBN 3-518-28782-6 (= deutsche Übersetzung nur der von Adorno (mit-)gezeichneten Beiträge zu Theodor W. Adorno, Else * Frenkel-Brunswik, Daniel J. Levinson und R. Nevitt Sanford, 1950: The Authoritarian Personality).
- Erich Fromm: Über Methode und Aufgaben einer analytischen Sozialpsychologie. In: Zeitschrift für Sozialforschung, 1932, Band 1, S. 28–54.
- Erich Fromm: Die psychoanalytische Charakterologie und ihre Bedeutung für die Sozialpsychologie. Zeitschrift für Sozialforschung, Bd. 1, 1932, S. 253–277.
- Erich Fromm u. a.: Zweite Abteilung. Erhebungen. In: Studien über Autorität und Familie. Forschungsberichte aus dem Institut für Sozialforschung. Alcan
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/zsh | |
# https://gist.github.com/rwilhelm/43cdd2988b1249123bfd86c5b34c7fdf | |
action=$1; shift | |
url=${1:-http://mixlr.com/autechre/} | |
broadcasterData=$(curl -s $url | awk -F= '/window.broadcasterData.*$/{sub(/;$/, "", $2); print $2}') | |
broadcasts_count=$(echo $broadcasterData | jq -r '.broadcasts_count') | |
slug=$(echo $broadcasterData | jq -r '.slug') | |
filename="${slug}_mixlr_${broadcasts_count}_$(date +%Y%m%d%H%M%S).mp3" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3.7 | |
import argparse | |
import json | |
import re | |
import vdf | |
import sys | |
from os.path import expanduser | |
# ./dota.py -f AttackRate | sort -k2 -g |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/zsh | |
# vi: ft=sh | |
name=$1 | |
heroes=( | |
abaddon | |
alchemist | |
ancient-apparition | |
anti-mage | |
arc-warden |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/home/asdf/.pyenv/shims/python | |
import time | |
import pynput | |
import itertools | |
import argparse | |
import subprocess |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const Koa = require("koa"); | |
const app = new Koa(); | |
app.use((ctx) => { | |
ctx.body = `${ctx.method}, ${ctx.path}, ${JSON.stringify( | |
ctx.headers, | |
null, | |
2 | |
)}`; | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#![deny(warnings)] | |
use warp::{ | |
Filter, | |
http::{ | |
HeaderMap, | |
Method | |
}, | |
path::{ | |
FullPath |