I hereby claim:
- I am fourplusone on github.
- I am matthiasb (https://keybase.io/matthiasb) on keybase.
- I have a public key whose fingerprint is BF55 8F45 6477 76DC 3145 9616 AE44 C807 A625 F9C5
To claim this, I am signing this object:
// Test.cpp : Definiert den Einstiegspunkt für die Konsolenanwendung. | |
// | |
#include <iostream> | |
#include <vector> | |
#include <iterator> | |
typedef enum { | |
links = '1', |
test |
I hereby claim:
To claim this, I am signing this object:
import matplotlib | |
import seaborn as sns | |
# Official TUD Colors | |
colorsa = ('#5D85C3', '#009CDA', '#50B695', '#AFCC50', '#DDDF48', '#FFE05C', '#F8BA3C', '#EE7A34', '#E9503E', '#C9308E', '#804597') | |
colorsb = ('#005AA9', '#0083CC', '#009D81', '#99C000', '#C9D400', '#FDCA00', '#F5A300', '#EC6500', '#E6001A', '#A60084', '#721085') | |
colorsc = ('#004E8A', '#00689D', '#008877', '#7FAB16', '#B1BD00', '#D7AC00', '#D28700', '#CC4C03', '#B90F22', '#951169', '#611C73') | |
colorsd = ('#243572', '#004E73', '#00715E', '#6A8B22', '#99A604', '#AE8E00', '#BE6F00', '#A94913', '#961C26', '#732054', '#4C226A') | |
sns.reset_defaults() |
import SwiftUI | |
struct MainApp : App { | |
var body: some Scene { | |
WindowGroup { | |
Text("Hello").padding() | |
} | |
} | |
} |