<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
     xmlns:admin="http://webns.net/mvcb/"
     xmlns:content="http://purl.org/rss/1.0/modules/content/"
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
	<channel>
	  <title>Ask MetaFilter questions tagged with hidden</title>
      <link>http://ask.metafilter.com/tags/hidden</link>
      <description>Questions tagged with 'hidden' at Ask MetaFilter.</description>
	  <pubDate>Mon, 26 Oct 2009 21:35:24 -0800</pubDate> <lastBuildDate>Mon, 26 Oct 2009 21:35:24 -0800</lastBuildDate>

      <language>en-us</language>
	  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
	  <ttl>60</ttl>	  
	<item>
	<title>1980s book with hidden treasure if you solved the mystery inside?</title>
	<link>http://ask.metafilter.com/136536/1980s%2Dbook%2Dwith%2Dhidden%2Dtreasure%2Dif%2Dyou%2Dsolved%2Dthe%2Dmystery%2Dinside</link>	
	<description>I&apos;m struggling to remember the title of a book I read in the 1980s, which had a real-world twist: hidden within the narrative was the location of a spot in the USA where some sort of treasure or reward money was located. The only images I can come up with -- based on fuzzy memories of the book&apos;s title and/or cover -- would be: necklace, silver, moon, locket. And for some reason: rabbit. &lt;br&gt;
&lt;br&gt;
The prize was somehow thematically linked with the book&apos;s content - that is to say, I think the plot involved some hidden treasure.&lt;br&gt;
&lt;br&gt;
Any ideas? My memory was jogged by Everything is Terrible&apos;s &lt;a href=&quot;http://www.everythingisterrible.com/2009/10/its-bad-bad-bad-bad-noir.html&quot;&gt;recent post&lt;/a&gt; about a low-budget VHS noir with the same hook, but this book was much classier.  If it helps, by the time I read the book (mid 80s?), the mystery had been solved and the prize located and dug up.  Thanks!</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.136536</guid>
	<pubDate>Mon, 26 Oct 2009 21:35:24 -0800</pubDate>
	<category>book</category>
	<category>buriedtreasure</category>
	<category>hidden</category>
	<category>mystery</category>
	<category>resolved</category>
	<dc:creator>squid patrol</dc:creator>
	</item>
	<item>
	<title>72 hours for Venice&apos;s secrets, aiutiamo noi per favore</title>
	<link>http://ask.metafilter.com/135196/72%2Dhours%2Dfor%2DVenices%2Dsecrets%2Daiutiamo%2Dnoi%2Dper%2Dfavore</link>	
	<description>I&apos;m going with my family down to Italy from around Oct 18-30th, including a week at a farm house in Ancona (looking forward to that, for sure!). We&apos;ll also be in Venice for around three whole days in the beginning and end of the trip (we fly in/out from Venice). So, considering our short stay, what are some hidden, secret, word-of-askmetafilter stuff that we should seek out, apart from the touristy gondolas and San Marco, etc, etc? &lt;br&gt;
&lt;br&gt;
I for one often find that I discover a new city best by just spending hours walking around (flaneur, n&apos;est-ce pas?), and that&apos;s what I plan to do. Just give me a first goalpost and I&apos;ll do the rest.&lt;br&gt;
&lt;br&gt;
No links to any fancy NYT Travel articles, please... :)</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.135196</guid>
	<pubDate>Sun, 11 Oct 2009 14:04:05 -0800</pubDate>
	<category>flaneur</category>
	<category>hidden</category>
	<category>secret</category>
	<category>sightseeing</category>
	<category>strolling</category>
	<category>travel</category>
	<category>venice</category>
	<dc:creator>avocade</dc:creator>
	</item>
	<item>
	<title>Can I auto-expand a bunch of Javascript message toggles</title>
	<link>http://ask.metafilter.com/116092/Can%2DI%2Dautoexpand%2Da%2Dbunch%2Dof%2DJavascript%2Dmessage%2Dtoggles</link>	
	<description>I&apos;m trying to archive, in PDF form, a series of Web pages where the content won&apos;t expand unless I click &quot;more&quot; dozens and dozens of times to reveal each hidden item. Is there some time-saving Firefox add on--or other tool--that could do this for me automatically? It&apos;s a Javascript thing... In code terms, the full content is all there in the source code (maybe I ought to just give up and save as HTML--what do you think?) but hidden via a Javascript gimmick.&lt;br&gt;
