<?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>From Shane</title>
	<atom:link href="http://shaneandcassandra.com/shane/index.php?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://shaneandcassandra.com/shane</link>
	<description></description>
	<lastBuildDate>Mon, 22 Aug 2011 12:45:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>Productive Programming With Find &amp; Replace in Visual Studio</title>
		<link>http://shaneandcassandra.com/shane/?p=108</link>
		<comments>http://shaneandcassandra.com/shane/?p=108#comments</comments>
		<pubDate>Wed, 03 Aug 2011 19:07:59 +0000</pubDate>
		<dc:creator>Shane Crawford</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://shaneandcassandra.com/shane/?p=108</guid>
		<description><![CDATA[Don&#8217;t waste your time typing. Use these examples to form your own regular expressions to more effectively copy and paste your code to other objects you create (Read: copy and paste from the web). If you do the same thing more than twice then you&#8217;re wasting time. Get good at using these regular expressions, they&#8217;re [...]]]></description>
			<content:encoded><![CDATA[<p>Don&#8217;t waste your time typing. Use these examples to form your own regular expressions to more effectively copy and paste your code to other objects you create (Read: copy and paste from the web). If you do the same thing more than twice then you&#8217;re wasting time. Get good at using these regular expressions, they&#8217;re a huge time saver. As I do them in my own work I&#8217;ll be posting them here, mostly because I forget what I do and I&#8217;ll want to go back and reference them.</p>
<p><code><br />
[DataMapping("avg-pts", 1)]<br />
public float Line { get; set; }</p>
<p>[DataMapping("rank-avg-pts", 1)]<br />
public int Line { get; set; }<br />
</code></p>
<p>Change all fields that are a ranking to a data type of <code>int</code>:<br />
<strong>Find Expression:</strong><br />
<code>DataMapping{.*rank.*\n.*}public float</code><br />
<strong>Replace Expression:</strong><br />
<code> DataMapping\1public int</code></p>
<p>We are finding anything with the the term rank in the first line and is already declared as a float in the second line. We then take that entire expression, denoted as \1 and just change <code>float</code>at the end to <code>int</code></p>
<p><code><br />
[StatColumn(Visible = true, HeaderText = "")]<br />
public string Palming { get; set; }</p>
<p>[StatColumn(Visible = true, HeaderText = "Palming")]<br />
public string Palming { get; set; }<br />
</code><br />
Change all empty quotes in the above property attributes to be the name of the property defined below.<br />
<strong>Find Expression:</strong><br />
<code>\[StatColumn\(Visible = true, HeaderText = ""\)\]\n.*public {(string|int)} {.*} \{ get; set; \}</code><br />
<strong>Replace Expression:</strong><br />
<code> [StatColumn(Visible = true, HeaderText = "\2")]\n\t\tpublic \1 \2 { get; set; }</code></p>
<p>There are two parameters we need to capture from the find expression to use in the replace expression. The first one is the data type (string or int). We denote the selection with <code>(string|int)</code>. That&#8217;s just an &#8220;or&#8221; operator on that string so it would find anything with string or int, but not if we had a bool type. The second is the name of the variable, which we use everything (.*) between the spaces after the data type and before the property functionality.</p>
<p><code>public ShotReportLine DefensiveGameShotChart { get { return _DefensiveGameShotChart; } }</code></p>
<p>In this example, we want to just add a protected set to each of these properties that already exist, where we just change their private member variable. Easy enough:</p>
<p><strong>Find Expression:</strong><br />
<code>public {.*} \{ get \{ return {.*}; \} \}</code><br />
<strong>Replace Expression:</strong><br />
<code>public \1 \{ get \{ return \2; \} protected set \{ \2 \= value; \} \}</code></p>
<p>Next, we want to insert another object and change its property just like we changed the first property<br />
<strong>Before</strong><br />
<code>Player1.BoxScoreLine.Point = stat.STATVAL;<br />
break;</code></p>
<p><strong>After</strong><br />
<code>Player1.BoxScoreLine.Point = stat.STATVAL;<br />
pbpTeam.TeamStatLine.Point = stat.STATVAL;<br />
break;</code></p>
<p>I&#8217;m going to search for the first line with any property value in the BoxScoreLine, then make that same property assign to the STATVAL for the pbpTeam object.</p>
<p><strong>Find Expression:</strong><br />
<code>Player2\.BoxScoreLine\.{.*} = stat\.STATVAL;\n{.*}break;</code><br />
<strong>Replace Expression:</strong><br />
<code>Player2\.BoxScoreLine\.\1 = stat\.STATVAL;\n\2pbpTeam\.TeamStatLine\.\1 = stat\.STATVAL;\n\2break;</code></p>
]]></content:encoded>
			<wfw:commentRss>http://shaneandcassandra.com/shane/?feed=rss2&#038;p=108</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Airlines&#8217; New Slogans</title>
		<link>http://shaneandcassandra.com/shane/?p=102</link>
		<comments>http://shaneandcassandra.com/shane/?p=102#comments</comments>
		<pubDate>Thu, 23 Jun 2011 19:47:31 +0000</pubDate>
		<dc:creator>Shane Crawford</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://shaneandcassandra.com/shane/?p=102</guid>
		<description><![CDATA[Cassandra and I recently came across these not-yet unveiled slogans for Delta Airlines and US Airways. For when you don&#8217;t want to fly, but you have to Because you have to fly on our airline if it&#8217;s almost free. Bend over. You&#8217;re on US Airways Fly US Airways. It&#8217;s the only way to use our [...]]]></description>
			<content:encoded><![CDATA[<p>Cassandra and I recently came across these not-yet unveiled slogans for Delta Airlines and US Airways.</p>
<p><em>For when you don&#8217;t want to fly, but you have to</em></p>
<p><em>Because you have to fly on our airline if it&#8217;s almost free.</em></p>
<p><em>Bend over. You&#8217;re on US Airways</em></p>
<p><em>Fly US Airways. It&#8217;s the only way to use our vouchers when we scew up</em></p>
<p><em>We can&#8217;t promise you&#8217;ll enjoy your flight. But we can promise you&#8217;ll have a story.</em></p>
<p><em>Delta: It&#8217;s like getting a close up view of an antique.</em></p>
<p><em>Delta. Are you sure?</em></p>
<p><em>Delta. An amputee&#8217;s best friend</em></p>
<p><em> Delta: The only ones with a red logo</em></p>
<p><em>Delta: You&#8217;ll wish you had flown with US Airways.</em></p>
<p><em>US Airways: You&#8217;ll wish you were dead</em></p>
<p><em>US Airways. You&#8217;ll wish it was your own funeral you were traveling to.</em></p>
<p><em>Delta: Make friends with your neighbors. You&#8217;ll need a support system.</em></p>
<p><em>Delta: Make friends with your neighbors. This trip will last a lifetime.</em></p>
<p><em>Delta: Because your friends need a good laugh.</em></p>
<p><em>Delta. Because crying is good for your health.</em></p>
<p><em>5 out of 5 doctors agree that flying US Airways improves low blood pressure </em></p>
<p><em>Delta: If you find the nice flight attendant, you win a prize.</em></p>
<p><em>US Airways: When your tired of living the care-free life</em></p>
<p><em>When you&#8217;re depressed, fly US Airways. We&#8217;ll show you how good your life used to be.</em></p>
<p><em>Time moves slower in Delta Reality</em></p>
]]></content:encoded>
			<wfw:commentRss>http://shaneandcassandra.com/shane/?feed=rss2&#038;p=102</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Helicopters Aren&#8217;t For Greyhounds</title>
		<link>http://shaneandcassandra.com/shane/?p=89</link>
		<comments>http://shaneandcassandra.com/shane/?p=89#comments</comments>
		<pubDate>Thu, 10 Feb 2011 19:32:52 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://shaneandcassandra.com/shane/?p=89</guid>
		<description><![CDATA[I got to the point where I can fly my little remote helicopter around and have some control. I even flew it through the little hole in our wall at the top of the staircase. Cassandra, though&#8230; One of the very first missions for the red helicopter started out spinny, as it should. From there, [...]]]></description>
			<content:encoded><![CDATA[<p>I got to the point where I can fly my little remote helicopter around and have some<br />
control. I even flew it through the little hole in our wall at the top of<br />
the staircase. Cassandra, though&#8230;</p>
<p>One of the very first missions for the red helicopter started out spinny, as<br />
it should. From there, though, it was only a short time until hit hit the<br />
wall head on and fluttered down until it made a crash landing in the dogs&#8217;<br />
water bowl. How she managed to find the one little spot of water in the<br />
whole house to land it in, I do not know. The good news is that being<br />
completely submersed in water did not seem to phase the baby helicopter.<br />
After a short drying off period, it was time for another flight.</p>
<p>This time, it wasn&#8217;t the wall, but the ceiling. After making rather blunt<br />
contact with the ceiling, the copter spiraled downwards towards the dog bed.<br />
Ajax looked up with fear in his eyes. He tried to get up and run, but it was<br />
too late. He was hit. Moving past &#8220;freaked out&#8221; and quickly into &#8220;fear<br />
induced panic&#8221;, he sprung to his feet and sprinted as quickly as he could to<br />
the stairs, trying to get to the bedroom, his one safe hideout in this newly<br />
helicopter-infested house. The carpet, though, soon gave way to slick wood,<br />
and his toes could no longer dig in to keep him running. All four legs slid<br />
out from underneath his chest sending him rocketing on his back across the<br />
floor. Traveling completely uncontrolled in a back-slide, he slammed into<br />
the foosball table, moving it about a foot and a half towards the staircase.<br />
Even more frightened, now, he scuttled his feet on the wood, trying to get<br />
any kind of traction. Big round blurs replaced the places where his legs<br />
used to be, much like the roadrunner. Finally he managed to get his weight<br />
balanced on his feet and off he went upstairs, where he refused to come down<br />
until the next morning.</p>
]]></content:encoded>
			<wfw:commentRss>http://shaneandcassandra.com/shane/?feed=rss2&#038;p=89</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Alaska Day 1: We are JetBlue and 10 Years Have Stolen Our Soul</title>
		<link>http://shaneandcassandra.com/shane/?p=80</link>
		<comments>http://shaneandcassandra.com/shane/?p=80#comments</comments>
		<pubDate>Fri, 27 Aug 2010 22:49:54 +0000</pubDate>
		<dc:creator>Shane Crawford</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://shaneandcassandra.com/shane/?p=80</guid>
		<description><![CDATA[JetBlue just hit their tenth anniversary. They used to have a business model built on great (okay better than crappy) customer service and planes with built in entertainment, or as it is commonly called, a TV. Well, like a naive young child, they eventually grew up and realized what being an airline was really all [...]]]></description>
			<content:encoded><![CDATA[<p>JetBlue just hit their tenth anniversary. They used to have a business model built on great (okay better than crappy) customer service and planes with built in entertainment, or as it is commonly called, a TV. Well, like a naive young child, they eventually grew up and realized what being an airline was really all about. Treating people like crap and charging for everything. Basically, they are down to just the TVs at this point.</p>
<p>This week, we start on a trip to Alaska on a Royal Caribbean cruise. We will stop a few places in Alaska and once in Victoria, BC. Along the way we will eat some salmon, take some photos, and punch some eskimos. We leave from Seattle, so last night we hopped on a JetBlue flight for SeaTac. Just us, eighty children who apparently had no parents, and our thoughts of suicide. The good news was that the plane was only half full. The bad news, as i recently mentioned was the abundance of children and their propensity for being annoying.</p>
<p>As the plane boarded and then got set to take off, it was clear that we did not have a full flight. In an effort to improve a good flight experience, many passengers branched out to give themselves a little more space. The JetBlue flight crew would have none of that.</p>
<p>&#8220;You can&#8217;t sit there,&#8221; an effeminate flight attendant announced as a man decided to grab a spacious exit row seat. </p>
<p>&#8220;Why not?&#8221;</p>
<p>&#8220;We charge more for those seats. I can run your credit card for $40 for you if you wish to stay there.&#8221;</p>
<p>&#8220;But there&#8217;s no one sitting here and the doors are closed,&#8221; the man argued.</p>
<p>&#8220;If someone else boards the plane, though, they may have paid extra for that seat.&#8221;</p>
<p><a href="http://shaneandcassandra.com/shane/wp-content/uploads/2010/08/p_960_768_7A48DC78-E2D1-4A96-A17A-D93DF423E3F4.jpeg"><img src="http://shaneandcassandra.com/shane/wp-content/uploads/2010/08/p_960_768_7A48DC78-E2D1-4A96-A17A-D93DF423E3F4.jpeg" alt="" class="alignnone size-full" /></a></p>
<p>Needless to say, no one else was boarding, and no one else did sit there. It was clear at this point, though that this flight crew was made up of Satan and his minions. From there, things just got worse. The girl sitting next to us was barked at for asking for a blanket. Of course, she was lectured AND charged $7 for the blanket. Another attendant had a frustrated look when I asked for a snack different than the variety that he randomly selected for me. I know, I was way out of line not wanting to eat the blue potato chips. </p>
<p>It was six hours of mean flight attendants, crying babies, and smelly old people. Now, about sixteen hours later, sitting on the cruise ship waiting to leave and writing on my iPad, I realize that the smelly old people part will not end with the flight to Seattle. Alaska attracts old people like honey attracts wild bears, which incidentally reminds me to advise you not to bring honey to Alaska. Lots of bears. We have been on the ship for only three hours and I&#8217;ve already grown weary of saying &#8220;old people&#8221; so much so that Cassandra and I have just coined the term OPs. Similarly, there are FPs here (Fat people) and the more uncommon but still abundant OFPs.</p>
<p>As for JetBlue, it looks like they are way past the experiences of five years ago when they would find out I was a blood clot risk and block the seat beside me so I had extra space. They have sunk down to the levels of all the hoer airlines because in the airline business, consumers just have to deal with it. I will still probably fly with them some due to lack of better options, but I certainly no longer recommend them to anyone else, and don&#8217;t go out of my way to book with them over other airlines anymore. Happy 10th anniversary JetBlue. You&#8217;ve grown into a real airline.</p>
<p><a href="http://shaneandcassandra.com/shane/wp-content/uploads/2010/08/p_960_768_9E6BC3BA-8C0C-4A04-98E9-C5B7B1BEDA0B.jpeg"><img src="http://shaneandcassandra.com/shane/wp-content/uploads/2010/08/p_960_768_9E6BC3BA-8C0C-4A04-98E9-C5B7B1BEDA0B.jpeg" alt="" class="alignnone size-full" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://shaneandcassandra.com/shane/?feed=rss2&#038;p=80</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How You Found Us</title>
		<link>http://shaneandcassandra.com/shane/?p=76</link>
		<comments>http://shaneandcassandra.com/shane/?p=76#comments</comments>
		<pubDate>Thu, 24 Jun 2010 19:24:00 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://shaneandcassandra.com/shane/?p=76</guid>
		<description><![CDATA[If you own a website and publish to it semi-regularly, sometimes you ask yourself what you actually contribute to the world. With the help of Google, Cassandra and I found out how our website really helps others. Let&#8217;s just say it might not be completely as we planned. I give you, then, the search terms [...]]]></description>
			<content:encoded><![CDATA[<p>If you own a website and publish to it semi-regularly, sometimes you ask yourself what you actually contribute to the world. With the help of Google, Cassandra and I found out how our website <em>really</em> helps others. Let&#8217;s just say it might not be completely as we planned. I give you, then, the search terms which brought you the public to our site over the past twelve months. My comments and analysis inserted where necessary or funny. Search terms are listed in order of frequency.</p>
<p>1    how to build a scoreboard<br />
2    napoleon dynamite technology lyrics<br />
3    shane and cassandra<br />
4    damn boobs</p>
<p><em>Many people are really upset with boobs. My question is whether they are upset with their own damn boobs, or someone else&#8217;s damn boobs.</em></p>
<p>5    cassandra.com</p>
<p><em>You missed by adding an extra &#8220;shane&#8221; in there. Try again.</em></p>
<p>6    build a scoreboard<br />
7    shaneandcassandra.com</p>
<p><em>I think you  meant to type that into the address bar, not the google search box, champ. Learn the difference.</em></p>
<p>8    yes i love technology but not as much as you you see lyrics<br />
9    build scoreboard<br />
10    reasons to be a sports fan<br />
11    desk no legs<br />
12    &#8220;shaneandcassandra&#8221;<br />
13    desk with no legs<br />
14    how to build an electronic scoreboard</p>
<p><em>As you can see, many people are interested in building scoreboards. I hope they learned a lot from all the jokes I made on that page.</em></p>
<p>15    shaneandcassandra<br />
16    always forever lyrics kip<br />
17    boobs crap</p>
<p><em>They do? If mine did I&#8217;d certainly be looking for solutions to that problem also!</em></p>
<p>18    building a scoreboard<br />
19    desks with no legs<br />
20    dr pepper nausea<br />
21    dr. pepper nausea<br />
22    how to build scoreboard<br />
23    http://shaneandcassandra.com/shane/?p=54<br />
24    reasons to love sports<br />
25    revolving door humor</p>
<p><em>This is a thing? Really?</em></p>
<p>26    stopped escalator<br />
27    why people love sports</p>
<p><em>I&#8217;m pretty sure my sister was searching for this one.</em></p>
<p>28    &#8220;build a scoreboard&#8221;<br />
29    &#8220;dr pepper&#8221; nausea<br />
30    &#8220;freenewyork.net/dpfaq.html&#8221;<br />
31    &#8220;how many rows&#8221; &#8220;progressive field&#8221;</p>
<p><em>Lots.</em></p>
<p>32    &#8220;i love you too football&#8221;<br />
33    &#8220;you have reached the sprint pcs<br />
34    ajax dog cassandra<br />
35    al michaels sixty nine</p>
<p><em>Someone knows that we know something that nobody else, including ourselves didn&#8217;t even know.</em></p>
<p>36    always and forever kip keys<br />
37    antitrust agree or disagree</p>
<p><em>YES!</em></p>
<p>38    are the words hell and damn bad</p>
<p><em>No, Mom, not really. Relax.</em></p>
<p>39    at&amp;t park seat size fat</p>
<p><em>If you have to search for that, you should probably just go ahead and catch the game on TV at home.</em></p>
<p>40    balco<br />
41    big cassandra.com</p>
<p><em>&#8220;I&#8217;m Muzzy. BIIIG Muzzy.&#8221;</em></p>
<p>42    boss office layout<br />
43    boston scene in fabric<br />
44    build lcd scoreboard<br />
45    build led scoreboard<br />
46    casandra salem, ma</p>
<p><em>A little too personal. That&#8217;s kind of scary.</em></p>
<p>47    casndra klarson<br />
48    cassandra .com<br />
49    cassandra ainge<br />
50    cassandra bag<br />
51    cassandra big boobs</p>
<p><em>I&#8217;m listening&#8230;</em></p>
<p>52    cassandra cavs<br />
53    cassandra com<br />
54    cassandra crawford<br />
55    cassandra kentucky fried chicken<br />
56    cassandra kfc<br />
57    cassandra mexican food</p>
<p><em>Another specific one&#8230;</em></p>
<p>58    cassandra mexican texas</p>
<p><em>Okay, who is she making angry?</em></p>
<p>59    cassandra s. crawford<br />
60    cassandra shane<br />
61    cassandra sharne facebook</p>
<p><em>Get my name right, numskull.</em></p>
<p>62    cassandra tulips<br />
63    cassandra website<br />
64    cassandra.com.mx<br />
65    cassandra/cleveland cavs</p>
<p><em>If she&#8217;s cheating on the Celtics with the Cavs, we&#8217;ll have problems.</em></p>
<p>66    cassie blanca + shane diesel + download<br />
67    celtics leave hanscom field<br />
68    city of peabody ma zoning decisions sonic<br />
69    cleveland cavs private plane<br />
70    collared sissy blog</p>
<p><em>I have to assume that &#8220;Collared Sissy&#8221; is a nickname for Ajax. Seems about right.</em></p>
<p>71    commercials during nfl opening night</p>
<p><em>Lots.</em></p>
<p>72    commercials opening night of nfl 9/10<br />
73    coors nfl song, nbc<br />
74    cream flowers on black<br />
75    crowded escalators pictures<br />
76    damn boobies</p>
<p><em>Yeah! They suck!</em></p>
<p>77    dear cassandra; it&#8217;s late, i just watched your plane take off</p>
<p><em>STALKER!</em></p>
<p>78    desk no legs attached to wall<br />
79    desks no legs<br />
80    did tike barber get demoted by nbc<br />
81    drake way peabody townhouses</p>
<p><em>They suck. Move on.</em></p>
<p>82    drake way townhouses peabody</p>
<p><em>Suck.</em></p>
<p>83    escalator stairs<br />
84    fabric camera case sewing patterns<br />
85    fabric casandra</p>
<p><em>I have one of those for when the real one goes out of town.</em></p>
<p>86    faith hill on 10 sep nfl opening night, will she sing<br />
87    first:&#8221;cassandra&#8221; last:&#8221;crawford&#8221;<br />
88    fisherman&#8217;s wharf giant silver man</p>
<p><em>He&#8217;s not really that big.</em></p>
<p>89    flowery fabrics<br />
90    greyhound blog shane and cassandra<br />
91    half time show nfl opening night<br />
92    hanging cassandras.com<br />
93    heat dancers cassandra</p>
<p><em>I wish&#8230;&#8230;</em></p>
<p>94    how do announcers know what pitch was thrown</p>
<p><em>They&#8217;re either magical, or they have eyes. I&#8217;ll go with the eyes theory.</em></p>
<p>95    how to build a scoreboard with lcd tv<br />
96    how to build a scoreboard?<br />
97    how to build an old fashioned scoreboard<br />
98    how to build big scorebord<br />
99    how to build cardboard scoreboard</p>
<p><em>Isn&#8217;t that just an exercise in using a marker?</em></p>
<p>100    how to construct a scoreboard<br />
101    how to create a scoreboard for a game<br />
102    how to look pretty with no legs</p>
<p><em>Can&#8217;t do it. Not possible. </em></p>
<p>103    how to make a at home scoreboard<br />
104    how to make a cardboard scoreboard<br />
105    how to make a giant scoreboard<br />
106    how to make a scoreboard in a video<br />
107    how to make a small scoreboard<br />
108    how to make cardboard scoreboard<br />
109    how to make scoreboard<br />
110    how to make scoreboard cardboard<br />
111    howto build score board<br />
112    inurl:?p=2 &#8220;leave a reply&#8221;<br />
113    kfc touchdown celebration nfl 2007<br />
114    laws that protect the ncaa<br />
115    look,ma no legs<br />
116    lyrics &#8220;i caught you a delicious bass&#8221;</p>
<p><em>That&#8217;s not a song. That&#8217;s a line from a movie, smart guy.</em></p>
<p>117    lyrics to always and forever napoleon dynamite<br />
118    make a cardboard scoreboard<br />
119    make an old school scoreboard<br />
120    men crying prior to a sporting event</p>
<p><em>I think this refers to the WNBA. Fun fact: Despite their appearance, the players are actually women!</em></p>
<p>121    mexician fabric dog coats</p>
<p><em>Oh, that makes me sad. But also, I think a coat made out of my greyhounds would be very comfortable, so I&#8217;m conflicted.</em></p>
<p>122    napoleon dynamite keyboard<br />
123    napoleon dynamite songs keyboard<br />
124    napoleon dynamite technology song lyrics<br />
125    nbc commercial nfl opening night<br />
126    nbc thursday night football commercial break song<br />
127    new nfl opening song<br />
128    nfl comercial with girl singing</p>
<p><em>It&#8217;s not just any girl. It&#8217;s the wife of Faith Hill&#8217;s husband. All right, Sunday Night. Where are you? Nobody ever puts you back when they&#8217;re done using you.</em></p>
<p>129    nfl opening commercial<br />
130    nfl opening kick-off press conference kelly clarkson<br />
131    nfl opening lines september 7</p>
<p><em>I don&#8217;t know specifics, but I bet it was something like Cleveland +[Insert Double Digit Number Here]</em></p>
<p>132    nfl opening night score<br />
133    nfl pink opening night football<br />
134    nfl player cassandra<br />
135    p66 depth record<br />
136    pa announcer jokes</p>
<p><em>Oh, I know a LOT of these, thanks to Eddie.</em></p>
<p>137    people think we make $3 million and $4 million a year. they don&#8217;t realize that most of us only make $500,000.&#8221;<br />
138    pictures of cassandra crawford</p>
<p><em>Now I&#8217;m pretty sure she&#8217;s got a stalker and might get murdered.</em></p>
<p>139    pictures of shane crawfords family 2009<br />
140    playing favorites<br />
141    random stuff in consecutive order</p>
<p><em>Freak alert.</em></p>
<p>142    reason i love sport<br />
143    reason to love sports quotes<br />
144    reasons for liking sports<br />
145    reasons of loving sports<br />
146    riddle on escalator stairway<br />
147    scoreboard = new scoreboard tictactoe<br />
148    september 2009 pictures of shane west<br />
149    shaine and friend boobs</p>
<p><em>Hello. This is my friend, Boobs. Meet her friend, Other Boobs.</em></p>
<p>150    shane and cassandra lesbiens</p>
<p><em>Shhhhhh! That&#8217;s a secret!</em></p>
<p>151    shane and cassandra wedding<br />
152    shane cleveland<br />
153    shane crawford&#8217;s family<br />
154    shane&#8217;s trip<br />
155    shopping achievement<br />
156    sissy collar</p>
<p><em>With a fag tag.</em></p>
<p>157    song lyrics napolean i love technology<br />
158    sonic august 26th peabody mass<br />
159    sonic burger newengland<br />
160    sonic in new england<br />
161    sonic new england</p>
<p><em>Mmmmm. Yes please.</em></p>
<p>162    sunday night football commercial break song<br />
163    take me into the holy of holies by shane n shane<br />
164    tandem garage depth<br />
165    the death of shane crawford<br />
166    trust me if i say it&#8217;s ok<br />
167    trust me though, there&#8217;s no un watching it.﻿<br />
168    ugly fabrics<br />
169    using a non-moving escalator</p>
<p><em>It&#8217;s easy. Pretend it&#8217;s stairs.</em></p>
<p>170    video of guy jumping off pier and breaking open his face</p>
<p><em>Please forward along when you find it.</em></p>
<p>171    video of installing a center hung arena scoreboard<br />
172    want to watch nfl opening celebration<br />
173    we met in a chatroom, now our love can fully bloom. yea the world wide web is great, but you&#8230;you make me salivate. always and forever. lyrics<br />
174    what is the song from pepsi commercial played on start of nfl season<br />
175    what&#8217;s the song for the new football season (madden 10)commercial<br />
176    whats that one song they played last night on opening night for football<br />
177    when is sonic coming to new england<br />
178    who&#8217;s singing in the thursday night nfl kickoff commercial 2009<br />
179    why do people love sport?<br />
180    your eyes are like a flock of doves napoleon dynamite<br />
181    shane cassandra.com</p>
]]></content:encoded>
			<wfw:commentRss>http://shaneandcassandra.com/shane/?feed=rss2&#038;p=76</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Anti-Trust Me, It&#8217;s Okay</title>
		<link>http://shaneandcassandra.com/shane/?p=71</link>
		<comments>http://shaneandcassandra.com/shane/?p=71#comments</comments>
		<pubDate>Fri, 13 Nov 2009 17:55:08 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://shaneandcassandra.com/shane/?p=71</guid>
		<description><![CDATA[Cassandra sent me this article today, which is an interesting history on the anti-trust history of the NFL and why they end up playing Thursday nights on national TV but you don&#8217;t see any Friday or Saturday games until the College Football season is over. If you don&#8217;t want to read it, basically it says [...]]]></description>
			<content:encoded><![CDATA[<p>Cassandra sent me <a href="http://blog.mises.org/archives/011027.asp" target="_blank">this article </a>today, which is an interesting history on the anti-trust history of the NFL and why they end up playing Thursday nights on national TV but you don&#8217;t see any Friday or Saturday games until the College Football season is over. If you don&#8217;t want to read it, basically it says that there are anti-trust laws protecting the NCAA member schools from NFL games being broadcast in their markets on Saturdays because it would have an adverse effect on both attendance at the game and viewership of a telecast of the game. For that reason, the NFL can&#8217;t broadcast a game in any household within 75 miles of any college stadium in which a game is being played on a Saturday. That&#8217;s a lot of land coverage.</p>
<p>After I read it, we ended up talking about it, and trying to decide whether the government was justified in protecting college (and high school) football by limiting the broadcasts of NFL games. Read what we had to say, then let us know what you think. Here we go:</p>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">12:02 PM </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>sir?</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">me</span>: What</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">Cassandra</span>: did you look at that article i sent you at all about the nfl?</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">12:03 PM </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">me</span>: I&#8217;m reading it now</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">Cassandra</span>: ok</span></span></div>
<table border="0" cellspacing="1" cellpadding="0">
<tbody>
<tr>
<td style="font-size: 1px; width: 100%;">
<hr size="1" noshade="noshade" /></td>
<td style="FONT-SIZE: 80%; COLOR: #aaa">7 minutes</td>
</tr>
</tbody>
</table>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">12:11 PM </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">me</span>: Done done</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">  </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>I think I had heard that before</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">Cassandra</span>: oh ok.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">  </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>very ridiculous.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">me</span>: I don&#8217;t really think so</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">12:12 PM </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">Cassandra</span>: how not?</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">me</span>: Because colleges would lose a lot of TV viewership if the NFL was allowed to play Saturdays</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">  </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>Most people would watch NFL</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">Cassandra</span>: yeah, so.. </span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">  </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>why is that the governments business?</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">12:13 PM </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">me</span>: Not only that, but CBS probably wouldn&#8217;t pay the SEC big money for that TV contract</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">Cassandra</span>: letting them play on saturday actually encourages competition</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">me</span>: Because the NFL would essentially become a football monopoly</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">Cassandra</span>: separating them does the opposite</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">  </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>bascially they aren&#8217;t even letting them compete.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">me</span>: But college football is fundamentally a lesser product than pro.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">Cassandra</span>: anti-trust is supposed to encourage competition.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">12:14 PM </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">me</span>: Competition won&#8217;t change that, it will just kill off college football.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">Cassandra</span>: so the gov&#8217;t should protect the lesser product</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">  </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>?</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">me</span>: There&#8217;s no way to make NCAA football better than NFL football</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">Cassandra</span>: right, so maybe it shouldn&#8217;t be on tv.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">  </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>if peole would rather watch pro.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">me</span>: But I think the point is, the consumer wants to be able to watch both.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">Cassandra</span>: then they wil</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">  </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>l</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">12:15 PM </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>don&#8217;t need laws to enforce that</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">me</span>: Not if college isn&#8217;t on TV</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">Cassandra</span>: if they want to watch it on tv and there is demand for it.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">  </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>then it doens&#8217;t matter what the nfl does</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">me</span>: If the NCAA can&#8217;t make money by putting it on TV, they won&#8217;t</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">  </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>And then the consumer misses out.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">12:16 PM </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>You&#8217;re not accounting for the demand by the same person for both offerings</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">  </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>Most people don&#8217;t have 2 TVs</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">Cassandra</span>: then those companies should be aware of that.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">  </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>the nfl doesn&#8217;t want to take over college football.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">  </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>that was never the intent.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">me</span>: But if they play games on Saturday, they would</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">12:17 PM </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>College would ose most or all of their TV revenue</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">  </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>If NFL only plays on Sundays, then they both make money</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">Cassandra</span>: maybe that is true, but the answer isn&#8217;t the gov&#8217;t coming to the rescue of a product that is obvisouly not as desired as another.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">  </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>that&#8217;s just ridiculous.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">12:18 PM </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">me</span>: I think it&#8217;s more the government keeping a product with very high demand and a product with moderately high demand both alive instead of letting the one with very high demand killing the one with moderate demand</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">12:19 PM </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">Cassandra</span>: i think they should get the f out of the business, though</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">  </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>but that&#8217;s just me.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">me</span>: By making the law, they allow the consumer to watch both, rather than choose.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">Cassandra</span>: but the gov&#8217;t doesn&#8217;t exist to provide consumer choice.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">  </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>it exists to protect rights.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">me</span>: Protects the consumer&#8217;s interests, though</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">12:20 PM </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">Cassandra</span>: you don&#8217;t have a right to watch any football you want at any time.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">  </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>should only protect the consumer if fraud is involved.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">me</span>: No, but it&#8217;s better for the conusmer to have both products.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">Cassandra</span>: yeah, but it isn&#8217;t a right.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">me</span>: It doesn&#8217;t have to be.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">Cassandra</span>: so you want the gov&#8217;t making decisions about what is best for all consumers?</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">me</span>: There are tons of laws that make things easier and better for consumers.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">12:21 PM </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">Cassandra</span>: there are tons of useless laws.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">12:22 PM </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">me</span>: I don&#8217;t think that government should allow monopolies.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">Cassandra</span>: ok.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">me</span>: Everyone gets screwed by that.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">Cassandra</span>: maybe.. </span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">12:23 PM </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>but the law doesn&#8217;t necessarily prevent monopolies.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">me</span>: That&#8217;s what antitrust law is</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">Cassandra</span>: you don&#8217;t know for a fact that it would take away college football</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">me</span>: I&#8217;m pretty sure.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">Cassandra</span>: why not wait until it has happened or is about to, but not make a law to prevent what might make somehting happen.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">  </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>companies are very wiling to adapt&#8230; or should be.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">12:24 PM </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>shouldn&#8217;t rely on the government to make the viable.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">  </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>*them</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">me</span>: If you&#8217;re CBS and you have to all of the sudden choose you Saturday programming, do you take 2 random SEC games or do you take two NFL games?</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">12:25 PM </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>So some other network might pick up the SEC, but then people won&#8217;t be watching, because unless I went to one of the schools, I&#8217;ll watch Cowboys Giants over Alabama vs. LSU every single time.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">Cassandra</span>: ok.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">  </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>that&#8217;s fine.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">12:26 PM </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">me</span>: So no other networks would touch those college games that they know will compete against the NFL either</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">Cassandra</span>: I don&#8217;t care if college football is on tv.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">me</span>: So now the NCAA is out of luch.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">  </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>But you watch college football sometimes on Saturdays</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">Cassandra</span>: only caust it is on.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">12:27 PM </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">me</span>: Yeah, but you&#8217;re watching it instead of ALL other programming that is on on a Saturday afternoon</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">  </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>So there is demand for it without the NFL competing</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">  </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>And that&#8217;s for you personally</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">Cassandra</span>: so if there is demand for it, there will be someone that picks it up and someone that watches it.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">12:28 PM </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">me</span>: There is demand without the NFL.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">Cassandra</span>: if they lose money, i don&#8217;t care</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">  </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>well, we can agree to disagree</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">me</span>: Except that you lose college football</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">12:29 PM </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>You essentially lose the chance to watch college football at the expense of spreading NFL games out over two days instead of one.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">Cassandra</span>: it is like saying you can only have dr pepper on sunday because if you can have it any day, then you won&#8217;t drink anything else.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">  </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>because it is a better product than coke.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">  </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>who cares? if dr pepper is better, then coke should lose money.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">12:30 PM </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">me</span>: It&#8217;s not a better product.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">Cassandra</span>: and if everyone in the world like dr pepper better than coke, why should coke make money.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">  </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>(that was an assumption by me for apoint)</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">12:31 PM </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">me</span>: The difference is that Coke can make itself better if it chooses to, by changing flavors, adapting, etc.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">  </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>College football can&#8217;t</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">Cassandra</span>: then why should they make money via tv?</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">me</span>: Lowering prices</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">  </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>Because consumers still want to see that product, even if it isn&#8217;t as good as the NFL.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">  </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>They don&#8217;t want to have to choose.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">12:32 PM </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>They want both available on different days.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">Cassandra</span>: i see your point, but I can&#8217;t bring myself to agree with it.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">12:33 PM </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>at leas tthe enforcement of it.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">  </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>you are right that most people want to watch both.. i just disagree with gov&#8217;t involvement with it.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">me</span>: In this case, moderate enforcement protects both offerings, rather than having one go away.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">Cassandra</span>: yeah.. i see that.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">12:34 PM </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">me</span>: And, in this specific case, the consumer ends up with a better selection of products, and the football market overall ends up more profitable even.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">12:35 PM </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>It&#8217;s a case by case thing, I don&#8217;t think you can really apply this exact situation to many other things and say &#8220;It&#8217;s always like this&#8221;</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">Cassandra</span>: yeah.. i definitely see that point, it just goes against what I beleive in at a foundation.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">me</span>: In general, I agree about government getting involved, but in this case, it helps random sports fan X more than it hurts.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">12:36 PM </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">Cassandra</span>: i have to give the whole anti-trust thing more thought, also.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">  </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>there is a group of people that believe the gov&#8217;t shouldn&#8217;t disallow monopolies.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">  </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>I&#8217;m not sure yet if I fall in that category.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">me</span>: I like limited involvement</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">Cassandra</span>: i see where it is applicable, but some cases are unwarranted.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">12:37 PM </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">me</span>: Like I said, specific cases.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">Cassandra</span>: yeah.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">  </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>perhaps.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">me</span>: I was against the government getting involved with Microsoft.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">Cassandra</span>: yes, me too</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">  </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>or most anything anti-trust really.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">me</span>: To me, that&#8217;s a clear &#8220;This company is just running their business better&#8221;</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">12:38 PM </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">Cassandra</span>: AND, if there&#8217;s any sector of the economy that has plenty of competition, it is technology.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">  </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>i mean, look at prices falling all the time</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">  </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>someone always doing something better to improve.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">  </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>that&#8217;s the whole point.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">me</span>: But I agree with the airline policies, because there are such a limited amount of companies that are able to get into that business because there is a finite amount of airport space.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">12:39 PM </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>So without regulation on that, it would cost $2,500 anytime you wanted to fly anywhere.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">Cassandra</span>: maybe, that&#8217;s where i need to do more thinking/research.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">12:40 PM </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">me</span>: It&#8217;s a difference of regulation becacuse one company is better than the other (not okay) and because of special circumstances.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">12:41 PM </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">Cassandra</span>: ok</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">me</span>: And now&#8230; It&#8217;s time for me to try to turn Qdoba into a monopoly.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">12:42 PM </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">Cassandra</span>: hehe</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">  </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>ok.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">  </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>i should eat too before my meeting.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">me</span>: Eat poo before your meeting</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">Cassandra</span>: ewwwww.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">  </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>It&#8217;s my duty.</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888">12:43 PM </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span>duty duty duty</span></span></div>
<div><span style="DISPLAY: block; FLOAT: left; COLOR: #888"> </span><span style="DISPLAY: block; PADDING-LEFT: 6em"><span><span style="FONT-WEIGHT: bold">me</span>: Call of Duty</span></span></div>
]]></content:encoded>
			<wfw:commentRss>http://shaneandcassandra.com/shane/?feed=rss2&#038;p=71</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Records In Depth Perception</title>
		<link>http://shaneandcassandra.com/shane/?p=66</link>
		<comments>http://shaneandcassandra.com/shane/?p=66#comments</comments>
		<pubDate>Mon, 19 Oct 2009 21:19:11 +0000</pubDate>
		<dc:creator>Shane Crawford</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://shaneandcassandra.com/shane/?p=66</guid>
		<description><![CDATA[Our home has a two car tandem garage. If, like me, you don&#8217;t know what that means, then our home has a skinny garage where cars have to park nose to butt. Between Cassandra and I there has been for over a year an unspoken bet about who will be the first to hit the [...]]]></description>
			<content:encoded><![CDATA[<p>Our home has a two car tandem garage. If, like me, you don&#8217;t know what that means, then our home has a skinny garage where cars have to park nose to butt. Between Cassandra and I there has been for over a year an unspoken bet about who will be the first to hit the other person&#8217;s car by pulling in too far. Neither of us has ever said a word about it, but we know.</p>
<p>There are arguments to be had for both sides. I like to think that she will be the first to initiate a collision because she doesn&#8217;t really pay attention and can&#8217;t really see over the steering wheel. Also, she&#8217;s a woman.</p>
<p>I, however, will admit that there&#8217;s a <em>small</em> chance that it could be me because I like to play a little game called &#8220;How close can I get.&#8221; Hopefully the rules are self explanitory.</p>
<p>Well, as you will clearly see in the upcoming photos. I freaking win. There is no getting closer than this. None. Game over. </p>
<p>Try getting through THAT when you&#8217;re trying to run away from us to keep from going in the house, Tiki!</p>

<a href='http://shaneandcassandra.com/shane/?attachment_id=67' title='2009-10-17 19.11.21'><img width="150" height="150" src="http://shaneandcassandra.com/shane/wp-content/uploads/2009/10/2009-10-17-19.11.21-150x150.jpg" class="attachment-thumbnail" alt="2009-10-17 19.11.21" title="2009-10-17 19.11.21" /></a>
<a href='http://shaneandcassandra.com/shane/?attachment_id=68' title='2009-10-17 19.10.18'><img width="150" height="150" src="http://shaneandcassandra.com/shane/wp-content/uploads/2009/10/2009-10-17-19.10.18-150x150.jpg" class="attachment-thumbnail" alt="2009-10-17 19.10.18" title="2009-10-17 19.10.18" /></a>

]]></content:encoded>
			<wfw:commentRss>http://shaneandcassandra.com/shane/?feed=rss2&#038;p=66</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Travel Map&#8230; Sorta</title>
		<link>http://shaneandcassandra.com/shane/?p=62</link>
		<comments>http://shaneandcassandra.com/shane/?p=62#comments</comments>
		<pubDate>Wed, 30 Sep 2009 19:35:51 +0000</pubDate>
		<dc:creator>Shane Crawford</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://shaneandcassandra.com/shane/?p=62</guid>
		<description><![CDATA[Because I think everyone needs to know, I&#8217;ve begun to document places that I&#8217;ve pooped. I&#8217;ll be adding places regularly, so check back often. I&#8217;d love to see your map, too. View Places I&#8217;ve Pooped in a larger map]]></description>
			<content:encoded><![CDATA[<p>Because I think everyone needs to know, I&#8217;ve begun to document places that I&#8217;ve pooped. I&#8217;ll be adding places regularly, so check back often. I&#8217;d love to see your map, too.</p>
<p><iframe width="500" height="450" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps/ms?ie=UTF8&amp;hl=en&amp;msa=0&amp;msid=113211336881214811782.000474cd53c2b711cf5c5&amp;ll=34.741612,-98.085937&amp;spn=63.047149,87.890625&amp;z=3&amp;output=embed"></iframe><br /><small>View <a href="http://maps.google.com/maps/ms?ie=UTF8&amp;hl=en&amp;msa=0&amp;msid=113211336881214811782.000474cd53c2b711cf5c5&amp;ll=34.741612,-98.085937&amp;spn=63.047149,87.890625&amp;z=3&amp;source=embed" style="color:#0000FF;text-align:left">Places I&#8217;ve Pooped</a> in a larger map</small></p>
]]></content:encoded>
			<wfw:commentRss>http://shaneandcassandra.com/shane/?feed=rss2&#038;p=62</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Boss&#8217; Office</title>
		<link>http://shaneandcassandra.com/shane/?p=54</link>
		<comments>http://shaneandcassandra.com/shane/?p=54#comments</comments>
		<pubDate>Mon, 24 Aug 2009 00:30:06 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://shaneandcassandra.com/shane/?p=54</guid>
		<description><![CDATA[In Danny's office, though, we went with four TVs instead of just two together to accomodate for the four simultaneous games that go on during the NCAA Tournament. Also, it was a good excuse to have more than three. Also also, five probably wouldn't all fit on his wall.]]></description>
			<content:encoded><![CDATA[<p>With a technology department of exactly two people at the Celtics, my boss and I do just about everything you could imagine having to do with computers or electronics, including both moving a mouse to show a stupid user how a screen saver works to writing highly complex databases and web applications so our basketball people have the best information possible to make decisions in the NBA world. Needless to say,  I work on a large variety of different projects from one month to the next.</p>
<p>My project in August: Do what you do at home.</p>
<p>The problem at home is that my wife and I both want to watch different football teams during the NFL season. She likes some worthless team from Dallas and I&#8217;m a Broncos fan. About half the time, they&#8217;ll be on in the same time slot. For the first three years we lived in the Boston area, we had to change back and forth between channels and whoever&#8217;s team had the best record got to be the &#8220;primary&#8221; game that week. That led to this conversation when we were getting ready to buy a house last summer:</p>
<p>Shane: &#8220;Should we get a bigger TV when we buy a house?&#8221;<br />
Cassandra: &#8220;Maybe. But we need it to do a big picture in picture so we can both watch a different game at the same time.&#8221;<br />
Shane (jokingly): &#8220;Yeah, like a second picture the same size as a second TV.&#8221;<br />
Cassandra (absolutely serious): &#8220;Actually, we should probably just have two big TVs next to each other.&#8221;</p>
<p>Needless to say, we now have dual TVs, no more decisions about what to watch (because if we can&#8217;t decide, we just watch both), and a very impressive wiring job (done by me) which keeps 100% of the electronics required to run any Audio/Visual stuff in the basement completely out of sight. I will never be able to only have a single TV for my main viewing room again. It&#8217;s fantastic. I used to have to decide if I wanted to watch a Mavs game or a movie when I got home from work. Now? Mavs game on one TV, movie on the other! Want to keep up on news but also want to watch Seinfeld at the 6:00 time slot? Keep both on, and switch the audio over to the news if a headline comes up that you care about.</p>
<p>Apparently I&#8217;m not the only one with that idea. At some point last season, The Celtics GM, Danny Ainge, decided he also needed to watch more than one thing at once because his DVR couldn&#8217;t keep up with all of the college, NBA, international basketball, and Everybody Loves Raymond that he wanted to watch. So, this August, our job was to add more TVs in his office and make it basically the ultimate place to watch sports&#8230; You know, other than my house. In Danny&#8217;s office, though, we went with four TVs instead of just two together to accomodate for the four simultaneous games that go on during the NCAA Tournament. Also, it was a good excuse to have more than three. Also also, five probably wouldn&#8217;t all fit on his wall.</p>
<p>We have now set up this equipment three separate times. First, all at my house while waiting for other parts to be shipped since I already had much of what we needed. The second time was in the players&#8217; lounge at the practice facility as basically a staging area while I ironed out details and did the programming of the control system. (Quick side note: We have used the Cinemar MainLobby Server / Client software and it&#8217;s working well. It&#8217;s inexpensive and does a great job. We&#8217;ve been impressed so far. So much so, in fact, that I&#8217;ve actually upgraded my house to use the same system at the same time because I liked it so much. So&#8230; Here&#8217;s a plug, Cinemar. Now give me some free stuff!) Finally, we moved everything up to Danny&#8217;s office on the second floor along with mounting all the TVs and running the permanent cabling. A few final touches on the remote programming and some cleanup of existing cabling, and we have created a pretty impressive setup. I don&#8217;t know what other NBA teams&#8217; GMs have in their offices, but it would take some work to get it as cool as Danny&#8217;s office. In the end, here&#8217;s what it looks like&#8230;</p>

<a href='http://shaneandcassandra.com/shane/?attachment_id=55' title='TV Layout'><img width="150" height="150" src="http://shaneandcassandra.com/shane/wp-content/uploads/2009/08/AingeOffice-005-150x150.jpg" class="attachment-thumbnail" alt="The Ainge Office TV layout. The three at the top are LG 32&quot; LCDs that will do 1080p resolution. The big one is an existing 50&quot; LG plasma." title="TV Layout" /></a>
<a href='http://shaneandcassandra.com/shane/?attachment_id=59' title='Desk View'><img width="150" height="150" src="http://shaneandcassandra.com/shane/wp-content/uploads/2009/08/AingeOffice-003-150x150.jpg" class="attachment-thumbnail" alt="The view from Danny&#039;s desk with the touchscreen remote control in the foreground" title="Desk View" /></a>
<a href='http://shaneandcassandra.com/shane/?attachment_id=58' title='Ainge&#039;s Office'><img width="150" height="150" src="http://shaneandcassandra.com/shane/wp-content/uploads/2009/08/AingeOffice-002-150x150.jpg" class="attachment-thumbnail" alt="A little bit wider view of the whole office with the door leading to the next office." title="Ainge&#039;s Office" /></a>
<a href='http://shaneandcassandra.com/shane/?attachment_id=57' title='Equipment Rack'><img width="150" height="150" src="http://shaneandcassandra.com/shane/wp-content/uploads/2009/08/AingeOffice-007-150x150.jpg" class="attachment-thumbnail" alt="This cart will all be moved to a permanent rack once it gets delivered and built. This is where all of the equipment that runs the displays lives, in the next room." title="Equipment Rack" /></a>
<a href='http://shaneandcassandra.com/shane/?attachment_id=56' title='Wide Angle Rack'><img width="150" height="150" src="http://shaneandcassandra.com/shane/wp-content/uploads/2009/08/AingeOffice-006-150x150.jpg" class="attachment-thumbnail" alt="Here&#039;s the complete equipment setup that runs the TVs behind the scenes, in the next office." title="Wide Angle Rack" /></a>

<p>Finally, here are the specifics for anyone curious.</p>
<p><strong>TVs:</strong> Three 32&#8243; LG LCDs, One 50&#8243; LG Plasma, One Samsung 24&#8243; HDTV / PC Monitor on the desk<br />
<strong>Audio:</strong> Yamaha Audio Surround Sound Receiver with 5 overhead in-ceiling speakers and subwoofer in the back of the room<br />
<strong>Video Switcher:</strong> Audio Authority AVAtrix<br />
<strong>Video Sources:</strong> 2 DirecTV HD DVRs, 2 DirecTV HD Receivers, 1 JVC Blu-Ray Player, and 1 VGA input from Danny&#8217;s desktop PC.<br />
<strong>Audio Inputs:</strong> All the DirecTVs, Blu-Ray, and PC, plus an iPod dock and radio tuner.</p>
<p>And yes, this is all basically the same equipment I have at my house. I know, I&#8217;m cool.</p>
<p>If you&#8217;re wondering, &#8220;Can you do my house, too?&#8221; the answer is yes. If you&#8217;re also wondering, &#8220;Is it cheap?&#8221; the answer is no.</p>
]]></content:encoded>
			<wfw:commentRss>http://shaneandcassandra.com/shane/?feed=rss2&#038;p=54</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Seven Words That Probably Just Ended My Marraige</title>
		<link>http://shaneandcassandra.com/shane/?p=52</link>
		<comments>http://shaneandcassandra.com/shane/?p=52#comments</comments>
		<pubDate>Sun, 16 Aug 2009 02:41:26 +0000</pubDate>
		<dc:creator>Shane</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://shaneandcassandra.com/shane/?p=52</guid>
		<description><![CDATA[&#8220;I think I don&#8217;t like Swiss Cheese.&#8221; Just over four years. We had a good run.]]></description>
			<content:encoded><![CDATA[<p>&#8220;I think I don&#8217;t like Swiss Cheese.&#8221;</p>
<p>Just over four years. We had a good run.</p>
]]></content:encoded>
			<wfw:commentRss>http://shaneandcassandra.com/shane/?feed=rss2&#038;p=52</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

