From: "Walter Dnes" <waltdnes@waltdnes.org>
To: gentoo-user@lists.gentoo.org
Subject: Re: [gentoo-user] cookie_monster
Date: Wed, 29 Oct 2014 19:44:07 -0400 [thread overview]
Message-ID: <20141029234407.GA10582@waltdnes.org> (raw)
In-Reply-To: <loom.20141029T173807-659@post.gmane.org>
On Wed, Oct 29, 2014 at 04:45:56PM +0000, James wrote
>
> So looking at ~/.mozilla/seamonkey/<dir>/
> I see these cookies files:
>
> cookies.sqlite cookies.sqlite-shm cookies.sqlite-wal
>
> But the are sqlite files. So I need a gui tool to view them as to discern
> logical understanding of what exactly they are and which do delete
> or intelligently pre_filter. [1,2]
>
> Any suggestions in portage or as a seamonkey "add-on" would
> be keen. I run "no-scipts" but I think I need more to keep
> the cookie_monster under control? suggesions? I also use
> firefox, just not as much.
Sqlite is a database format. You might already have sqlite (the
executable) installed, depending on the value of the "system-sqlite" USE
flag. If so, you can pound away at it manually. Or you can always...
emerge sqlite
If you want a GUI rather than command-line, try
https://addons.mozilla.org/en-US/firefox/addon/sqlite-manager/
You also mentioned "flash cookies" in passing. They're a totally
different animal. They're files that reside in directories ~/.adobe and
~/.macromedia. The way to kill them is to remove the directories and
create dummy files with the same names, so that Flash can't create the
directories. Here's a short script...
#!/bin/bash
rm -rf ~/.adobe
touch ~/.adobe
rm -rf ~/.macromedia
touch ~/.macromedia
The only problem is that certain sites won't play videos without those
directories being present (e.g. video highlights at http://nhl.com ). I
handle them with the following script...
#!/bin/bash
rm -rf ~/.adobe
rm -rf ~/.macromedia
sleep 20
rm -rf ~/.adobe
touch ~/.adobe
rm -rf ~/.macromedia
touch ~/.macromedia
I launch the script from a terminal, and then immediately click on the
video link in my browser. This gets the videos going, and keeps them
going until they finish.
--
Walter Dnes <waltdnes@waltdnes.org>
I don't run "desktop environments"; I run useful applications
next prev parent reply other threads:[~2014-10-29 23:44 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-10-29 16:45 [gentoo-user] cookie_monster James
2014-10-29 23:44 ` Walter Dnes [this message]
2014-10-30 10:50 ` Mick
2014-10-30 15:32 ` [gentoo-user] cookie_monster James
2014-10-30 22:37 ` »Q«
2014-10-31 21:10 ` Walter Dnes
2014-11-01 14:50 ` James
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20141029234407.GA10582@waltdnes.org \
--to=waltdnes@waltdnes.org \
--cc=gentoo-user@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox