View Single Post
daperl's Avatar
Posts: 2,427 | Thanked: 2,986 times | Joined on Dec 2007
#141
Originally Posted by tso View Post
that it happened gradually over time made me look for a file that would accumulate data and survive a update of packages.

what i found was .webkitcookies. and after nuking that, webkit was blazingly fast again!!!

yes people, that means one have to log back into forums and similar...

If you didn't already know, it's just a text file. In the future, instead of blowing it away you could save some login time by putting something like the following in a script:

Code:
cp ~/.webkitcookies ~/.webkitcookies.old
egrep -i '^[^[:space:]]*(maemo\.org|internettablettalk\.com|google\.com|yahoo\.com)[[:space:]][[:space:]]*(TRUE|FALSE)[[:space:]]' ~/.webkitcookies.old > ~/.webkitcookies
rm ~/.webkitcookies.old
Or you could use it just to clean stuff up.

EDIT:

Here's the inverse:

Code:
cp ~/.webkitcookies ~/.webkitcookies.old
egrep -v -i '^[^[:space:]]*(interclick\.com|advertising\.com|doubleclick\.com|specificclick\.com)[[:space:]][[:space:]]*(TRUE|FALSE)[[:space:]]' ~/.webkitcookies.old > ~/.webkitcookies
rm ~/.webkitcookies.old
__________________
N9: Go white or go home

Last edited by daperl; 2009-05-03 at 04:16.
 

The Following 2 Users Say Thank You to daperl For This Useful Post: