idk what i've done tbh

This commit is contained in:
qorg11 2020-06-28 23:58:54 +02:00
parent 2275b38aed
commit 69b1173546
No known key found for this signature in database
GPG Key ID: 343FC20A4ACA62B9
5 changed files with 51 additions and 0 deletions

BIN
1592614085502.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 53 KiB

View File

@ -0,0 +1,3 @@
# Containers (docker for example) considered harmful
Learn how to install things goddamit.

View File

@ -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)

View File

@ -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
* <https://perlmonks.org>
* necking yourself

29
harmful/software/yaml.md Normal file
View File

@ -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.
~~~