This little snippet removes the admin bar permanently from all users while logged in and viewing the website from the front-end. Personally, I never use it and always turn it off with this little snippet.
// Remove the admin bar from the front end permanently
add_filter( 'show_admin_bar', '__return_false' );