Skip to content

Instantly share code, notes, and snippets.

View rxw1's full-sized avatar
☠️

rxw1

☠️
  • Upper Silesia, Germany
View GitHub Profile
@rxw1
rxw1 / plaquemath.txt
Last active March 19, 2020 07:41
Mathe 3. Klasse
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
@rxw1
rxw1 / extensions.md
Created April 1, 2020 11:16
Chrome Extensions
@rxw1
rxw1 / eigentlich-arzt.md
Last active April 4, 2020 22:02
Eigentlich Reptilien
  • 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
@rxw1
rxw1 / ap.md
Last active April 7, 2020 17:59
Leseliste 2020

A

  • 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).

F

  • 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
@rxw1
rxw1 / ae.sh
Last active April 13, 2020 17:15
#!/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"
@rxw1
rxw1 / dota.py
Last active April 19, 2020 05:50
#!/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
#!/bin/zsh
# vi: ft=sh
name=$1
heroes=(
abaddon
alchemist
ancient-apparition
anti-mage
arc-warden
#!/home/asdf/.pyenv/shims/python
import time
import pynput
import itertools
import argparse
import subprocess
@rxw1
rxw1 / index.js
Created July 5, 2020 01:47
Request Headers (Node.js + Koa)
const Koa = require("koa");
const app = new Koa();
app.use((ctx) => {
ctx.body = `${ctx.method}, ${ctx.path}, ${JSON.stringify(
ctx.headers,
null,
2
)}`;
});
@rxw1
rxw1 / main.rs
Created July 5, 2020 01:49
Request Headers (Rust + Warp)
#![deny(warnings)]
use warp::{
Filter,
http::{
HeaderMap,
Method
},
path::{
FullPath