Kickass: Charts.css. Also of interest: Which color scale to use when visualizing data.
Daily Archives: 2021-03-18 [Thursday]
Disable KDE Wallet popup from Chromium
So today I found how to disable kwallet popups from chrome. That’s been annoying me for a while now…
How to Deal with Difficult People on Software Projects
This on r/programming today: How to Deal with Difficult People on Software Projects.
PHP finally blocks not run on exit
I confirmed with the following code that if you call ‘exit’ withing a ‘try’ block the ‘finally’ block does *not* execute. That’s probably what you would expect. But now we know.
register_shutdown_function( 'handle_shutdown' );
try {
exit;
}
catch ( Exception $ex ) {
echo "caught...\n";
}
finally {
echo "finally...\n";
}
function handle_shutdown() {
echo "shutdown...\n";
}