Skip to content

Instantly share code, notes, and snippets.

View rxw1's full-sized avatar
☠️

rxw1

☠️
  • Upper Silesia, Germany
View GitHub Profile
@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
@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 / 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 / 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 / extensions.md
Created April 1, 2020 11:16
Chrome Extensions
@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
#!/usr/bin/env zsh
get () {
url="http://datawrapper.dwcdn.net/lR5wn/21/"
curl -s $url | awk '
/chartData:/ {
gsub("^.*chartData: \"", "");
gsub("\".$", "");
gsub(/\\n/, "\n");
gsub("\\\\u00fc", "ü");
@rxw1
rxw1 / config.h
Last active November 8, 2019 23:52
st config
/* See LICENSE file for copyright and license details. */
/*
* appearance
*
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
*/
static char *font = "Envy Code R:pixelsize=24:style=Regular:antialias=true:autohint=true";
static int borderpx = 24;
@rxw1
rxw1 / package.json
Created October 13, 2019 04:02 — forked from tomgp/package.json
Server side SVG via D3 & jsdom
{
"name": "simple-node-d3",
"version": "1.0.0",
"description": "Serverside SVG via D3 & jsdom",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "[email protected]",
"license": "ISC",
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Deutschland</title>
<script src="https://d3js.org/d3.v5.js"></script>
<script src="https://unpkg.com/topojson@3"></script>
<script src="https://d3js.org/d3-scale-chromatic.v1.min.js"></script>