&lt;br&gt;
Each of the many items on the page is concealed from view using a Javascript &quot;onClick&quot; attached to the links. When you click the link it runs a .js script called &quot;toggleMessage,&quot; which gets the ID# of the item and then opens it. What I am envisioning is some sort of Firefox Web designer plugin where I could tell it the name of the script and it would go run it for me, expanding every panel.&lt;br&gt;
&lt;br&gt;
Is this something Firebug, for example, would do?&lt;br&gt;
&lt;br&gt;
Here&apos;s the script.&lt;br&gt;
&lt;br&gt;
function toggleMessage(id)&lt;br&gt;
{&lt;br&gt;
	var span = document.getElementById(&apos;msg&apos;+id);&lt;br&gt;
	if (span.style.display == &apos;none&apos;)&lt;br&gt;
		{&lt;br&gt;
			// hide the more link&lt;br&gt;
			document.getElementById(&apos;msglink&apos;+id).style.display=&apos;none&apos;;&lt;br&gt;
			// show the div&lt;br&gt;
			span.style.display = &apos;inline&apos;;&lt;br&gt;
			// show the less link&lt;br&gt;
			document.getElementById(&apos;msglesslink&apos;+id).style.display=&apos;inline&apos;;&lt;br&gt;
			// switch the image&lt;br&gt;
			document.getElementById(&apos;image&apos;+id).src=img_open;&lt;br&gt;
		}&lt;br&gt;
	else // it&apos;s already showing&lt;br&gt;
		{&lt;br&gt;
			// hide the less link&lt;br&gt;
			document.getElementById(&apos;msglesslink&apos;+id).style.display=&apos;none&apos;;&lt;br&gt;
			// show the more link&lt;br&gt;
			document.getElementById(&apos;msglink&apos;+id).style.display=&apos;inline&apos;;&lt;br&gt;
			// hide the span&lt;br&gt;
			span.style.display = &apos;none&apos;;&lt;br&gt;
			// switch the image&lt;br&gt;
			document.getElementById(&apos;image&apos;+id).src=img_closed;&lt;br&gt;
		}&lt;br&gt;
}</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.116092</guid>
	<pubDate>Sat, 07 Mar 2009 15:19:57 -0800</pubDate>
	<category>hidden</category>
	<category>javascript</category>
	<category>offline</category>
	<category>toggle</category>
	<category>web</category>
	<dc:creator>Kirklander</dc:creator>
	</item>
	<item>
	<title>Help me detect hidden cameras/microphones</title>
	<link>http://ask.metafilter.com/115784/Help%2Dme%2Ddetect%2Dhidden%2Dcamerasmicrophones</link>	
	<description>Help me to detect hidden cams/microphones in a room. I have reason to believe that my friend&apos;s house has been bugged by her ex-husband and im looking for easy ways to find and remove these bugs. It may sound a bit paranoid, but there have already been other examples where he has tried to &quot;track&quot; her. First by putting a tracking program on her cellphone, and then by putting a GPS-tracker in her car. He then proceeded to follow her around and she involved the police at this point. He just got a warning and the devices were confiscated.&lt;br&gt;
