Well you can do this. In Atahualpa 3.4.2 edit bfa_recent_comments.php line 120 should be
HTML Code:
foreach ($comments as $comment) {
put the following code right after that line. You must change juggledad to the name you want to skip. This may be 'Admin' or your full name depending on the settings for the user at dashboard->Users
HTML Code:
if ($comment->comment_author == 'juggledad') continue;
you could add multiple copies of this line with different names in it, if there was any need to do that.