I hereby claim:
- I am signalwerk on github.
- I am signalwerk (https://keybase.io/signalwerk) on keybase.
- I have a public key whose fingerprint is B52A AFA4 B9B5 8F42 FEC0 6C7C D218 AA33 B5BC CBED
To claim this, I am signing this object:
/** | |
* graceful degradation | |
*/ | |
/* background: #7b1270;*/ | |
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400); | |
html { | |
font-family: "Open Sans", sans-serif; | |
min-height: 100%; | |
} |
/** | |
* CSS & HTML separate | |
*/ | |
h1 { | |
color: red; | |
font-size: 30px; | |
} | |
/** | |
* Struktur und Inhalt | |
*/ | |
h1 { | |
font-weight: bold; | |
color: #24588d; | |
} | |
p { | |
font-weight: normal; | |
} |
I hereby claim:
To claim this, I am signing this object:
export const ANSIColors = { | |
reset: "\033[0m", | |
hicolor: "\033[1m", | |
underline: "\033[4m", | |
inverse: "\033[7m", | |
// foreground colors | |
black: "\033[30m", | |
red: "\033[31m", | |
green: "\033[32m", | |
yellow: "\033[33m", |
#!/bin/bash | |
# RUN | |
# WARMLY_WGET_LOGFILE=~/warmly.log bash <(curl -# -L http://bit.ly/signalwerk-warmly) https://xyz.com | |
# warmly.sh | |
# A wget based, easy, poor man`s cache warmer script | |
# https://gist.github.com/thomasfr/7926314 |
/* inspiration | |
- https://alligator.io/css/minimal-css-reset/ | |
- [Kevin Powell](https://youtu.be/cCAtD_BAHNw) [Gist](https://gist.github.com/Lego2012/7b7956734f2ab4a95fd0c311cd8bbe95) | |
*/ | |
@import url("https://fonts.signalwerk.ch/css/latest/family=Work+Sans:ital,wght@0,100..900;1,100..900.css"); | |
:root { | |
--color-green: #006984; | |
--color-blue: #0054a2; |
// 1993 Park-Miller linear congruential generator (LCG) | |
// https://en.wikipedia.org/wiki/Lehmer_random_number_generator | |
// Source: https://gist.github.com/blixt/f17b47c62508be59987b | |
// usage: | |
// let rand = LCG(42); | |
// rand() → 0.000944073311984539 | |
// rand() → 0.5713628428056836 | |
// rand() → 0.2557850731536746 |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Black smearing</title> | |
<link href="https://fonts.googleapis.com/css?family=Work+Sans:100" rel="stylesheet"> | |
<style> | |
html { | |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif; |