&lt;br&gt;
Now we have reason to believe he&apos;s at at it again. He&apos;s showing a eerie knowledge of what hours of the day she is home in, and information about personal matters he can&apos;t possibly know. Hence the suspicion that her home may be bugged with cameras or microphones. (i&apos;ve checked her cellphone which is clean). &lt;br&gt;
&lt;br&gt;
I&apos;ve seen some detector devices on the internet, how effective are they? Example: http://www.thinkgeek.com/gadgets/security/5a42/&lt;br&gt;
And is there any other method to detect them? Im guessing the microphones are sending out low-frequency noise and the cam must be using some other wave-length emissions i can somehow detect. Also if its wireless there&apos;s bound to be some RF noise.&lt;br&gt;
&lt;br&gt;
Thanks in advance</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2009:site.115784</guid>
	<pubDate>Wed, 04 Mar 2009 06:33:12 -0800</pubDate>
	<category>bug</category>
	<category>cam</category>
	<category>hidden</category>
	<category>microphone</category>
	<category>resolved</category>
	<category>tracking</category>
	<dc:creator>kampken</dc:creator>
	</item>
	<item>
	<title>Hey, the grafitti on the rooftop of 111 S. Anderson, is the most creative in town!</title>
	<link>http://ask.metafilter.com/109277/Hey%2Dthe%2Dgrafitti%2Don%2Dthe%2Drooftop%2Dof%2D111%2DS%2DAnderson%2Dis%2Dthe%2Dmost%2Dcreative%2Din%2Dtown</link>	
	<description>What are some places &quot;off the beaten path&quot;, I can explore in urban environments? For photography, and my own amusement. I know the term &quot;off the beaten path&quot; is usually associated rural or more remote places. That&apos;s not really my interest right now, especially that it is 20 degrees outside. &lt;br&gt;
&lt;br&gt;
I am interested in finding places in a city that are hard to access and/or places that few people know about. If it helps, I am in southern Illinois, so the two largest cities I am near are St. Louis and Chicago. But, suggestions from any city would be fine, because I can probably find something similar here or I can keep those suggestions in mind when I travel to other parts of the country. &lt;br&gt;
&lt;br&gt;
It can be buildings, special rooms/areas in buildings, alleys, tunnels, whatever. Occupied or vacant. A general place (I heard that NYC has several secret bars) or something specific (the St. Louis City Library has an area where the floor is made of glass). &lt;br&gt;
&lt;br&gt;
Urban exploration, in the form of exploring tunnels and abandoned warehouses are out. I did those things in college, and now I&apos;m looking for something new.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.109277</guid>
	<pubDate>Mon, 15 Dec 2008 12:10:14 -0800</pubDate>
	<category>curiousity</category>
	<category>exploration</category>
	<category>hidden</category>
	<category>history</category>
	<category>notourists</category>
	<category>photography</category>
	<category>private</category>
	<category>secret</category>
	<category>urban</category>
	<category>vacant</category>
	<dc:creator>sixcolors</dc:creator>
	</item>
	<item>
	<title>Commented Out Text Bad?</title>
	<link>http://ask.metafilter.com/108646/Commented%2DOut%2DText%2DBad</link>	
	<description>/* Is a lot of commented out text bad for a home page? */ When content is no longer being used on the home page, we are told to comment it out instead of removing it. Are there potential downsides to doing this besides there being a lot of extra code that must be downloaded? And besides the fact that is messy, extraneous, and somewhat unprofessional.&lt;br&gt;
&lt;br&gt;
The content being commented out are modules that have sales which are no longer valid or current.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.108646</guid>
	<pubDate>Sun, 07 Dec 2008 19:35:23 -0800</pubDate>
	<category>commented</category>
	<category>google</category>
	<category>hidden</category>
	<category>out</category>
	<category>SEO</category>
	<category>text</category>
	<dc:creator>pixelnark</dc:creator>
	</item>
	<item>
	<title>Find and delete hidden files on Mac</title>
	<link>http://ask.metafilter.com/105019/Find%2Dand%2Ddelete%2Dhidden%2Dfiles%2Don%2DMac</link>	
	<description>Help me find and delete hidden files on my Mac!  I&apos;ve been using the program Graphics Converter to try to make a large .MOV slideshow out of 1500 JPEG images.  It keeps crashing because it runs out of disc space (I think that&apos;s why anyway), and then I end up with even less hard drive space available...it&apos;s leaving hidden temporary files behind.  I&apos;ve narrowed them down to somewhere in my System folder...about 13 gigs worth, but I can&apos;t actually see them.  How do I locate them and clean them out?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.105019</guid>
	<pubDate>Thu, 23 Oct 2008 13:12:33 -0800</pubDate>
	<category>delete</category>
	<category>files</category>
	<category>Find</category>
	<category>hidden</category>
	<category>hunt</category>
	<category>Mac</category>
	<dc:creator>wavejumper</dc:creator>
	</item>
	<item>
	<title>Do burglars read AskMeFi?</title>
	<link>http://ask.metafilter.com/97118/Do%2Dburglars%2Dread%2DAskMeFi</link>	
	<description>What is your most ingenious hiding place for valuables? I am looking for suggestions for where to hide items such as cash, jewelry, spare car keys, etc.  I know about hollowed-out books and fake cans of shaving cream, but I would like to hear some other creative examples that are not so well-known.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.97118</guid>
	<pubDate>Mon, 21 Jul 2008 11:09:19 -0800</pubDate>
	<category>cache</category>
	<category>hidden</category>
	<category>hidingplace</category>
	<category>security</category>
	<category>valuables</category>
	<dc:creator>DB Cooper</dc:creator>
	</item>
	<item>
	<title>Ooh, what&apos;s inside there?</title>
	<link>http://ask.metafilter.com/96868/Ooh%2Dwhats%2Dinside%2Dthere</link>	
	<description>So what&apos;s inside areas that are closed off to the public, in buildings? I know places like hospitals have certain areas that are closed off to the public because they are morgues, have hazardous materials inside, or whatever...but there&apos;s other places I have trouble guessing why they restrict access.&lt;br&gt;
