Windows 10 feature updates (creator's update, anniversary update, fall update, ...) may fail/abort on first reboot during update process:

Error: 0xC1900101 - 0x20017
Description: The installation failed in the SAFE_OS phase with an error during BOOT operation.
There are a lot of different r...
If you ever experience the php warning
Warning: Illegal offset type in foo.php on line 123
check the syntax in detail. Of course it might be, that you messed up and tried to insert an invalid key (e.g. an object) to an array like
$foo = array ('id');
$ary[$foo] = 1;
which obviously does and...