<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>this.rand() &#187; work</title>
	<atom:link href="http://www.thisrand.com/tag/work/feed" rel="self" type="application/rss+xml" />
	<link>http://www.thisrand.com</link>
	<description>the life of Ryan Meinzer and Jessica Meinzer</description>
	<lastBuildDate>Mon, 19 Sep 2011 01:41:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>5 Reasons Marketing Departments are like 3 year olds</title>
		<link>http://www.thisrand.com/2011/09/5-reasons-marketing-departments-are-like-3-year-olds</link>
		<comments>http://www.thisrand.com/2011/09/5-reasons-marketing-departments-are-like-3-year-olds#comments</comments>
		<pubDate>Sun, 11 Sep 2011 00:46:03 +0000</pubDate>
		<dc:creator>Xnuiem</dc:creator>
				<category><![CDATA[ramblings]]></category>
		<category><![CDATA[thoughts]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://www.thisrand.com/?p=1607</guid>
		<description><![CDATA[You have to repeat yourself a lot. You have to explain things over and over again in different ways, and still not get the point across. It doesn&#8217;t matter what...]]></description>
			<content:encoded><![CDATA[<ol>
<li>You have to repeat yourself a lot.</li>
<li>You have to explain things over and over again in different ways, and still not get the point across.</li>
<li>It doesn&#8217;t matter what else is going on in your life, their wants are far more important than your (or anyone else) needs.</li>
<li>They think everything for which they ask is very simple, and no amount of evidence will convince them otherwise.</li>
<li>They think &#8220;Now&#8221; is a completely legitimate deadline.</li>
</ol>
<p>Of course, this could apply to a lot of different departments, heck, I am sure some poor delusional soul out there thinks these could apply to IT, but for now, let&#8217;s remember, the just fit best with Marketing.  Not a specific Marketing department, but just about all with which I have ever worked.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.thisrand.com%2F2011%2F09%2F5-reasons-marketing-departments-are-like-3-year-olds&amp;title=5%20Reasons%20Marketing%20Departments%20are%20like%203%20year%20olds" id="wpa2a_2"><img src="http://www.thisrand.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.thisrand.com/2011/09/5-reasons-marketing-departments-are-like-3-year-olds/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tweaking Jquery AutoSuggest</title>
		<link>http://www.thisrand.com/2011/01/tweaking-jquery-autosuggest</link>
		<comments>http://www.thisrand.com/2011/01/tweaking-jquery-autosuggest#comments</comments>
		<pubDate>Mon, 31 Jan 2011 17:19:52 +0000</pubDate>
		<dc:creator>Xnuiem</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[computing]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[geekdom]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[www]]></category>

		<guid isPermaLink="false">http://www.thisrand.com/?p=1521</guid>
		<description><![CDATA[Tweaking the Drew Wilson Jquery autosuggest script to display a full list on double click without typing any input.]]></description>
			<content:encoded><![CDATA[<p>I have been using the <a target="_blank" class="zem_slink" title="JQuery" rel="homepage" href="http://jquery.com/">JQuery library</a> for a long time now, and am still amazed at what people get it to do.  One feature that the base libaray was really lacking was a good <a target="_blank" class="zem_slink" title="Incremental search" rel="wikipedia" href="http://en.wikipedia.org/wiki/Incremental_search">Autosuggest</a> for a text input.  It needed to be <a target="_blank" class="zem_slink" title="Ajax (programming)" rel="wikipedia" href="http://en.wikipedia.org/wiki/Ajax_%28programming%29">AJAX</a> driven, and understand having multiple values.</p>
<p>I found a great example of what I wanted at <a target="_blank" href="http://code.drewwilson.com/entry/autosuggest-jquery-plugin" target="_blank">Drew Wilson&#8217;s blog</a>, complete with almost all the features I needed.</p>
<p>One thing his script is really lacking is a good way to show ALL the results.  We have a huge category list, and want to let someone browse them all.  In the base script, this isn&#8217;t going to work, since there isnt a way to make the look up fire off without input.  I didnt want my users to have to enter in, one by one, each letter of the alphabet looking for what they wanted, so I settled on using a double click event to force the display of the entire list.</p>
<p>And here is how to make that happen:</p>
<p>In the js file (jquery.autoSuggest.js) you will need to make some changes.</p>
<p>~line 149 add:</p>
<pre> }).dblclick(<a target="_blank" class="zem_slink" title="Function (mathematics)" rel="wikipedia" href="http://en.wikipedia.org/wiki/Function_%28mathematics%29">function</a>(){</pre>
<pre> if (timeout){ clearTimeout(timeout); }</pre>
<pre> timeout = setTimeout(function(){ keyChange(); }, opts.keyDelay);</pre>
<p>so it will look like:</p>
<pre> }).blur(function(){</pre>
<pre> if($(this).val() == "" &amp;&amp; values_input.val() == "" &amp;&amp; prefill_value == ""){</pre>
<pre> $(this).val(opts.startText);</pre>
<pre> } else if(input_focus){</pre>
<pre> $("li.as-selection-item", selections_holder).addClass("blur").removeClass("selected");</pre>
<pre> results_holder.hide();</pre>
<pre> }</pre>
<pre> }).dblclick(function(){</pre>
<pre> if (timeout){ clearTimeout(timeout); }</pre>
<pre> timeout = setTimeout(function(){ keyChange(); }, opts.keyDelay);</pre>
<pre> }).keydown(function(e) {</pre>
<p>This will pull up a list on <a target="_blank" class="zem_slink" title="Double-click" rel="wikipedia" href="http://en.wikipedia.org/wiki/Double-click">double click</a>.  You can change dlbclick to just click for a <a target="_blank" class="zem_slink" title="Point-and-click" rel="wikipedia" href="http://en.wikipedia.org/wiki/Point-and-click">single click</a> response instead.</p>
<p>~line 226 comment out the lines:</p>
<pre>if( lastKeyPressCode == 46 || (lastKeyPressCode &gt; 8 &amp;&amp; lastKeyPressCode &lt; 32) ){ return results_holder.hide(); }</pre>
<p>and</p>
<pre>if (string == prev) return;</pre>
<p>and</p>
<pre>if (string.length &gt;= opts.minChars) {</pre>
<p>and then on ~line 252 comment out</p>
<pre> } else {</pre>
<pre> selections_holder.removeClass("loading");</pre>
<pre> results_holder.hide();</pre>
<pre> }</pre>
<p>You will also want to turn the option &#8220;resultsHighlight&#8221; false, when you create the instance.</p>
<p>Now, on double click it will present a full list of options.</p>
<h6 class="zemanta-related-title" style="font-size: 1em;">Related articles</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a target="_blank" href="http://designshack.co.uk/articles/javascript/weekly-freebies-10-brilliant-jquery-plugins">Weekly Freebies: 10 Brilliant jQuery Plugins</a> (designshack.co.uk)</li>
<li class="zemanta-article-ul-li"><a target="_blank" href="http://www.devcurry.com/2010/11/jquery-144-fadetoggle-function.html">jQuery 1.4.4 fadeToggle() function</a> (devcurry.com)</li>
<li class="zemanta-article-ul-li"><a target="_blank" href="http://addyosmani.com/blog/jquery-roundrr/">jQuery Roundrr &#8211; How To Create Awesome Circular Image Galleries With jQuery &amp; CSS</a> (addyosmani.com)</li>
<li class="zemanta-article-ul-li"><a target="_blank" href="http://www.devcurry.com/2010/10/use-jquery-to-scroll-to-bottom-or-top.html">Use jQuery to Scroll to Bottom or Top of a Page</a> (devcurry.com)</li>
<li class="zemanta-article-ul-li"><a target="_blank" href="http://renesd.blogspot.com/2011/01/jquery-15-promises-better-future.html">JQuery 1.5 promises a better future.</a> (renesd.blogspot.com)</li>
</ul>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a target="_blank" class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/zemified_e.png?x-id=4e0fe6cc-4494-4d0c-a7ab-aa75277a202e" alt="Enhanced by Zemanta" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.thisrand.com/2011/01/tweaking-jquery-autosuggest/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TSA at BWI</title>
		<link>http://www.thisrand.com/2011/01/tsa-at-bwi</link>
		<comments>http://www.thisrand.com/2011/01/tsa-at-bwi#comments</comments>
		<pubDate>Fri, 28 Jan 2011 21:32:48 +0000</pubDate>
		<dc:creator>Xnuiem</dc:creator>
				<category><![CDATA[airlines]]></category>
		<category><![CDATA[thoughts]]></category>
		<category><![CDATA[travel]]></category>
		<category><![CDATA[legal]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[TSA]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://www.thisrand.com/?p=1516</guid>
		<description><![CDATA[TSA giving me the "enhanced" pat down at BWI]]></description>
			<content:encoded><![CDATA[<p>Jess and I just got back from Baltimore late Wednesday night.  A short three day trip for some personal business, sans kids.  After all the media attention, we were already concerned about the &#8220;enhanced&#8221; security at the airports, but Baltimore is 24 car hours away, so we have to fly.</p>
<p>Well, at <a target="_blank" class="zem_slink" title="Dallas Love Field" rel="homepage" href="http://www.dallas-lovefield.com/">Dallas Love Field</a> (KDAL) there was just the old method of metal detectors.  Empty most of the stuff from your pockets and move along.  Well, at Baltimore Washington International (<a target="_blank" class="zem_slink" title="Baltimore/Washington International Thurgood Marshall Airport" rel="homepage" href="http://www.bwiairport.com/">KBWI</a>) the scanners are in place and being used.</p>
<p>When we walked up to the security line, Jess asked, &#8220;Are those the new scanners?&#8221;  Yep.  She didn&#8217;t like the look of them one bit, and even hesitated a little bit.  I did point out that not everyone was even being asked to go through, just about every third person.</p>
<p>We emptied our pockets of everything metal or electronic, and stepped up.  Jess was waved through the normal &#8220;old school&#8221; metal detector, but I was instructed to go through the scanner.  He, the <a target="_blank" class="zem_slink" title="Transportation Security Administration" rel="homepage" href="http://www.tsa.gov">TSA</a> officer, did not inform me of my right to refuse and get a pat down instead, just told me to go through.  I refused, politely.  He THEN informed me that would mean I would get pat down, to which I replied &#8220;Let&#8217;s do this.&#8221;  I knew the consequences of my choice, but there was no way in hell I was going to get a almost naked image of me taken and God knows what done with it, since the TSA is being very vague about what they actually do with those images.</p>
<p>Another officer stepped up and asked if I had anything in my pockets.  I replied I did, my wallet, and he asked me to put it on the belt, to which I refused.  I have NEVER been asked to remove my wallet or chapstick, since they are not metal, and most people don&#8217;t even notice them.  This was new to me, and now I am very unhappy because I have already asked for a pat down, so why do you give a crap what I have in my pockets?</p>
<p>He said that I had to totally empty my pockets.  I again refused and asked, again politely, to speak to a supervisor.  He said that a supervisor &#8220;will just tell you the same thing, so I don&#8217;t know why I need to bother him.&#8221;.  I then, more firmly but still politely, asked to speak to a supervisor.  He argued a little bit more, I interrupted his excuses, and said &#8220;I have expressed my desire to see a supervisor.  I have been polite, can you please just do as I ask.&#8221;  Well, I suppose he didn&#8217;t know what to do with a polite but firm passenger, so he said &#8220;OK, fine.&#8221;</p>
<p>About a minute, perhaps not even that long, passed and supervisor came up and asked what was going on.  I told him I had refused the body scanner, and refused to put my wallet on the belt, where I can not see it, they wont take responsibility for it, and I would be separated for perhaps several minutes while I pat down.  I suppose that argument, again politely expressed, just made a lot of sense.  He moved me through the normal metal detector, with my wallet in hand, and asked me to have a seat in the pat down area.</p>
<p>Another officer, Officer Bell, came up to me and asked for my wallet.  I handed it over, and he said he would now go through with it me watching.  &#8220;No problem,&#8221; I replied.  My wallet is very small and very tightly packed.  He really did seem uncomfortable with it, since he didn&#8217;t see how to get things out without potentially causing a huge mess.  I asked him how he wanted to proceed and the supervisor, who was standing near by, said that he would personally run it through the scanners (the old normal ones) and ensure that it never left his sight, except while in the scanner, and he would take personal responsibility for it.</p>
<p>&#8220;Fine.  Thank you.&#8221;  That seemed like a very fair arrangement and let us both achieve our goals.  His of getting me checked out and on my way and me of not losing my wallet at BWI.</p>
<p>He did that and came back and handed it back to me.  Thanked me for my cooperation, and left the area.</p>
<p>Officer Bell then asked me to step on the spots on the floor mat, and put my arms up, palms up.  He had latex gloves on, was well groomed, and professional.  At all times he told me what he was going to do.  He started with my shoulders and chest, worked down to my stomach, and then went to my back.  He was not rough, forced, or any of the other crap I would have expected based on the media&#8217;s repeated telling of the situation.</p>
<p>He then said he would use the back of his hands to go over my buttocks.  I replied &#8220;alright&#8221;.  Done.  Now, again telling me before hand so I am very informed, he said he would use the back of his hand to go down the zipper of my jeans.  &#8220;Sure&#8221;.  Again, done.  Not forceful, not threatening, in no way invasive.  He then moved down my legs and about 90 seconds after it started, my &#8220;enhanced&#8221; pat down was finished.</p>
<p>I collected my things and moved along.</p>
<p>Now, the real question is, was my experience normal?  Or was the entire staff, with one possible exception, just amazingly polite and professional?  I hope not.  I hope exactly what I went through is what can be expected no matter what airport you are in.  I think the entire TSA situation sucks, and we, as a country, could do better for our security.  But, my experience, and the entire time I stayed polite, honest, and professional, and I am glad to see it was not too much to expect them to treat me the same way.</p>
<p>What about the rest of y&#8217;all?  Anyone pass on the new scanners and ask for a pat down?  How did it go?</p>
<h6 class="zemanta-related-title" style="font-size: 1em;">Related articles</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a target="_blank" href="http://gawker.com/5689925/man-threatened-with-10000-fine-after-refusing-tsa-grope">Man Threatened with $10,000 Fine After Refusing TSA Grope [Video]</a> (gawker.com)</li>
<li class="zemanta-article-ul-li"><a target="_blank" href="http://gizmodo.com/5696160/why-the-tsa-could-lead-us-to-public-rebellion-or-a-terrorist-attack">Why the TSA Practices Could Result In Public Rebellion or a Terrorist Attack [Privacy]</a> (gizmodo.com)</li>
<li class="zemanta-article-ul-li"><a target="_blank" href="http://www.mediaite.com/online/jesse-ventura-sues-the-tsa-over-body-scanners-unwanted-touching/">Jesse Ventura Sues The TSA Over Body Scanners, &#8220;Unwanted Touching&#8221;</a> (mediaite.com)</li>
<li class="zemanta-article-ul-li"><a target="_blank" href="http://pajamasmedia.com/blog/my-very-own-tsa-nightmare/">My Very Own TSA Nightmare</a> (pajamasmedia.com)</li>
<li class="zemanta-article-ul-li"><a target="_blank" href="http://www.dvorak.org/blog/2011/01/24/tsa-loses-in-court-must-allow-filming-cannot-demand-id/">TSA Loses in Court. Must Allow Filming. Cannot Demand ID.</a> (dvorak.org)</li>
<li class="zemanta-article-ul-li"><a target="_blank" href="http://seattletimes.nwsource.com/html/travelwise/2013275327_trpucci31.html?syndication=rss">Airport body scanners: Questions and answers</a> (seattletimes.nwsource.com)</li>
<li class="zemanta-article-ul-li"><a target="_blank" href="http://wilderside.wordpress.com/2010/11/16/tsa-encounter-at-san/">: TSA encounter at SAN</a> (wilderside.wordpress.com)</li>
</ul>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a target="_blank" class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/zemified_e.png?x-id=1b722693-9f37-46d4-99b9-c57bcbfb8e7b" alt="Enhanced by Zemanta" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.thisrand.com/2011/01/tsa-at-bwi/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML Validation is (still) pointless!</title>
		<link>http://www.thisrand.com/2010/11/html-validation-is-still-pointless</link>
		<comments>http://www.thisrand.com/2010/11/html-validation-is-still-pointless#comments</comments>
		<pubDate>Tue, 23 Nov 2010 20:43:03 +0000</pubDate>
		<dc:creator>Xnuiem</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[cute]]></category>
		<category><![CDATA[geekdom]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[legal]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[www]]></category>
		<category><![CDATA[zoo]]></category>

		<guid isPermaLink="false">http://www.thisrand.com/?p=542</guid>
		<description><![CDATA[Ok, so we all know that we should write &#8220;valid&#8221;* HTML, and yet, less than 5% of websites validate for one reason or another.  Now this statistic can be a...]]></description>
			<content:encoded><![CDATA[<p>Ok, so we all know that we <em>should</em> write &#8220;valid&#8221;* <a target="_blank" class="zem_slink" title="HTML" rel="wikipedia" href="http://en.wikipedia.org/wiki/HTML">HTML</a>, and yet, <a target="_blank" href="http://www.netmag.co.uk/zine/latest-issue/issue-183" target="_blank">less than 5% of websites validate</a> for one reason or another.  Now this statistic can be a bit misleading as a comment from a user that didn&#8217;t use valid markup could invalidate the <a target="_blank" class="zem_slink" title="Website" rel="wikipedia" href="http://en.wikipedia.org/wiki/Website">website</a>, so granted, there is some play with the stats (per the usual), but let&#8217;s again assume that number is close.</p>
<p>Why?  Why do we not write perfect HTML?  Surely with the free <a target="_blank" href="http://validator.w3.org/" target="_blank">validator</a> on the authority&#8217;s website there is no excuse to write code that wont validate against the standard.</p>
<p>The answer there is simple, <strong>if and when </strong>all the major browsers (<a target="_blank" class="zem_slink" title="Mozilla Firefox" rel="geolocation" href="http://maps.google.com/maps?ll=45.1238,-123.1138&amp;spn=1.0,1.0&amp;q=45.1238,-123.1138%20%28Mozilla%20Firefox%29&amp;t=h">Firefox</a>, <a target="_blank" class="zem_slink" title="Safari (web browser)" rel="homepage" href="http://www.apple.com/safari/">Safari</a>, IE, <a target="_blank" class="zem_slink" title="Opera Software" rel="homepage" href="http://www.opera.com">Opera</a>, Chrome) all render a page according to the standard, then I will finally start caring about the validation of my websites.  Until then, I will continue to write code that works across the board, and just not care if it is &#8220;valid&#8221;.</p>
<p>To be real though, most of the browsers work pretty well, however the <a target="_blank" href="http://www.w3schools.com/browsers/browsers_stats.asp" target="_blank">800lb gorilla</a> in the room, IE, does not.  <a target="_blank" class="zem_slink" title="Microsoft" rel="homepage" href="http://www.microsoft.com">Microsoft</a> continually changes the standards by which they will render a page, like promising <a target="_blank" href="http://blogs.msdn.com/ie/archive/2006/08/22/712830.aspx" target="_blank">CSS 2 support in IE7</a> then bailing on that promise 6 months before release.  And let us not forget the horribly pathetic Javascript <a target="_blank" class="zem_slink" title="Layout engine" rel="wikipedia" href="http://en.wikipedia.org/wiki/Layout_engine">rendering engine</a>, <a target="_blank" class="zem_slink" title="JScript" rel="homepage" href="http://msdn.microsoft.com/en-us/library/hbxc2t98%28VS.85%29.aspx">JScript</a>, that the rest of us just ignore because it can&#8217;t be trusted to behave reliably.</p>
<p>So, like even on this website, we find ourselves writing &#8220;valid&#8221; code, and at the same time having to redefine valid to mean &#8220;Code that works in all the browsers&#8221;, not &#8220;Code that the W3C says is valid even though it looks like crap in IE6&#8243;.  Just to maintain a semblance of order and sanity, we use the handy IE CSS hacks where IE on <a target="_blank" class="zem_slink" title="Windows" rel="homepage" href="http://www.microsoft.com/WINDOWS">Windows</a> will actually arbitrarly execute code depending on the version of the IE browser being used.  Does that sound like an admission of guilt on the part of MS to anyone else?  OK Bill, repeat after me, &#8220;I know my browser sucks, so, instead of fixing it which would severely hamper my marketing and legal budgets, I will just allow hacks in order to ensure you nerdy web guys can still make pretty pages&#8221;.  There, was that so hard!?</p>
<p>So, someone feel free to run the validate against any of my websites.  Don&#8217;t bother sending me the results because I don&#8217;t care.  The sites work, the code looks good, documented, and is maintainable, so, what exactly was the complaint?</p>
<h5>*valid code is extremely subjective, but let&#8217;s assume here I mean W3C &#8220;valid&#8221; code.</h5>
<h6 class="zemanta-related-title" style="font-size: 1em;">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a target="_blank" href="http://blogs.msdn.com/ie/archive/2009/02/19/the-css-corner-using-filters-in-ie8.aspx">The CSS Corner: Using Filters In IE8</a> (blogs.msdn.com)</li>
<li class="zemanta-article-ul-li"><a target="_blank" href="http://www.inquisitr.com/17897/mozilla-should-be-thanking-microsoft-for-bundling-ie-not-kissing-eus-butt/">Mozilla should be thanking Microsoft for bundling IE not kissing EU&#8217;s butt</a> (inquisitr.com)</li>
<li class="zemanta-article-ul-li"><a target="_blank" href="http://r.zemanta.com/?u=http%3A//www.infoworld.com/article/09/01/16/browser-wars-deemed-hot-again_1.html&amp;a=2664880&amp;rid=688f04e7-7910-4d78-8153-78194999c6b9&amp;e=62bf56fb0808fa686789d7d6995fdf45">Browser wars deemed hot again</a> (infoworld.com)</li>
<li class="zemanta-article-ul-li"><a target="_blank" href="http://www.ghacks.net/2009/02/23/how-to-zoom-in-firefox/">How To Zoom In Firefox</a> (ghacks.net)</li>
<li class="zemanta-article-ul-li"><a target="_blank" href="http://r.zemanta.com/?u=http%3A//www.infoworld.com/article/09/01/23/Microsoft_to_deliver_first_IE8_release_candidate_Monday_1.html&amp;a=2800890&amp;rid=688f04e7-7910-4d78-8153-78194999c6b9&amp;e=32f3ce5da320127c5a388473cabdd420">Microsoft to deliver first IE8 release candidate Monday</a> (infoworld.com)</li>
<li class="zemanta-article-ul-li"><a target="_blank" href="http://r.zemanta.com/?u=http%3A//www.infoworld.com/article/08/12/19/Google_issues_first_postbeta_Chrome_update_1.html&amp;a=2330376&amp;rid=688f04e7-7910-4d78-8153-78194999c6b9&amp;e=0d13e5560c2070cb64992b4e6fce5c55">Google issues first post-beta Chrome update</a> (infoworld.com)</li>
<li class="zemanta-article-ul-li"><a target="_blank" href="http://thenextweb.com/2009/01/27/eu-force-microsoft-include-firefox-future-versions-windows/">The EU Could Force Microsoft to Include Firefox in Future of Versions of Windows</a> (thenextweb.com)</li>
</ul>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a target="_blank" class="zemanta-pixie-a" title="Zemified by Zemanta" href="http://reblog.zemanta.com/zemified/688f04e7-7910-4d78-8153-78194999c6b9/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/reblog_e.png?x-id=688f04e7-7910-4d78-8153-78194999c6b9" alt="Reblog this post [with Zemanta]" /></a></div>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.thisrand.com%2F2010%2F11%2Fhtml-validation-is-still-pointless&amp;title=HTML%20Validation%20is%20%28still%29%20pointless%21" id="wpa2a_4"><img src="http://www.thisrand.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.thisrand.com/2010/11/html-validation-is-still-pointless/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Freelancer.com ?  Really?</title>
		<link>http://www.thisrand.com/2010/10/freelancer-com-morons</link>
		<comments>http://www.thisrand.com/2010/10/freelancer-com-morons#comments</comments>
		<pubDate>Tue, 26 Oct 2010 17:44:04 +0000</pubDate>
		<dc:creator>Xnuiem</dc:creator>
				<category><![CDATA[thoughts]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[clients]]></category>
		<category><![CDATA[legal]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[reviews]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://www.thisrand.com/?p=1003</guid>
		<description><![CDATA[I have been wandering around some of the freelancer websites looking for some programming/project management gigs to keep me busy, and I ran across this one on Freelancer.com:]]></description>
			<content:encoded><![CDATA[<p>I have been wandering around some of the freelancer websites looking for some programming/project management gigs to keep me busy, and I ran across <a target="_blank" href="http://www.freelancer.com/projects/PHP-Website-Design/Adult-quot-Babe-the-Day.html" target="_blank">this one</a> on <a target="_blank" href="http://www.freelancer.com" target="_blank">Freelancer.com</a>:</p>
<p>&#8220;Want to make a website which features a different picture of a babe everyday.</p>
<p>Successful candidate:</p>
<ul>
<li>Must create and design the website</li>
<li>Logo creation</li>
<li>Provide 3000 original large, high quality photos with my watermarked logo</li>
<li>These photos must be legal</li>
<li>All <a target="_blank" class="zem_slink" title="Copyright" rel="wikipedia" href="http://en.wikipedia.org/wiki/Copyright">copyright</a> will belong to me</li>
<li>Photos must automatically change as of 12:00 PM MST</li>
<li>Must  be able to and will be responsible for setting up the website with  advertising program to ensure money is made from visitors&#8221;</li>
</ul>
<p>The poster gave a max budget of $250&#8230;.</p>
<h2><strong>Really!!!???</strong></h2>
<p>Let me make sure I understand&#8230;You want me to develop the software to power the site (admittedly very simple), design the <a target="_blank" class="zem_slink" title="Look and feel" rel="wikipedia" href="http://en.wikipedia.org/wiki/Look_and_feel">look and feel</a> of the site, create a logo, and come up with 3000 original photos of &#8220;babes&#8221; and then sign it all over to you, all for $250?  Then you want me to market it and advertise it?  What the heck do I need you for?  Let&#8217;s face it, you cant get 3000 images, even non-original ones for that price, but I have no idea what the photo shoots required would cost&#8230;maybe $25000?  For that many images there are going to be a lot of different girls, doing a lot of different things, in a lot of different places.  $25000 may be extremely cheap I don&#8217;t know.</p>
<p>I do know the person that posted this is delusional.  He/She wants to pay a paltry sum for someone to do ALL the work.  Usually clients have ideas, content, and know how to market their own stuff, but not in this case.  Maybe this person works in politics and thinks this is how the real work actually operates.</p>
<h6 class="zemanta-related-title" style="font-size: 1em;">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a target="_blank" href="http://www.rateitall.com/i-18709-freelancecom.aspx">5 reviews of Freelance.com</a> (rateitall.com)</li>
<li class="zemanta-article-ul-li"><a target="_blank" href="http://ask.metafilter.com/158833/Writing-nooblet-questions">Writing nooblet questions</a> (ask.metafilter.com)</li>
<li class="zemanta-article-ul-li"><a target="_blank" href="http://www.physorg.com/news192870853.html">Freelance site using software to recruit and pay workers</a> (physorg.com)</li>
</ul>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a target="_blank" class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/zemified_e.png?x-id=1924244c-2ecd-4580-b2f5-40e52713c77b" alt="Enhanced by Zemanta" /></a><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://www.thisrand.com/2010/10/freelancer-com-morons/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Social Security is deluding themselves</title>
		<link>http://www.thisrand.com/2010/10/social-security-is-deluding-themselves</link>
		<comments>http://www.thisrand.com/2010/10/social-security-is-deluding-themselves#comments</comments>
		<pubDate>Wed, 20 Oct 2010 16:05:51 +0000</pubDate>
		<dc:creator>Xnuiem</dc:creator>
				<category><![CDATA[300 million morons]]></category>
		<category><![CDATA[thoughts]]></category>
		<category><![CDATA[family]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[so true]]></category>
		<category><![CDATA[stupidity]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://www.thisrand.com/?p=1133</guid>
		<description><![CDATA[the correct answer to the question "Will Social Security still be around when I retire?", is "No.  Not really."]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-1134" title="Social Security is deluding themselves" src="http://www.thisrand.com/wp-content/uploads/2010/10/File0001.png" alt="Social Security is deluding themselves" width="300" height="748" />If you work in the US, you get these letters every so often from the Social Security Administration to let you know what your benefits will be, or would be, based on wages, taxes paid, etc.  They are just depressing, since in my tax bracket, I actually put more money into SS than I will get back if I die before the age of 132.</p>
<p>Yes, that is right, I will never get back all that I put into SS.  Nevermind the fact I should be paid interest on my contributions.  Why was privatizing such a bad idea?</p>
<p>Anyways, I received one of these letters, and it had a section in it entitled &#8220;<em>Will Social Security still be around when I retire?</em>&#8220;.  Look to the right, there is a scan of this image.</p>
<p>I love how it says &#8220;Yes.&#8221; at the very begining and then goes on to try and quantify that answer with the basic assumtion you, the reader, didnt pass 2nd grade math.</p>
<p>So, according to this, the money will be gone in 2037.  I hate to point out the fact I dont reach age rull retirement age (67) until 2044.  Not inspiring a lot of trust with already failing in the numbers department.</p>
<p>Then it goes on to say that if nothing is done, in 2037, they should be able to pay about 76% of the benefits to which I am entitiled.  <strong>WHAT?!</strong></p>
<p>So just to clarify, Social Security will run out of money ~7 years before I am at full retirement age, AND will only be able to pay 76% of the benefits scheduled, which already are only about 80% of what I paid in, with no interest.</p>
<p>How was the answer &#8220;Yes.&#8221; to the question &#8220;<em>Will Social Security still be around when I retire?</em>&#8220;?  You just said we will run out of money years before I am elegible to retire, and even then I wont recieve all that I should.</p>
<p>What have we learned?  First and foremost, like healthcare, the goverment has great ideas, really, they are good ideas, they just have no fricking clue on how to execute it.  None!</p>
<p>Secondly, the correct answer to the question &#8220;<em>Will Social Security still be around when I retire?</em>&#8220;, is &#8220;<strong>No.  Not really.</strong>&#8221;</p>
<p>If you want, <a target="_blank" href="http://www.contactingthecongress.org/" target="_blank">contact your folks in Congress</a>, let them know this is a bunch of crap, and now is the time to start fixing it, not 2037, or 2044, or whenever it is you will retire, or (God forbid), need disability.  And if you think you don&#8217;t need to save for retirement, go take a 2&#215;4, hit yourself in the head, and start drawing disability now.  Learning to live on that income is the ONLY way you will not need your own retirement setup.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thisrand.com/2010/10/social-security-is-deluding-themselves/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why Drupal Views make so little sense</title>
		<link>http://www.thisrand.com/2010/10/why-drupal-views-make-so-little-sense</link>
		<comments>http://www.thisrand.com/2010/10/why-drupal-views-make-so-little-sense#comments</comments>
		<pubDate>Thu, 14 Oct 2010 19:10:15 +0000</pubDate>
		<dc:creator>Xnuiem</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[thoughts]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[geekdom]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://www.thisrand.com/?p=661</guid>
		<description><![CDATA[I recently had a very short contract gig working for a company that creates websites using Drupal.  While that doesn't sound very interesting or even hard, to make it more so of both, these guys used Views for every]]></description>
			<content:encoded><![CDATA[<p>I recently had a very short contract gig working for a company that creates websites using <a target="_blank" class="zem_slink" title="Drupal" rel="homepage" href="http://drupal.org">Drupal</a>.  While that doesn&#8217;t sound very interesting or even hard, to make it more so of both, these guys used Views for every</p>
<div class="zemanta-img zemanta-action-dragged" style="margin: 1em; display: block;">
<div>
<dl class="wp-caption alignright" style="width: 212px;">
<dt class="wp-caption-dt"><a target="_blank" href="http://commons.wikipedia.org/wiki/Image:Druplicon.vector.svg"><img title="Drupal" src="http://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Druplicon.vector.svg/202px-Druplicon.vector.svg.png" alt="Drupal" width="202" height="231" /></a></dt>
<dd class="wp-caption-dd zemanta-img-attribution" style="font-size: 0.8em;">Image via <a target="_blank" href="http://commons.wikipedia.org/wiki/Image:Druplicon.vector.svg">Wikipedia</a></dd>
</dl>
</div>
</div>
<p>thing.  Which I just don&#8217;t get.</p>
<p>If you are a programming, why would you use views?  It is adding a layer of abstraction between the logic and database in an interpreted language with a framework that is already bloated beyond all recognition.  I know when I write plugins for <a target="_blank" class="zem_slink" title="WordPress" rel="homepage" href="http://wordpress.org">WordPress</a>, I want the plugin to be quick, precise, and add the least amount of overhead possible.  Views just seem to be a way to do all the opposites of those, just for the hell of it.</p>
<p>If you are not very technically inclined, I understand.  Using views is a lot like using <a target="_blank" class="zem_slink" title="Microsoft Access" rel="homepage" href="http://office.microsoft.com/access">MS Access</a>.  You can create fairly complex queries yourself, without having to get someone that actually understands it involved.  And that is the trade off.  You can do it yourself, and eat the extra overhead, or pay/hire/bribe/cajole someone else into doing it for you, specialized, and thus, in theory at least, more efficiently.</p>
<p>These folks claimed to be programmers though, so I just don&#8217;t get it.  Why are you depending on someone else&#8217;s plugin, that extends functionality that is inefficient and clumsy, can&#8217;t do everything, and still requires custom code to be written or even more plugins to be added.  Where exactly does that circular line stop?</p>
<p>The Drupal &#8220;framework&#8221; and I use that term loosely since it is really a CMS that can just be extended, has enough problems and bloat in it, why exactly are views worth adding more?  Again, assuming you know SQL and PHP on even a basic level.</p>
<p>It just doesnt make any sense.  Query writers and views are one thing if you are working directly with the database, (e.g. <a target="_blank" class="zem_slink" title="PhpMyAdmin" rel="homepage" href="http://www.phpmyadmin.net">phpMyAdmin</a> or <a target="_blank" class="zem_slink" title="TOAD (software)" rel="homepage" href="http://www.quest.com/toad">TOAD</a>), but adding it as a layer to a &#8220;custom&#8221; application that you will be supporting when you claim to be capable of actual programming!!??  Please explain that one to me.</p>
<p>To be fair, I dont use Drupal much, I like WP much better.  The OO approach is much more appealing than the very <a target="_blank" class="zem_slink" title="Perl" rel="homepage" href="http://www.perl.org/">Perl</a>-esque (read: old) way of doing things Drupal does with its modules. But I still don&#8217;t get what the big deal is about Views.</p>
<h6 class="zemanta-related-title" style="font-size: 1em;">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a target="_blank" href="http://wpthoughts.com/2009/01/before-customizing-wordpress/">Before You Customize Any Part of Your WordPress</a> (wpthoughts.com)</li>
<li class="zemanta-article-ul-li"><a target="_blank" href="http://ostatic.com/blog/choosing-an-open-source-cms-planning-playing-and-page-views">Choosing an Open Source CMS &#8212; Planning, Playing, and Page Views</a> (ostatic.com)</li>
<li class="zemanta-article-ul-li"><a target="_blank" href="http://www.trellon.com/content/blog/7-suggestions-for-new-drupal-users-in-higher-education">7 Suggestions for New Drupal Users in Higher Education</a> (trellon.com)</li>
</ul>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a target="_blank" class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/zemified_e.png?x-id=45e2e995-6a2f-4a87-9395-4acbe9e81256" alt="Enhanced by Zemanta" /></a><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://www.thisrand.com/2010/10/why-drupal-views-make-so-little-sense/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>For the Love of God, Optimize those Images!</title>
		<link>http://www.thisrand.com/2010/10/for-the-love-of-god-optimize-those-images</link>
		<comments>http://www.thisrand.com/2010/10/for-the-love-of-god-optimize-those-images#comments</comments>
		<pubDate>Thu, 07 Oct 2010 16:29:46 +0000</pubDate>
		<dc:creator>Xnuiem</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[love]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[www]]></category>

		<guid isPermaLink="false">http://www.thisrand.com/?p=582</guid>
		<description><![CDATA[Time for another lesson in web design: Image Optimization!  Yes, as we all know it is really pretty to have a huge header on your website.  Hey, look at this...]]></description>
			<content:encoded><![CDATA[<p>Time for another lesson in <a target="_blank" class="zem_slink" title="Web design" rel="wikipedia" href="http://en.wikipedia.org/wiki/Web_design">web design</a>: Image Optimization!  Yes, as we all know it is really pretty to have a huge <a target="_blank" class="zem_slink" title="Header (computing)" rel="wikipedia" href="http://en.wikipedia.org/wiki/Header_%28computing%29">header</a> on your <a target="_blank" class="zem_slink" title="Website" rel="wikipedia" href="http://en.wikipedia.org/wiki/Website">website</a>.  Hey, look at this website, I have large images on my front page.  But, you don&#8217;t have to make that experience painful for your users, especially those on *gasp* <a target="_blank" class="zem_slink" title="Dial-up internet access" rel="wikipedia" href="http://en.wikipedia.org/wiki/Dial-up_internet_access">dial-up</a>!</p>
<p>The solution is simple: optimize your images.  I use <a target="_blank" href="http://www.adobe.com/products/fireworks/" target="_blank">Fireworks</a>, but <a target="_blank" href="http://www.adobe.com/products/photoshop/photoshop/" target="_blank">Photoshop</a> has it built in these days as well.  It is basically a way of taking the image you want to use, and removes unwanted data, making the image size smaller, and hence, faster to load.  <a target="_blank" class="zem_slink" title="World Wide Web" rel="wikipedia" href="http://en.wikipedia.org/wiki/World_Wide_Web">The web</a> is a horrible medium for images, the 72dpi resolution of most monitors is just not that great.  But, it is all we have right now, and that is probably a good thing since anything more and the image just gets bigger and bigger.</p>
<p>By optimizing, your look stays intact, and everyone can enjoy it faster.  And it is cheaper on your wallet since it requires less <a target="_blank" class="zem_slink" title="Bandwidth (computing)" rel="wikipedia" href="http://en.wikipedia.org/wiki/Bandwidth_%28computing%29">bandwidth</a> and less <a target="_blank" class="zem_slink" title="Central processing unit" rel="wikipedia" href="http://en.wikipedia.org/wiki/Central_processing_unit">CPU</a> to serve a smaller file.  Speaking of cheap, for those of you that do not have the <a target="_blank" class="zem_slink" title="Adobe" rel="wikipedia" href="http://en.wikipedia.org/wiki/Adobe">Adobe</a> suite, there is a pretty spiffy free online optimizer <a target="_blank" href="http://tools.dynamicdrive.com/imageoptimizer/" target="_blank">here</a>.  Enjoy, and for the love of all things holy, optimize!</p>
<p>If you want to read more on the topic: <a target="_blank" href="http://www.yourhtmlsource.com/optimisation/imageoptimisation.html" target="_blank">HTMLSource</a>.</p>
<h6 class="zemanta-related-title" style="font-size: 1em;">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a target="_blank" href="http://blogs.adobe.com/jnack/2009/02/gridmaker_panel.html">GridMaker panel released for Photoshop CS4</a> (blogs.adobe.com)</li>
<li class="zemanta-article-ul-li"><a target="_blank" href="http://chris.pirillo.com/2008/12/05/how-to-make-money-with-web-design/">How to Make Money With Web Design</a> (chris.pirillo.com)</li>
<li class="zemanta-article-ul-li"><a target="_blank" href="http://www.noupe.com/best-of/2008-most-popular-design-posts-tutorials-and-resources.html">2008 Most Popular Design posts, Tutorials and Resources</a> (noupe.com)</li>
<li class="zemanta-article-ul-li"><a target="_blank" href="http://www.code4dotnet.com/?p=1994">Photoshop.com: Store &amp; Share Your Pics Online</a> (code4dotnet.com)</li>
<li class="zemanta-article-ul-li"><a target="_blank" href="http://blogs.adobe.com/sarthaksinghal/2008/12/adobe_launches_community_help_1.html">Get to know the all new Adobe CS4 Help</a> (blogs.adobe.com)</li>
<li class="zemanta-article-ul-li"><a target="_blank" href="http://blogs.adobe.com/jnack/2009/02/julieanne_blogs.html">Julieanne blogs, right inside Photoshop</a> (blogs.adobe.com)</li>
<li class="zemanta-article-ul-li"><a target="_blank" href="http://www.masternewmedia.org/free-picture-editing-software-best-downloadable-image-editors-mini-guide/">Free Picture Editing Software: Best Downloadable Image Editors &#8211; Mini-Guide</a> (masternewmedia.org)</li>
<li class="zemanta-article-ul-li"><a target="_blank" href="http://www.noupe.com/photoshop/60-most-wanted-photoshop-tutorials-brushes-psds-and-resources.html">60 Most Wanted Photoshop Tutorials, Brushes, .PSDs and Resources</a> (noupe.com)</li>
</ul>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a target="_blank" class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/zemified_e.png?x-id=2036d642-2b4d-438a-a0c4-bd3d42cefa6f" alt="Enhanced by Zemanta" /></a><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.thisrand.com%2F2010%2F10%2Ffor-the-love-of-god-optimize-those-images&amp;title=For%20the%20Love%20of%20God%2C%20Optimize%20those%20Images%21" id="wpa2a_6"><img src="http://www.thisrand.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.thisrand.com/2010/10/for-the-love-of-god-optimize-those-images/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Top 15 Advantages of Being a Temp</title>
		<link>http://www.thisrand.com/2010/05/top-15-advantages-of-being-a-temp</link>
		<comments>http://www.thisrand.com/2010/05/top-15-advantages-of-being-a-temp#comments</comments>
		<pubDate>Wed, 26 May 2010 01:32:56 +0000</pubDate>
		<dc:creator>Xnuiem</dc:creator>
				<category><![CDATA[ramblings]]></category>
		<category><![CDATA[thoughts]]></category>
		<category><![CDATA[fun?!]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://www.thisrand.com/2010/05/top-15-advantages-of-being-a-temp</guid>
		<description><![CDATA[I&#8217;ve held onto a list from Dilbert.com from 2001 as to the Top 15 Advantages of Being a Temp.  It&#8217;s still so true. 1. You&#8217;re only lending your soul, not selling...]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve held onto a list from Dilbert.com from 2001 as to the Top 15  Advantages of Being a Temp.  It&#8217;s still so true.<br />
1. You&#8217;re only lending your soul, not selling it.<br />
2. You won&#8217;t be there when the fruits of your labor turn rotten.<br />
3. Trying on a different personality at each new job site.<br />
4. You don&#8217;t have to continually fork over park of your paycheck for  coworkers&#8217; weddings, babies, birthdays and anniversaries, or children&#8217;s  school, scouts, athletic, and band fund-raising efforts.<br />
5. No one gives you clothes emblazoned with the company logo and then  expects you to wear them.<br />
6. You can avoid the internal &#8220;war&#8221;. I once temped at an office so  divided and filled with hate, one half wouldn&#8217;t even speak with the  other.. it was my job to convey messages between the enemy camps.<br />
7. Your true Pointy-Haired Boss is usually miles away&#8230; and the  &#8220;customer&#8221; PHB can often be ignored.<br />
8. Overtime at time and a half! woohoo!<br />
9. Leaving at 4:30.<br />
10. Eight words: &#8220;It was like that when I got here.&#8221;<br />
11. You get to hear the words, &#8220;good job&#8221; and &#8220;please stay&#8221; frequently.<br />
12. When the company goes out backwards your resume says you worked for  an agency.<br />
13. You don&#8217;t give a rat&#8217;s hoohaa what the stock is doing.<br />
14. I know my end date.  The directs don&#8217;t.<br />
15. It&#8217;s like being the only lemming in the group with a parachute&#8230;</p>
<h6 class="zemanta-related-title" style="font-size: 1em;">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a target="_blank" href="http://r.zemanta.com/?u=http%3A//www.guardian.co.uk/lifeandstyle/2010/may/08/what-really-thinking-office-temp&amp;a=17718644&amp;rid=9ed613df-4cfb-4b21-9c96-c2596e5cd9a3&amp;e=cffb6a2baf5b31a509d77eaf971120dd">What I&#8217;m really thinking: The office temp</a> (guardian.co.uk)</li>
<li class="zemanta-article-ul-li"><a target="_blank" href="http://seattletimes.nwsource.com/html/businesstechnology/2011949662_apuswatercooler.html?syndication=rss">Tips on how to make the temp-to-perm transition</a> (seattletimes.nwsource.com)</li>
</ul>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a target="_blank" class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/zemified_e.png?x-id=9ed613df-4cfb-4b21-9c96-c2596e5cd9a3" alt="Enhanced by Zemanta" /></a><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.thisrand.com%2F2010%2F05%2Ftop-15-advantages-of-being-a-temp&amp;title=Top%2015%20Advantages%20of%20Being%20a%20Temp" id="wpa2a_8"><img src="http://www.thisrand.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.thisrand.com/2010/05/top-15-advantages-of-being-a-temp/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Don&#8217;t Make any sudden moves, or Capital One will charge you with Assault</title>
		<link>http://www.thisrand.com/2010/04/dont-make-any-sudden-moves-or-captial-one-will-charge-you-with-assault</link>
		<comments>http://www.thisrand.com/2010/04/dont-make-any-sudden-moves-or-captial-one-will-charge-you-with-assault#comments</comments>
		<pubDate>Wed, 21 Apr 2010 19:31:06 +0000</pubDate>
		<dc:creator>Xnuiem</dc:creator>
				<category><![CDATA[thoughts]]></category>
		<category><![CDATA[Banking]]></category>
		<category><![CDATA[Capital One]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[XM]]></category>

		<guid isPermaLink="false">http://www.thisrand.com/?p=979</guid>
		<description><![CDATA[I went in to the Flower Mound Branch of Capital One to deposit a pair of checks, one of which was for my mentally and physically disabled father in law...]]></description>
			<content:encoded><![CDATA[<p>I went in to the Flower Mound Branch of <a target="_blank" class="zem_slink" title="Capital One" rel="homepage" href="http://www.capitalone.com/">Capital One</a> to deposit a pair of checks, one of which was for my mentally and physically disabled father in law for whom I am Attorney In Fact (I have durable <a target="_blank" class="zem_slink" title="Power of attorney" rel="wikipedia" href="http://en.wikipedia.org/wiki/Power_of_attorney">power of attorney</a>).  Despite the account being used for this purpose for almost a year with many checks including ones just like this, (Treasury Dept.), I was informed this wasn&#8217;t sufficient any longer and I needed to re-open the account correctly.  I have no idea how the account was opened incorrectly, but Lynn, the Assistant Branch manager said it was wrong and therefore we could not deposit the check.  I said that was f&#8212;ing ridiculous since we have been doing business this way for almost a year and have so much business at Capital One.  This was after her asking me to sit in her office for over twenty minutes waiting on something that usually takes two minutes and we handle through the drive through.</p>
<p>I then stood up to leave, and Lynn took the check from her desk, and despite me asking her for it, since she wasn&#8217;t going to do anything with it anyways, she refused and I reached over and took it from her hand, since after all it was my property and she refused to give it to me.  She then very dramatically claimed I assaulted her, and claimed to call the <a target="_blank" class="zem_slink" title="Police" rel="wikipedia" href="http://en.wikipedia.org/wiki/Police">police</a>.  I laughed considering the preposterous nature of the claim of assault, and left to continue on errands with my family.</p>
<p>While driving, I called the national call center for Capital One and filed a formal complaint with Brittany.  She informed me of the process and that someone would be in touch.</p>
<p>About fifteen minutes later, I received a call on my cell phone from the Flower Mound Police Department asking me to return to either the bank or the police department.  I told them I would be at the police department in about ten minutes.</p>
<p>I showed up and sat down in a conference room with a pair of officers who explained to me the situation.  Lynn is claiming assault, but since it obviously wasn&#8217;t assault, it has been moved down to a Class C misdemeanor of &#8220;Offensive Touch&#8221;, which is dubious since there were no witnesses or any physical evidence.  I filled out a voluntary statement explaining what had happened. The officer  said the bank wanted to &#8220;Trespass&#8221; me, which basically means they tell me not to come back or they will call the cops.  The officer said he wasn&#8217;t going to do it, and asked for my word that I wouldn&#8217;t go back.  I, of course, gave it since at this point I can&#8217;t take my business from Capital One fast enough.</p>
<p>During this time, my wife had been in the car with my girls and on the phone with Capital One trying to figure out how to continue to conduct business until we can change banks.  Sandy (she introduced herself as the branch manager), told my wife I was not to come back to the bank, and that all our accounts are now frozen (garnished).  Sandy gave no reason for this drastic (and illegal) action.  My wife told Sandy that she needed to buy groceries that night for our infant and toddler daughters, and in response, Sandy said, &#8220;You can&#8217;t.  Your accounts are all on hold, until you come in and close them.&#8221;</p>
<p>One of the accounts garnished was my business account, and LLC which isn&#8217;t even mine since it is its own entity not linked to my social security number at all.</p>
<p>My wife eventually got the number for Mr. Randy Hall, the District Manager, whom we tried to call several times but he doesn&#8217;t answer his phone and his voicemail isn&#8217;t set up, so we were unable to leave him a message.</p>
<p>We received a voice mail on Tuesday from Leslie at the call center saying &#8220;there is a chain of command and you will need to speak with the Branch Manager&#8221;.  We also found out that day that there really isn&#8217;t a branch manager just an interim setup of various people filling in as required.</p>
<p>Since all our accounts were frozen, we went and opened four new accounts at another local bank.  My wife had asked Capital One&#8217;s call center for some help in understanding what was going on, but they said we had to speak to the branch manager at the Flower Mound branch.  We couldn&#8217;t even go to another branch to get this fixed, and by fixed, I mean, get our money that had been illegal garnished.  We then got our attorney involved to figure out how to get the accounts closed.  He called the Flower Mound PD and they said to just go to the Flower Mound branch, and let them call the police.  As long as we were there conducting business, they can&#8217;t ask us to leave since we have effected consent to be on private property.</p>
<p>I didn&#8217;t really like that answer, so our attorney called the Flower Mound branch and asked what we could do.  James said my wife could come up there and close the accounts, even though the business account, by contract and law, couldn&#8217;t be closed by anyone other than myself.  But since Capital One employees had already broken a few laws, why stop now?  We decided to go to the Lewisville Branch and close the accounts.</p>
<p>Olivia helped us there and was very helpful, friendly, and professional, exactly what we were used to and have come to expect from Capital One over the years.</p>
<p>On Wednesday, I again called the call center and spoke to Kenneth, who was appalled at the entire situation and again gave me Randy Hall&#8217;s phone number.  Kenneth did confirm that it was in fact not working and gave me Mr. Hall&#8217;s assistant&#8217;s phone number instead.  Kenneth did confirm that in Texas it is illegal to place a hold on an account&#8217;s funds without state or federal directives and only then it is for child support or the IRS.</p>
<p>I have called and left a message with Randy Hall&#8217;s assistant, so we will see where this goes.   I am still pursuing the matter actively with consumer groups, regulatory entities, and governmental agencies.</p>
<p>The treatment was ridiculous.  Does Lynn call the cops on every single person that takes a piece of paper from her hand faster than she wanted?  Especially after being asked for it and not relinquishing it?  If so, it is amazing there are customers at the Flower Mound branch of Capital One at all.  If not, why was I singled out?  What are the consequences for Sandy and Lynn for illegally garnishing our accounts, including a company account which is hurting our business since we can&#8217;t cut checks until we have new ones printed?  I have employees to pay, and that now gets delayed due to the illegal scare tactics of Capital One Bank.</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a target="_blank" class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/4c2dd45d-8c12-4de0-8886-a7da676b2da1/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/reblog_e.png?x-id=4c2dd45d-8c12-4de0-8886-a7da676b2da1" alt="Reblog this post [with Zemanta]" /></a><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.thisrand.com%2F2010%2F04%2Fdont-make-any-sudden-moves-or-captial-one-will-charge-you-with-assault&amp;title=Don%26%238217%3Bt%20Make%20any%20sudden%20moves%2C%20or%20Capital%20One%20will%20charge%20you%20with%20Assault" id="wpa2a_10"><img src="http://www.thisrand.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.thisrand.com/2010/04/dont-make-any-sudden-moves-or-captial-one-will-charge-you-with-assault/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