&lt;br&gt;
Some examples:&lt;br&gt;
&lt;br&gt;
On my campus, the library, business, and education buildings have areas where students and sometimes faculty aren&apos;t allowed. Same thing with the dorms, but it is even weirder. Some of the stairwells are locked. Isn&apos;t that a fire hazard? One of the dorms obviously have a fourth floor, yet no one lives up there, and you can&apos;t get there from the stairs or elevator. &lt;br&gt;
&lt;br&gt;
Not too long ago, I looked at the floor plan of my favorite casino, and noticed that there was at least five rooms that didn&apos;t have a number or name. &lt;br&gt;
&lt;br&gt;
As for elevators...I sometimes see keyholes instead of buttons on certain floors. It&apos;s usually the very top or very bottom floor(s). &lt;br&gt;
&lt;br&gt;
I don&apos;t know if this is urban legend or not...I heard that the 13th floor in some buildings aren&apos;t open to the public. Superstitious much?If that&apos;s true, what&apos;s there?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.96868</guid>
	<pubDate>Thu, 17 Jul 2008 15:43:46 -0800</pubDate>
	<category>blocked</category>
	<category>buildings</category>
	<category>closed</category>
	<category>denied</category>
	<category>doors</category>
	<category>elevators</category>
	<category>floors</category>
	<category>hidden</category>
	<category>private</category>
	<category>rooms</category>
	<category>secret</category>
	<category>stairs</category>
	<dc:creator>sixcolors</dc:creator>
	</item>
	<item>
	<title>how can I write with windows default system font ?</title>
	<link>http://ask.metafilter.com/83736/how%2Dcan%2DI%2Dwrite%2Dwith%2Dwindows%2Ddefault%2Dsystem%2Dfont</link>	
	<description>how can I write with &quot;Marlett&quot; windows XP default system font ? Calling all the typography geeks :&lt;br&gt;
&lt;br&gt;
Acording to my google-fu, every time you read &quot;File&quot;, &quot;Edit&quot;, &quot;Submit&quot; in Windows XP default theme, you are using marlett.ttf, a font shipped with windows but hidden in windows Fonts directory. &lt;br&gt;
&lt;br&gt;
Can someone confirm it&apos;s the font used on the &quot;submit&quot; and &quot;cancel&quot; buttons ?&lt;br&gt;
&lt;br&gt;
Now...&lt;br&gt;
&lt;br&gt;
1) I can&apos;t check the settings box  that would allow me to see the hidden files in this windows/fonts directory. How can I make this box checkable ? How can I see the hidden files in this particular directory ?&lt;br&gt;
&lt;br&gt;
2) Once I can see this hidden file, can I use it as any other font (Arial, Times New Roman, etc.) ?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2008:site.83736</guid>
	<pubDate>Fri, 15 Feb 2008 13:37:05 -0800</pubDate>
	<category>font</category>
	<category>hidden</category>
	<category>marlett</category>
	<category>windows</category>
	<category>xp</category>
	<dc:creator>Baud</dc:creator>
	</item>
	<item>
	<title>Where is the list of hidden folders kept?</title>
	<link>http://ask.metafilter.com/74581/Where%2Dis%2Dthe%2Dlist%2Dof%2Dhidden%2Dfolders%2Dkept</link>	
	<description>Mac OS X filter: In terminal, if I go to / and ls, I see a bunch of folders that are hidden in Finder, for example /etc, /private, /sbin, and so on.  How do I add a folder to that list? In the dark recesses of my memory I remember there being some kind of file somewhere that contains a list of the paths that the Finder should hide, but my Google-fu is failing me and I can only find people telling me how to turn ON the &quot;show hidden files and folders&quot; option, which isn&apos;t what I want at all!&lt;br&gt;
