Recently I’m receiving “delivery report” spam coming from instances hosted on AWS compute nodes.
At least the headers says so.
Continue reading “Delivery Report spam from AWS via hotmail”
Stop 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 it a pain in the ass to use their service. I’m aware both are operated by Amazon nowadays.
So Amazon and everyone else who is pushing this stupid ridiculolus crap on me, get a grip or at least make it optional.
I’ve now disabled my Twitch account because of that.
Find 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
Caution: 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 |
Continue reading “Caution: Kernel 5.3.4 and RAID0 default_layout”