2014/04/30

A bit more anonymous way for Youtube browsing


If you use Google productos like blogger or gmail, you will notice that entering in Youtube automatically use your google credentials on the site. Which means all videos you search and browse are registered in your Google Account.

If you want to avoid that, you need Firefox and Cookie Monster. Once installed you will have a new Icon with the letters CM, go to youtube, click on the icon and select Cookie Access (site level) and select Reject Cookies. You will notice that even if you use gmail or blogger or even google it wont log you out from those sites.

2014/04/23

How to get rid of "Try the new Twitter profile" box on Twitter

EDIT 20140603: this post is outdated since Twitter forced the new style on every account

ORIGINAL POST:

same thing as this post, You need Firefox, Stylish and create a new style for the domain.

@namespace url(http://www.w3.org/1999/xhtml);

@-moz-document domain("twitter.com") {
.ProfilePreviewBanner

{background:none !important;display:none !important}

}


Edit: Added screenshoots as example. notice the icon in the left lower corner:




@namespace url(http://www.w3.org/1999/xhtml);

@-moz-document domain("twitter.com") {
.ProfilePreviewBanner

{background:none !important;display:none !important}

}
@namespace url(http://www.w3.org/1999/xhtml);

@-moz-document domain("twitter.com") {
.ProfilePreviewBanner

{background:none !important;display:none !important}

}

2014/04/20

Slackware: post installation

this page is going to be a reminder to myself about thing that should be done after installing Slackware. I'm not posting quite obvious things like running xorgconf.

Adding cdrom, printer and audio rights to the normal user I should normally use.

usermod -G lp,audio,cdrom username

Adding a line in /etc/rc.d/rc.local_shutdown to remove all the files in /etc/udev/rules.d, helps a lot when the underlying hardware changes or when having more than one Ethernet card with the same chipset.

If you plan to use squid, don't forget to add a rc.local_shutdown line to shut it down or it might break the cache on the process.

If the cache becomes a problem, create an script to stop it, remove the cache and restart it.

if situation allows it, going for ethernet bonding is a must.

http://www.sgvulcan.com/network-interface-bonding-in-slackware-version-13-1/

create a personal bin directory for scripts in your home dir

mkdir ~/bin
echo export PATH=$PATH:~/bin >~/.bash_profile