From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 875801389F4 for ; Thu, 30 Oct 2014 15:32:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AFFE0E086B; Thu, 30 Oct 2014 15:32:28 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 63FC4E084B for ; Thu, 30 Oct 2014 15:32:27 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by smtp.gentoo.org (Postfix) with ESMTP id 36BF634029D for ; Thu, 30 Oct 2014 15:32:26 +0000 (UTC) X-Virus-Scanned: by amavisd-new using ClamAV at gentoo.org X-Spam-Flag: NO X-Spam-Score: -2.584 X-Spam-Level: X-Spam-Status: No, score=-2.584 tagged_above=-999 required=5.5 tests=[AWL=0.612, BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, RP_MATCHES_RCVD=-0.594, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] autolearn=ham Received: from smtp.gentoo.org ([127.0.0.1]) by localhost (smtp.gentoo.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id R7NtejqfKkHt for ; Thu, 30 Oct 2014 15:32:18 +0000 (UTC) Received: from plane.gmane.org (plane.gmane.org [80.91.229.3]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9F58E340395 for ; Thu, 30 Oct 2014 15:32:17 +0000 (UTC) Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1Xjrht-0000Ut-PB for gentoo-user@gentoo.org; Thu, 30 Oct 2014 16:32:14 +0100 Received: from rrcs-71-40-157-251.se.biz.rr.com ([71.40.157.251]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 30 Oct 2014 16:32:13 +0100 Received: from wireless by rrcs-71-40-157-251.se.biz.rr.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 30 Oct 2014 16:32:13 +0100 X-Injected-Via-Gmane: http://gmane.org/ To: gentoo-user@lists.gentoo.org From: James Subject: [gentoo-user] Re: =?utf-8?b?Y29va2llX21vbnN0ZXI=?= Date: Thu, 30 Oct 2014 15:32:02 +0000 (UTC) Message-ID: References: <20141029234407.GA10582@waltdnes.org> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-user@lists.gentoo.org Reply-to: gentoo-user@lists.gentoo.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: sea.gmane.org User-Agent: Loom/3.14 (http://gmane.org/) X-Loom-IP: 71.40.157.251 (Mozilla/5.0 (X11; Linux x86_64; rv:29.0) Gecko/20100101 Firefox/29.0 SeaMonkey/2.26.1) X-Archives-Salt: 0c97d2f3-7863-409a-acef-89b8769b8cb3 X-Archives-Hash: 9744477b5dee57e9d86fecd1d3d08bb0 Walter Dnes waltdnes.org> writes: > emerge sqlite Yea, I should have been more clear. Already had sqlite installed and quite a few apps are using it... > > If you want a GUI rather than command-line, try > https://addons.mozilla.org/en-US/firefox/addon/sqlite-manager/ I'll have to look at this one. I went ahead and installed: dev-db/sqlitebrowser > 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... Only those (2) apps have flash cookies? Flashcookies are new issues for me. What the heck are they being used by these apps? Just to avoid detection and removal? If so, it seems somebody would create and add_on to deal with this crap or include this "cleansing" via an establish security script......? > #!/bin/bash > rm -rf ~/.adobe > touch ~/.adobe > rm -rf ~/.macromedia > touch ~/.macromedia OK, good explanation. > 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. Nice strategy. Thanks!