Recently I’m receiving “delivery report” spam coming from instances hosted on AWS compute nodes. At least the headers says so.
Read ArticleStop the 2fa two factor auth madness
Today I tried to log into Amazon on login I was sent a code to my email address. Now I tried logging into Twitch, I should enter the code that was sent to my email address. I closed the tab and am writing this blog post, because I won’t use Twitch today since they make…
Read ArticleFind and delete all node_modules and bower_components in all directories
If you would like to delete all node_modules and bower_components in all directories relative to the current, use the following commands:
|
1 2 |
find . -name "node_modules" -type d -prune -exec rm -rf '{}' + find . -name "bower_components" -type d -prune -exec rm -rf '{}' + |
Dart vs Go performance (http)
Dart vs Go Dartlang vs Golang HTTP performance A simple test
Read ArticleCaution: Kernel 5.3.4 and RAID0 default_layout
When you have a RAID0 array that is made up of 2 or more devices that are not the same size, at least on Archlinux since Kernel version 5.3.4 you will have trouble booting. You will get the message:
|
1 2 |
cannot assemble multi-zone RAID0 with default_layout setting please set raid.default_layout to 1 or 2 |