diff --git a/1592614085502.png b/1592614085502.png new file mode 100644 index 0000000..05d0686 Binary files /dev/null and b/1592614085502.png differ diff --git a/harmful/software/containers.md b/harmful/software/containers.md new file mode 100644 index 0000000..32d389d --- /dev/null +++ b/harmful/software/containers.md @@ -0,0 +1,3 @@ +# Containers (docker for example) considered harmful + +Learn how to install things goddamit. diff --git a/harmful/software/javascript.md b/harmful/software/javascript.md index 4820c9d..6d82240 100644 --- a/harmful/software/javascript.md +++ b/harmful/software/javascript.md @@ -82,3 +82,6 @@ And this is what is needed to run a program written in electron: # Links [JAVASCRIPT WAS A MISTAKE](http://www.bordi.ga/blog_shit/js.html) + +![Tom Araya can't scream like i'm internally screaming +rn](/1592614085502.png) diff --git a/harmful/software/stackoverflow.md b/harmful/software/stackoverflow.md new file mode 100644 index 0000000..1ca8b88 --- /dev/null +++ b/harmful/software/stackoverflow.md @@ -0,0 +1,16 @@ +# StackOverflow is a mess + +Stackoverflow users don't know how to answer the question. I'll prove +this with a meme: + +![](https://lainsafe.delegao.moe/files/eZSRHUEP.png) + +stackoverflow: how do i do this in stock C? +answer: here's my response for C++ + +## Alternatives to StackOverflow + +* Manpages +* Books +* +* necking yourself diff --git a/harmful/software/yaml.md b/harmful/software/yaml.md new file mode 100644 index 0000000..8c8c924 --- /dev/null +++ b/harmful/software/yaml.md @@ -0,0 +1,29 @@ +# YAML makes no sense + +There's a lot of ways to say true or false in YAML (21 I think). Some +of them are very inconvinient. For example + +~~~ +countries: + - ES + - DE + - FR + - GB + - US + - NO <- This isn't Norway, This is false +~~~ + +If you use YAML instead of literally anything else, is because you +hate the quotes in this kind of stuff. But you literally have to do +this: + +~~~ +countries: + - ES + - DE + - FR + - GB + - US + - "NO" <- Alright, not false anymore. +~~~ +