&lt;br&gt;
If you care, it&apos;s because I have a /sw folder that Fink created, that I want to be hidden too.  Any pointers greatly appreciated.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2007:site.74581</guid>
	<pubDate>Wed, 24 Oct 2007 14:24:22 -0800</pubDate>
	<category>folder</category>
	<category>folders</category>
	<category>hidden</category>
	<category>macosx</category>
	<category>terminal</category>
	<dc:creator>jon4009</dc:creator>
	</item>
	<item>
	<title>Alright, I&apos;m saving tons on rent but now what am I going to do?</title>
	<link>http://ask.metafilter.com/74130/Alright%2DIm%2Dsaving%2Dtons%2Don%2Drent%2Dbut%2Dnow%2Dwhat%2Dam%2DI%2Dgoing%2Dto%2Ddo</link>	
	<description>I just moved to Verdun, (Montreal), Quebec. Any current or former inhabitants have any hidden gems they can share? I&apos;m thinking of things along the lines of nice pubs, good groceries etc etc. (and, Yes I know there isn&apos;t going to be a lot of &quot;gems&quot;)&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Thanks</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2007:site.74130</guid>
	<pubDate>Thu, 18 Oct 2007 12:53:57 -0800</pubDate>
	<category>gems</category>
	<category>hidden</category>
	<category>montreal</category>
	<category>verdun</category>
	<dc:creator>hector horace</dc:creator>
	</item>
	<item>
	<title>The Case of the Missing Paragraph</title>
	<link>http://ask.metafilter.com/73748/The%2DCase%2Dof%2Dthe%2DMissing%2DParagraph</link>	
	<description>I was trying to click and highlight a couple of lines of text in Firefox and the whole paragraph disappeared. What just happened? According to the source code, the paragraph tag became &quot;visibility: hidden&quot;.&lt;br&gt;
