After install the module you can make blocks, views, panelcontent invisible for other users than himself.
You have to activate the php filter module from the drupal core.

Here is the code you have to fill in (maybe in the block visibility settings):

<?php
global $user_is_himself;
if ($user_is_himself == "1") {
return TRUE;
}
else {
return FALSE;
}
?>