&lt;br&gt;
I was just clicking and dragging and pressing CTRL, maybe in some weird combination; it happened in Firefox; and on refresh it reappeared.&lt;br&gt;
&lt;br&gt;
Sooo... what was it?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2007:site.73748</guid>
	<pubDate>Sat, 13 Oct 2007 14:33:11 -0800</pubDate>
	<category>disappearing</category>
	<category>firefox</category>
	<category>hidden</category>
	<category>paragraph</category>
	<category>visibility</category>
	<dc:creator>dubadubowbow</dc:creator>
	</item>
	<item>
	<title>bra strap</title>
	<link>http://ask.metafilter.com/70585/bra%2Dstrap</link>	
	<description>How to keep bra straps from showing without safety pins? I have a few shirts with somewhat wide necklines that sometimes expose my bra straps if I move around.  Is there any way to keep the straps attached to the shirt that&apos;s less obtrusive than safety pins and less permanent than sewing?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2007:site.70585</guid>
	<pubDate>Sat, 01 Sep 2007 09:53:42 -0800</pubDate>
	<category>bra</category>
	<category>hidden</category>
	<category>how</category>
	<category>keep</category>
	<category>straps</category>
	<category>to</category>
	<dc:creator>transona5</dc:creator>
	</item>
	<item>
	<title>Poetry about Secrets, Hidden Places?</title>
	<link>http://ask.metafilter.com/62429/Poetry%2Dabout%2DSecrets%2DHidden%2DPlaces</link>	
	<description>Poetry about secrets, hidden things, hiding places? Lately, I&apos;ve been making &lt;a href=http://www.wikihow.com/Make-a-Hollow-Book&gt;hollow books&lt;/a&gt; for gifts.   I&apos;d like to paste poems that deal with secrets, hiding places, and the like into the back of the hollowed out section for decoration.  Any recommendations for some cool lines?  Thanks.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2007:site.62429</guid>
	<pubDate>Fri, 11 May 2007 19:16:38 -0800</pubDate>
	<category>art</category>
	<category>crafts</category>
	<category>hidden</category>
	<category>hiding</category>
	<category>hollowbooks</category>
	<category>poetry</category>
	<category>secrets</category>
	<dc:creator>Staggering Jack</dc:creator>
	</item>
	<item>
	<title>Where&apos;s that flavor hiding?</title>
	<link>http://ask.metafilter.com/60842/Wheres%2Dthat%2Dflavor%2Dhiding</link>	
	<description>What&apos;s the original of the phrase &quot;that&apos;s where the flavor is hiding&quot;? The first time I remember hearing the verb &quot;to hide&quot; used to describe &quot;flavor&quot; was in the episode of Aqua Teen Hunger Force (Oct. 2003):&lt;br&gt;
&lt;br&gt;
http://www.tv.com/aqua-teen-hunger-force/revenge-of-the-trees/episode/271074/summary.html&lt;br&gt;
&lt;br&gt;
What&apos;s the first known usage of this phrase, or more acurately when did &quot;flavor&quot; first &quot;hide&quot;?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2007:site.60842</guid>
	<pubDate>Wed, 18 Apr 2007 09:43:54 -0800</pubDate>
	<category>flavor</category>
	<category>hidden</category>
	<category>hide</category>
	<category>hiding</category>
	<category>thatswheretheflavorishiding</category>
	<dc:creator>2bucksplus</dc:creator>
	</item>
	<item>
	<title>Where did my Picasa hidden photo information go?</title>
	<link>http://ask.metafilter.com/59459/Where%2Ddid%2Dmy%2DPicasa%2Dhidden%2Dphoto%2Dinformation%2Dgo</link>	
	<description>I restored my Picasa data from a backup after a crash. Now none of the previously hidden photos are still hidden. Can I recover this automatically somehow? I had a hard drive crash and had to restore my Picasa 2.2.0 (Build 28.20.0) setup from backup. I used Windows backup, not the Picasa backup, and just restored the following folders:&lt;br&gt;
&lt;br&gt;
%UserProfile%\My Documents\My Pictures&lt;br&gt;
%UserProfile%\Local Settings\Application Data\Google&lt;br&gt;
%ProgramFiles%\Picasa2&lt;br&gt;
&lt;br&gt;
Certain information (crops, captions, stars) is still attached to my photo library. However, all of my hidden photos have been unhidden. &lt;strong&gt;Is there a way to restore my data keeping the hidden photos hidden?&lt;/strong&gt; I would hate to go through them one-by-one again.&lt;br&gt;
&lt;br&gt;
&lt;em&gt;Related&lt;/em&gt;: I like to take a lot of pictures, including multiple exposures of the same object. Obviously I don&apos;t want these all showing up in my album, so in the past I&apos;ve picked the best and hidden the rest. So there&apos;s many hidden photos involved. A friend of mine uses the star feature instead (whereas I&apos;ve used it just for my about 10 or so favorite photos ever), only exporting photos that are starred.&lt;br&gt;
&lt;br&gt;
Do you have a suggestion as to which of these methods is better? Obviously stars seem to be a bit more resilient to backup and restore.&lt;br&gt;
&lt;br&gt;
&lt;small&gt;I previously asked these questions &lt;a href=&quot;http://groups.google.com/group/PicasaSomethingBroken/browse_frm/thread/321bdb632f8b3582/9b3ccb422ab427d2&quot;&gt;here&lt;/a&gt; and &lt;a href=&quot;http://groups.google.com/group/PicasaGuide/browse_frm/thread/8a91af9d0a15ceb2/a8f4215f41c7ff00&quot;&gt;here&lt;/a&gt;. I didn&apos;t get many responses, so I&apos;m hoping against hope that AskMe will come to the rescue.&lt;/small&gt;</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2007:site.59459</guid>
	<pubDate>Tue, 27 Mar 2007 10:41:54 -0800</pubDate>
	<category>backup</category>
	<category>hidden</category>
	<category>picasa</category>
	<category>restore</category>
	<category>star</category>
	<dc:creator>grouse</dc:creator>
	</item>
	<item>
	<title>Stop OSX from creating .DS_Store</title>
	<link>http://ask.metafilter.com/45111/Stop%2DOSX%2Dfrom%2Dcreating%2DDSStore</link>	
	<description>How can I set Mac OS X so that it doesn&apos;t create .DS_Store, .Trashes, and ._* files on USB drives I work with? I have several USB drives that are all formatted as FAT32, so that I can exchange information with Windows systems.&lt;br&gt;
&lt;br&gt;
I&apos;d like to stop OS X from creating these hidden files, since they certainly aren&apos;t hidden to Windows. It&apos;s even worse when the USB drive is a friend&apos;s, and they&apos;ve never heard of resource forks. What settings can I adjust to stop this?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2006:site.45111</guid>
	<pubDate>Wed, 23 Aug 2006 19:51:37 -0800</pubDate>
	<category>.DS_Store</category>
	<category>files</category>
	<category>filesystem</category>
	<category>hidden</category>
	<category>mac</category>
	<category>osx</category>
	<category>resourcefork</category>
	<category>windows</category>
	<dc:creator>odinsdream</dc:creator>
	</item>
	<item>
	<title>Is it legal to eavesdrop on someone with a hidden camera placed in their home?</title>
	<link>http://ask.metafilter.com/29042/Is%2Dit%2Dlegal%2Dto%2Deavesdrop%2Don%2Dsomeone%2Dwith%2Da%2Dhidden%2Dcamera%2Dplaced%2Din%2Dtheir%2Dhome</link>	
	<description>For reasons that don&apos;t particularly make sense I believe that someone is spying on me with a camera hidden somewhere in my room.  Ignoring for a moment the fact that I&apos;m clearly nuts, what exactly would the law be on this (I live in the US)? I know what a cliche it is, but recent talk of the beloved patriot act has made me realize that I don&apos;t even know if it would be illegal for someone to slither a camera into my bedroom and ride the thrill of my oh-so-exciting bedroom existence.  What could I do?  If they were really sadistic a well placed speaker and night vision would make for some high comedy as my sanity crumbled into pathetic little bits before their eyes.</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2005:site.29042</guid>
	<pubDate>Wed, 14 Dec 2005 10:48:29 -0800</pubDate>
	<category>camera</category>
	<category>eavesdropping</category>
	<category>hidden</category>
	<category>paranoia</category>
	<category>privacy</category>
	<category>spy</category>
	<dc:creator>Astragalus</dc:creator>
	</item>
	<item>
	<title>Hidden Speaker Wires</title>
	<link>http://ask.metafilter.com/17048/Hidden%2DSpeaker%2DWires</link>	
	<description>I just got a new TV and a six speaker home theater audio system.  The front and satellite speakers are small and sort of designed to be wall mounted.  I want mount them (at about chest level) without obvious speaker wires.

Because there are six speakers there are at least four sets of speaker wires that have to travel to the sides and back of the room.&lt;br&gt;
&lt;br&gt;
I also plan to put my old speakers in another room and have to run wires to another part of the house (40&apos; or so away).&lt;br&gt;
&lt;br&gt;
Any good hints on consolidating and hiding speaker wires?</description>
	<guid isPermaLink="false">tag:ask.metafilter.com,2005:site.17048</guid>
	<pubDate>Sat, 02 Apr 2005 08:14:58 -0800</pubDate>
	<category>hidden</category>
	<category>speaker</category>
	<category>wire</category>
	<dc:creator>aspenbaloo</dc:creator>
	</item>
	
	</channel>
</rss>

