<?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>Armenian Eagle</title>
	<atom:link href="http://armenianeagle.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://armenianeagle.com</link>
	<description>Half Armenian, Full Eagle</description>
	<lastBuildDate>Thu, 20 Oct 2011 23:11:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4-alpha</generator>
		<item>
		<title>Joomla, Varnish Caching, Cookies and Heavy Server Load</title>
		<link>http://armenianeagle.com/2011/06/25/joomla-varnish-caching-cookies-and-heavy-server-load/</link>
		<comments>http://armenianeagle.com/2011/06/25/joomla-varnish-caching-cookies-and-heavy-server-load/#comments</comments>
		<pubDate>Sat, 25 Jun 2011 19:43:50 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
				<category><![CDATA[Tech and Web]]></category>

		<guid isPermaLink="false">http://armenianeagle.com/?p=2204</guid>
		<description><![CDATA[Recently, we (my company) took over web hosting for one of our clients. On average, they get 500,000 visits per month and a high profile suite of sites. I setup a Cloud Server Farm for the client. One of their sites, is the biggest of the group and their flagship site. This site was built [...]]]></description>
			<content:encoded><![CDATA[<p>Recently, we (my company) took over web hosting for one of our clients. On average, they get 500,000 visits per month and a high profile suite of sites. I setup a <a href="http://armenianeagle.com/2011/03/19/using-varnish-to-proxy-content-via-firewall/">Cloud Server Farm</a> for the client. One of their sites, is the biggest of the group and their flagship site. This site was built 2 years ago using Joomla, a Content Management System, by a third-party company. I am not an advocate of Joomla because of the trouble that we have had with it. It is a very resource heavy CMS and for me, the problems outweigh the benefits. </p>
<p>While setting up this site, everything was working great until I started to test the server under high stress using &#8220;Siege&#8221;. After running the test with 50 requests/second, the server started to buckle and after 15 seconds, Apache became unavailable. I spent about 2 weeks trying to figure out what could cause this problem, but until today, I have been unsuccessful. I will first explain what I tried and how each change I made, either did nothing or caused different problems making them not a viable solution. </p>
<p>My first thought was to optimize Apache to handle more connections at one time. Apache&#8217;s HTTP Server website has a <a href="http://httpd.apache.org/docs/2.2/misc/perf-tuning.html">Performance Tuning</a> section. After making these changes and restarting Apache, the Stress Test still caused the server to die. </p>
<p>Next, I thought it might have been the mysql server that was the issue. Even though, the mysql server wasn&#8217;t getting high load, I decided to fine-tune mysql as well. Since we have a dedicated mysql server, I used the configuration that was located in mysql-huge.cnf. This configuration is designed for servers that are just used for mysql. These changes seemed to help, but it wasn&#8217;t even close to what the site should be performing at. </p>
<p>I then thought it might be the amount of RAM on the server. I resized the cloud server to 4G of memory, but there was still no change. I resized it back down to 1G of memory which is what we thought it should be at. </p>
<p>After looking into more server configurations as the problem and getting nowhere, I decided that I would see if Joomla was causing the issues. You should know that this is all being done on a development server. I started by removing the Javascript files that were being included to display the client&#8217;s Ads. They have a total of 32 JavaScript calls and takes 10 seconds to just load the Ads. Removing them helped speed up the site, but the high load server failures were still happening and I added their Ads back in. </p>
<p>Now, the server is using Varnish for caching the content. It should be holding onto a static version of the site for 2 minutes (what it defaults to), but it wasn&#8217;t keeping the cache. Apache was still getting called every time you load the site. Varnish was still pulling the page through cache, but it was not keeping the cache. I have Varnish running on all of our servers including my personal server farm, however, I couldn&#8217;t figure out why this site was not keeping cache. </p>
<p>I tried removing some of the third-party modules that could have been incorrectly programmed and causing serious performance issues. After removing all of the modules on the homepage, the problems still existed. I got to the point where I didn&#8217;t think that it was anything to do with the server or how the site was pulling its content through Joomla, but I felt that there was something on the Joomla Core that was the problem. </p>
<p>I spent the next few hours researching what Joomla could be doing that was making the server die. After finding this <a href="http://www.keithscode.com/blog-items/joomla-login-issues.html">blog article</a>, I had an idea. His problem wasn&#8217;t my problem, but something that he wrote got me thinking. What if, the problem is with the Joomla Cookies. I did a few more Google searches and found that Joomla does not handle cookies very well it uses cookies for everything Joomla does. </p>
<p>*Please read the rest of this before trying the following as this configuration did not work even though it was performing the way I thought it should.</p>
<p>This site is on a dedicated server and no other traffic will be going to it. It is a 64-bit Quad Core Centos Server with 1G of ram. In Varnish, I added the following to the VLC file. </p>
<pre class="qoate-code">
sub vcl_fetch {
   set beresp.ttl = 5m; # Time that the cache should be kept for.
   unset beresp.http.set-cookie; # Unset all cookies on the site
}
</pre>
<p>I &#8220;sieged&#8221; the server again at 50 requests/second and sure enough, Varnish was keeping the cache and serving it out of Varnish and not hitting apache at all. I then proceeded to stress the server at 500 requests/second and still the server was holding strong. Finally, I stressed it at 800 requests/second and it was still functioning properly. This is more than what the client would receive for traffic on an average day and I was confident that this had solved the problem&#8230;.read on!</p>
<p>I then tried to log into Joomla on the front-end and on the administrative side. As it turns out, removing the cookies was a serious problem for the functionality of Joomla and would not let me login. I then removed the change that I made to the VLC, restarted Varnish and tried to login again. This time it worked. </p>
<p>I thought about how I could work around this issue, but nothing was coming to me. I did more research and came across this <a href="http://www.pc-freak.net/blog/how-to-fix-logging-issues-with-varnish-configured-to-log-client-ip-addresses-in-apache-log/">blog article</a>. It is a little bit hard to read, but once you make the configuration readable, I found this code. *Note that I changed the obj.http.set-cookie to beresp.http.set-cookie to account for the new version of the Varnish 3.0 language. </p>
<pre class="qoate-code">
sub vcl_fetch {
        set beresp.ttl = 5m;
        if( req.request != "POST" ) {
                unset beresp.http.set-cookie;
        }
}
</pre>
<p>Once I added this code to the VLC and restarted Varnish, not only could I login to Joomla on the front-end and administrative side, but the server was still holding strong at 800 requests/second. </p>
<p>Now, I can only stress the server to the point where I think it will hold its own in a real life scenario, but that doesn&#8217;t mean other steps may need to be implemented if the site gets picked up by Digg or Google (Google is what took down this clients server last month).  Until that happens, we can&#8217;t account for the amount of traffic the site will receive. One additional step you can take is to add a Load Balancer into the mix and allow for the additional traffic and relive some of the stress on the sole server. This however, will be a separate blog entry as this one is already long enough. </p>
<p>In closing, I hope this article helps you to save weeks of performance testing, server changes and headaches. </p>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2011/06/25/joomla-varnish-caching-cookies-and-heavy-server-load/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Time Warner Cable Is An Awful Company</title>
		<link>http://armenianeagle.com/2011/06/12/time-warner-cable-is-an-awful-company/</link>
		<comments>http://armenianeagle.com/2011/06/12/time-warner-cable-is-an-awful-company/#comments</comments>
		<pubDate>Sun, 12 Jun 2011 17:32:36 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
				<category><![CDATA[Rants and Randomness]]></category>

		<guid isPermaLink="false">http://armenianeagle.com/?p=2181</guid>
		<description><![CDATA[Time Warner Cable has made me very unhappy because they make money on screwing over the customer. I have had problems with my service over the past two years and they will not admit that it is their fault, even though the technician who came out to look at my service told us there was [...]]]></description>
			<content:encoded><![CDATA[<p>Time Warner Cable has made me very unhappy because they make money on screwing over the customer. I have had problems with my service over the past two years and they will not admit that it is their fault, even though the technician who came out to look at my service told us there was a problem. It was a problem with their line and it has been that way for two years. When I called to talk to someone about it, they told me there was no record of the problem. </p>
<p>Due to no record of what they fixed, I can&#8217;t call the billing department to get a partial refund for the past two years of service. Every time it rains, we lose internet and TV service for the majority of channels. When they setup our service, they told us there wasn&#8217;t a good connection to our apartment. Instead of looking into the problem, they said it was wiring in our apartment that was the problem. It turns out that there was a slice of wire missing from a line down the street which was causing the connection problems every time it rained. I would switch to Satellite, but to get &#8220;local channels&#8221; like NESN, it would cost me an extra $40 a month to go to the next level up. </p>
<p>Does anyone else have problems with Time Warner Cable?</p>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2011/06/12/time-warner-cable-is-an-awful-company/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Varnish To Proxy Content Via Firewall</title>
		<link>http://armenianeagle.com/2011/03/19/using-varnish-to-proxy-content-via-firewall/</link>
		<comments>http://armenianeagle.com/2011/03/19/using-varnish-to-proxy-content-via-firewall/#comments</comments>
		<pubDate>Sun, 20 Mar 2011 03:02:48 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
		
		<guid isPermaLink="false">http://armenianeagle.com/?p=2084</guid>
		<description><![CDATA[*While writing this post, I realized that Varnish has been updated to 2.1.5 (not in EPEL yet) and this configuration will now break if setup. If you have not yet setup Varnish or don&#8217;t understand the basics of Varnish, please read my post &#8220;Setup Pound, Varnish &#038; Apache w/ Multiple IPs &#038; BackEnds&#8221;. This article [...]]]></description>
			<content:encoded><![CDATA[<p>*While writing this post, I realized that Varnish has been updated to 2.1.5 (not in EPEL yet) and this configuration will now break if setup.</p>
<p>If you have not yet setup Varnish or don&#8217;t understand the basics of Varnish, please read my post <a href="http://armenianeagle.com/2011/02/27/setup-pound-varnish-apache-w-multiple-ips-backends/">&#8220;Setup Pound, Varnish &#038; Apache w/ Multiple IPs &#038; BackEnds&#8221;</a>. This article also assumes you understand the basics of a <a href="http://en.wikipedia.org/wiki/Firewall_%28computing%29">Firewall</a>.</p>
<p>At work, I am setting up a new server environment for a client on our Cloud Servers from Rackspace. We have come up with our first approach to their needs, which is the following. One (1) Firewall Server using Varnish as a reverse proxy  for web content to the other servers, Two (2) Production Web Servers running Varnish for Caching, One (1) Production Database Server, One (1) Development Web/Database Server.</p>
<p>Since I am still in the process of setting it up, I may not have it all figured out yet, but the basic concept is this. All DNS records for each site point to the IP Address of the Firewall Server. Next, set varnish to listen on that IP. You have two options for setting up the backend servers. </p>
<ol>
<li>Use rsync to synchronize the two production web servers. Then use Varnish as a load balancer to send equal or weighted amount of traffic to different servers.</li>
<li>Use Varnish to proxy specific websites to different backend servers.</li>
</ol>
<p>I am implementing option 2 into this environment. We have one website (high traffic) that will be on its own server and the client&#8217;s other sites will be on the second production server. On the backend server&#8217;s varnish configuration, you will change your listening IP to the IP address listed on the backend on the Firewall server. If you have a private IP address associated with each server, I would recommend using it as the IP addresses since those are faster and usually your hosting provider allows unlimited transfer between private IPs. </p>
<p>On the firewall server varnish vcl (Note: these aren&#8217;t the real private IP Addresses)</p>
<pre class="qoate-code">
backend mydomain{
  .host = "192.168.1.2";
  .port = "80";
}

backend otherdomain{
  .host = "192.168.1.3";
  .port = "80";
}

sub vcl_recv {
        if (req.http.host ~ "mydomain.com") {
                set req.backend = mydomain;
        }elseif (req.http.host ~ "otherdomain.com") {
               set req.backend = otherdomain;
        }
}
</pre>
<p>On the backend server&#8217;s varnish configuration (/etc/sysconfig/varnish)</p>
<pre class="qoate-code">
DAEMON_OPTS="-a 192.168.1.2:80 \
             -T localhost:6082 \
             -f /etc/varnish/default.vcl \
             -u varnish -g varnish \
             -s file,/var/lib/varnish/varnish_storage.bin,1G"
</pre>
<pre class="qoate-code">
DAEMON_OPTS="-a 192.168.1.3:80 \
             -T localhost:6082 \
             -f /etc/varnish/default.vcl \
             -u varnish -g varnish \
             -s file,/var/lib/varnish/varnish_storage.bin,1G"
</pre>
<p>The rest of the configuration would be your standard vcl from Varnish. </p>
<p>There are other solutions to what I am trying to do that might be much easier for the organization as a whole, but we are already using Varnish for caching on the server.</p>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2011/03/19/using-varnish-to-proxy-content-via-firewall/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setup Pound, Varnish &amp; Apache w/ Multiple IPs &amp; BackEnds</title>
		<link>http://armenianeagle.com/2011/02/27/setup-pound-varnish-apache-w-multiple-ips-backends/</link>
		<comments>http://armenianeagle.com/2011/02/27/setup-pound-varnish-apache-w-multiple-ips-backends/#comments</comments>
		<pubDate>Mon, 28 Feb 2011 00:55:33 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
		
		<guid isPermaLink="false">http://armenianeagle.com/?p=2034</guid>
		<description><![CDATA[The following is a tutorial in setting up Pound (SSL Wrapper) that is being proxied to Varnish (Cache) which is finally proxied to Apache. This setup also allows for multiple IP Addresses (for SSL Cert) and multiple Varnish Backends. This article assumes you have working knowledge of Linux and CentOS distribution in particular. This installation [...]]]></description>
			<content:encoded><![CDATA[<p>The following is a tutorial in setting up <strong>Pound (SSL Wrapper)</strong> that is being proxied to <strong>Varnish (Cache)</strong> which is finally proxied to <strong>Apache</strong>. This setup also allows for multiple IP Addresses (for SSL Cert) and multiple Varnish Backends.</p>
<p>This article assumes you have working knowledge of Linux and CentOS distribution in particular. This installation is based upon the &#8220;yum&#8221; paths for all instances. It also assumes you have apache setup already, serving content with multiple IP Addresses and your server&#8217;s external <strong>IP Address 1 = 2.3.4.5 &#038; IP Address 2 = 6.7.8.9</strong><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<h3>Pound SSL Wrapper</h3>
<p>Pound is a reverse proxy, load balancer and SSL wrapper that allows you to listen on a secure port (443), decrypts the SSL Certificate and then sends the decrypted data to a local non-ssl port (80) to be served by the Varnish. First, let&#8217;s setup the pound configuration. </p>
<p><strong>yum install pound</strong><br />
edit /etc/pound.cfg</p>
<pre class="qoate-code">ListenHTTP
    Address 2.3.4.5
    Port    80
    Service
        Redirect "https://www.mydomain.com"
    End
End
ListenHTTPS
    Address 2.3.4.5
    Port    443
    Cert    "/var/certs/mydomain.com.pem"
    Service
       BackEnd
                Address 127.0.0.3
                Port 80
       End
    End
End</pre>
<p>In this example, ListenHTTP, we want to make sure that the entire site is served securely and redirecting 80 traffic to 443. In ListenHTTPS, we pass it the path to the cert in .pem format. Not only is this required for ListenHTTPS, but it MUST be in .pem format. </p>
<p>To convert a crt to a pem, run the following command (replacing files with your own)<br />
&#8220;<strong>cat mydomain.com.key mydomain.com.crt (mydomain.com.ca) > mydomain.com.pem</strong>&#8221;</p>
<h3>Varnish Caching</h3>
<p>Varnish is a Reverse Proxy (Caching, HTTP Accelerator) that allows for Load Balancing. </p>
<p><strong>yum install varnish</strong><br />
edit /etc/sysconfig/varnish</p>
<p>I used Alternative 2 for the configuration. Set the IP(s) in the -a option. While the IPs are comma separated, make sure there isn&#8217;t a space between the IP addreses. It will fail. Pound is listening for the IP Address 2.3.4.5, so we don&#8217;t need to have Varnish listen for that IP. We need to have it listen on the port that pound specified as its backend. In this case, 127.0.0.3:80. Since pound is not serving secure content for IP Addresss 6.7.8.9, we can have varnish listen for that IP.</p>
<pre class="qoate-code">
## Alternative 2, Configuration with VCL
DAEMON_OPTS="-a \"6.7.8.9:80,127.0.0.3:80\" \
             -T localhost:6082 \
             -f /etc/varnish/default.vcl \
             -u varnish -g varnish \
             -s file,/var/lib/varnish/varnish_storage.bin,1G"
</pre>
<p>Next, we need to edit the default vcl file for Varnish which is where all the settings will be added.<br />
/etc/varnish/default.vcl</p>
<pre class="qoate-code">
# For IP Address 6.7.8.9 and the rest of the domains on the server.
backend default {
  .host = "127.0.0.2";
  .port = "80";
}

# For IP Address 2.3.4.5 listening on Pound, proxied to varnish on 127.0.0.3. Setting Apache Backend to 127.0.0.4
backend mydomain{
        .host = "127.0.0.4";
        .port = "80";
}

sub vcl_fetch {
  # Add a unique header containing the cache servers IP address:
  remove obj.http.X-Varnish-IP;
  set    obj.http.X-Varnish-IP = server.ip;
}

sub vcl_recv {
        # choose a backend depending on domain
        if (req.http.host ~ "www.mydomain.com") {
                set req.backend = mydomain;
        }else{
                set req.backend = default;
        }
        # remove and reset the clients IP address
        remove req.http.X-Forwarded-For;
        set req.http.X-Forwarded-For=client.ip;
}
</pre>
<p>In the sub vcl_recv and sub vcl_fetch, I am doing two things. 1. Setting the backend server depending on which domain it is looking for. 2. Passing along the client&#8217;s IP Addresss to reflect in the apache log files. </p>
<h3>SSL Conf</h3>
<p>edit /etc/httpd/conf.d/ssl.conf<br />
Pound is now listening on port 443, which means you can&#8217;t bind the ssl.conf to 443 as well. We need to comment out the listener.</p>
<pre class="qoate-code">
# Listen 443
</pre>
<h3>httpd.conf</h3>
<p>/etc/httpd/conf/httpd.conf<br />
We need to set apache to listen and set the NameVirtualHost on the ports that we specified in /etc/varnish/default.vcl</p>
<pre class="qoate-code">
Listen 127.0.0.2:80
Listen 127.0.0.4:80

NameVirtualHost 127.0.0.2:80
NameVirtualHost 127.0.0.4:80
</pre>
<h3>Vhosts File</h3>
<p>/etc/httpd/sites-available/mydomain.com.conf<br />
Finally we need to change the virtualhost IP Address in the vhost.conf to listen to the same ports as above depending on domain.</p>
<pre class="qoate-code">
&lt;virtualhost 127.0.0.2:80&gt;
...
&lt;/virtualhost&gt;

or

&lt;virtualhost 127.0.0.4:80&gt;
...
&lt;/virtualhost&gt;
</pre>
<p>If you need the client&#8217;s IP Address (I don&#8217;t know why you wouldn&#8217;t), you need to add the following into the virtualhost above. Replace with your log file paths</p>
<pre class="qoate-code">
        LogFormat "%{X-Forwarded-For}i %l %u %t \"%r\" %&gt;s %b \"%{Referer}i\" \"%{User-Agent}i\"" varnishcombined
        CustomLog /www/mydomain.com/logs/access.log varnishcombined
</pre>
<p>Now that we have finished the setup, this will require a restart of all services for it to work. If it was setup properly, they should all say &#8220;ok&#8221;.<br />
/etc/init.d/pound start (restart)<br />
/etc/init.d/varnish start (restart)<br />
/etc/init.d/httpd restart</p>
<h3>Monitoring Varnish Stats, Logs and Histogram</h3>
<p>Based on install paths, the following should work. From the prompt: varnishstat, varnishlog, varnishhist<br />
Varnishstat and Varnishlog give detailed information on headers being passed and the status of the cache. Varnishhist is a histogram of the traffic coming to your site. The left side is cached content and the right side is server generated content.</p>
<h3>Stress Testing New Setup</h3>
<p>If you have very little traffic, you might need to use a stress test tool to find out how the server will handle your new setup. <strong><a href="http://www.joedog.org/index/siege-home">Siege</a></strong> is a tool that forces many concurrent connections. If you run this tool before implementing Varnish, it may but more likely will bring down your server. The load average will shoot up very quickly (to 80.00+) until the server can&#8217;t handle it and stops responding. After installing Varnish, you can run up to thousands of concurrent connections and the load average won&#8217;t go past 10.00 (depending on many factors).</p>
<p>The parameters being passed to siege below, -c350 (350 is the number of concurrent connections, default is 15), -t1M (1M is the total time that siege will run for, 1 minute)</p>
<p>From command prompt, type: </p>
<pre class="qoate-code">
siege -c350 -t1M  www.mydomain.com
</pre>
<p>* It helps to have multiple shells up and watch &#8220;top&#8221;, &#8220;varnishstat&#8221; and &#8220;varnishhist&#8221;. </p>
<h3>Log Files</h3>
<p>tail -f /var/log/messages and /var/log/varnish/varnish.log</p>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2011/02/27/setup-pound-varnish-apache-w-multiple-ips-backends/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rackspace (Server Hosting) Apologizes For Incontinence</title>
		<link>http://armenianeagle.com/2011/01/06/rackspace-server-hosting-apologizes-for-incontinence/</link>
		<comments>http://armenianeagle.com/2011/01/06/rackspace-server-hosting-apologizes-for-incontinence/#comments</comments>
		<pubDate>Thu, 06 Jan 2011 06:07:22 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
		
		<guid isPermaLink="false">http://armenianeagle.com/?p=2025</guid>
		<description><![CDATA[At work, we have recently started setting up multiple &#8220;Cloud Servers&#8221; at Rackspace instead of one massive server like we currently have. I will discuss more about it later once we are fully running on Cloud Servers and have all of the tools setup. I had a question for Rackspace support regarding their Cloud Setup [...]]]></description>
			<content:encoded><![CDATA[<p>At work, we have recently started setting up multiple <a href="http://rackspacecloud.com">&#8220;Cloud Servers&#8221;</a> at <a href="http://rackspace.com">Rackspace </a>instead of one<br />
massive server like we currently have. I will discuss more about it later once we are fully running on Cloud Servers and have all of the tools setup. </p>
<p>I had a question for Rackspace support regarding their Cloud Setup environment. The point of the chat with Rackspace was to find out where I can change the email address for the contact who receives notifications when new servers are created. </p>
<p>Their solution was to put a filter on Outlook that forwards the emails to the email address I would like, but they don&#8217;t have an option for it. If my boss is on vacation and we spin up 4 new servers, we need to wait until he gets back and turns on his computer for us to receive the passwords for the new server. I understand the security reasons for only sending it to the primary email account, but it seems like a silly workaround.</p>
<p>Here is the conversation that I had with Matthew. His name and some information has been omitted. #FAIL</p>
<p><img src="http://armenianeagle.hrmedacdn.net/uploads/2011/01/Rackspace-Incontinence.png" alt="" title="Rackspace Incontinence" width="650" height="565" class="size-full wp-image-2026" /></p>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2011/01/06/rackspace-server-hosting-apologizes-for-incontinence/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ArmenianEagle.com is on a New Server</title>
		<link>http://armenianeagle.com/2010/11/06/armenianeagle-com-is-on-a-new-server/</link>
		<comments>http://armenianeagle.com/2010/11/06/armenianeagle-com-is-on-a-new-server/#comments</comments>
		<pubDate>Sat, 06 Nov 2010 13:37:11 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
				<category><![CDATA[Tech and Web]]></category>

		<guid isPermaLink="false">http://armenianeagle.com/?p=2014</guid>
		<description><![CDATA[Actually, it has been on a new server for 6 months but since I haven&#8217;t blogged in about 1 1/2 years, it isn&#8217;t that bad. I switched from Dreamhost (Shared hosting) which was great for my &#8220;own&#8221; server, but it was very restricting. I didn&#8217;t have root access and I couldn&#8217;t expand my sites performance. [...]]]></description>
			<content:encoded><![CDATA[<p>Actually, it has been on a new server for 6 months but since I haven&#8217;t blogged in about 1 1/2 years, it isn&#8217;t that bad. <img src='http://armenianeagle.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I switched from Dreamhost (Shared hosting) which was great for my &#8220;own&#8221; server, but it was very restricting. I didn&#8217;t have root access and I couldn&#8217;t expand my sites performance. I moved to <a href="http://www.linode.com/?r=7c44ceaa1dd8d5b20500f6b3ccbc34be0a97cf61">Linode.com</a> and it was a great decision. If you have the skills, having full control of your server is awesome, but you need to beware of the following. If you break your server/websites/email (if app) somehow, <strong>you</strong> need to fix it. No support to call or email. Trust me on that one! Since I moved all my sites to this server, I learned very quickly about aspects of server administration that I wasn&#8217;t familiar with.</p>
<p>I have a configuration running CentOS, nginx and php 5.3.2 that includes svn (version control), varnish (caching), siege (stress testing), urchin (Traffic Analytics), nagios (resource monitoring) and more.</p>
<p>I am running all of my domains and a few of my friends websites and it works awesome. I am so excited to learn more server administration as I go so that I can be a more knowledgeable employee at my job. My work recently moved to RackSpace Cloud Servers from RackSpace Managed Hosting. I (+1) currently maintain 8 servers at work and we are adding another 8 servers over the next few months. The more I can learn on my own for selfish reasons (resume), the more I can bring to work and help them as well, which in turn will help me. Over the past 6 months, </p>
<p>I have learned so many exciting linux commands and processes that I feel very comfortable in command line. I know I still have A LOT to learn and ways to improve on already existing knowledge, but I am more confident now than I ever was. I added another set of skills that will greatly help my career. I am now not just a Web Developer, but a Server Admin as well. </p>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2010/11/06/armenianeagle-com-is-on-a-new-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bye-Bye Boston, Hello Portland Maine</title>
		<link>http://armenianeagle.com/2009/04/07/bye-bye-boston-hello-portland-maine/</link>
		<comments>http://armenianeagle.com/2009/04/07/bye-bye-boston-hello-portland-maine/#comments</comments>
		<pubDate>Tue, 07 Apr 2009 20:07:47 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
				<category><![CDATA[Rants and Randomness]]></category>
		<category><![CDATA[boston]]></category>
		<category><![CDATA[Boston Massachusetts]]></category>
		<category><![CDATA[Greater Boston]]></category>
		<category><![CDATA[Portland Sea Dogs]]></category>
		<category><![CDATA[sport]]></category>
		<category><![CDATA[stadium]]></category>
		<category><![CDATA[United States]]></category>

		<guid isPermaLink="false">http://armenianeagle.com/?p=1985</guid>
		<description><![CDATA[I just got an apartment in Portland, ME with my friend Tony. The apartment is awesome and as soon as I move completely into my new place, I will take pictures and post them. Just to give a brief description about the apartment: 1 1/2 baths, washer, dryer, dishwasher, basement, 3 floors, 2 car parking, [...]]]></description>
			<content:encoded><![CDATA[<p>I just got an <a class="zem_slink" href="http://en.wikipedia.org/wiki/Apartment" title="Apartment" rel="wikipedia">apartment</a> in Portland, ME with my friend <a class="zem_slink" href="http://www.tonyawards.com/" title="Tony Award" rel="homepage">Tony</a>. The apartment is awesome and as soon as I move completely into my new place, I will take pictures and post them. Just to give a brief description about the apartment: 1 1/2 baths, washer, dryer, dishwasher, basement, 3 floors, 2 car parking, backyard where we can put my grill and lawn chairs so we can host BBQs.</p>
<p>I will still be paying close attention to <a class="zem_slink" href="http://maps.google.com/maps?ll=42.3577777778,-71.0616666667&amp;spn=0.1,0.1&amp;q=42.3577777778,-71.0616666667%20%28Boston%2C%20Massachusetts%29&amp;t=h" title="Boston, Massachusetts" rel="geolocation">Boston</a> <a class="zem_slink" href="http://en.wikipedia.org/wiki/Sport" title="Sport" rel="wikipedia">sports</a> though. I am living down the street from the Hadlock Field where the <a class="zem_slink" href="http://en.wikipedia.org/wiki/Portland_Sea_Dogs" title="Portland Sea Dogs" rel="wikipedia">Portland Sea Dogs</a> play. Sea Dogs are the Double-A associate of the Boston Red Sox. </p>
<div class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/ec6dcfd4-38fa-4830-bc9a-1ea25b21c4bc/" title="Zemified by Zemanta"><img class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_c.png?x-id=ec6dcfd4-38fa-4830-bc9a-1ea25b21c4bc" alt="Reblog this post [with Zemanta]" /></a><span class="zem-script more-related"><script type="text/javascript" src="http://static.zemanta.com/readside/loader.js" defer="defer"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2009/04/07/bye-bye-boston-hello-portland-maine/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Hell Explained By A Chemistry Student</title>
		<link>http://armenianeagle.com/2009/03/13/hell-explained-by-a-chemistry-student/</link>
		<comments>http://armenianeagle.com/2009/03/13/hell-explained-by-a-chemistry-student/#comments</comments>
		<pubDate>Fri, 13 Mar 2009 13:36:03 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
				<category><![CDATA[Rants and Randomness]]></category>
		<category><![CDATA[Boyle's law]]></category>
		<category><![CDATA[Endothermic]]></category>
		<category><![CDATA[Exothermic]]></category>
		<category><![CDATA[hell]]></category>
		<category><![CDATA[Religion and Spirituality]]></category>
		<category><![CDATA[soul]]></category>
		<category><![CDATA[Temperature]]></category>
		<category><![CDATA[University of Washington]]></category>

		<guid isPermaLink="false">http://armenianeagle.com/?p=1973</guid>
		<description><![CDATA[The following is an actual question given on a University of Washington chemistry mid term. The answer by one student was so &#8220;profound&#8221; that the professor shared it with colleagues, via the Internet, which is, of course, why we now have the pleasure of enjoying it as well : Bonus Question: Is Hell exothermic (gives [...]]]></description>
			<content:encoded><![CDATA[<p>The following is an actual question given on a <a class="zem_slink" href="http://maps.google.com/maps?ll=47.65687,-122.29952&amp;spn=0.01,0.01&amp;q=47.65687,-122.29952%20%28University%20of%20Washington%29&amp;t=h" title="University of Washington" rel="geolocation">University of Washington</a> chemistry mid term.</p>
<p>The answer by one student was so &#8220;profound&#8221; that the professor shared it with colleagues, via the <a class="zem_slink" href="http://en.wikipedia.org/wiki/Internet" title="Internet" rel="wikipedia">Internet</a>, which is, of course, why we now have the pleasure of enjoying it as well :</p>
<p><strong>Bonus Question: Is Hell <a class="zem_slink" href="http://en.wikipedia.org/wiki/Exothermic" title="Exothermic" rel="wikipedia">exothermic</a> (gives off heat) or <a class="zem_slink" href="http://en.wikipedia.org/wiki/Endothermic" title="Endothermic" rel="wikipedia">endothermic</a> (absorbs heat)?</strong></p>
<p>Most of the students wrote proofs of their beliefs using <a class="zem_slink" href="http://en.wikipedia.org/wiki/Boyle%27s_law" title="Boyle's law" rel="wikipedia">Boyle&#8217;s Law</a> (gas cools when it expands and heats when it is compressed) or some variant.</p>
<p>One student, however, wrote the following:</p>
<p>First, we need to know how the mass of Hell is changing in time. So we need to know the rate at which souls are moving into Hell and the rate at which they are leaving. I think that we can safely assume that once a <a class="zem_slink" href="http://en.wikipedia.org/wiki/Soul" title="Soul" rel="wikipedia">soul</a> gets to Hell, it will not leave. Therefore, no souls are leaving. As for how many souls are entering Hell, let&#8217;s look at the different religions that exist in the world today.</p>
<p>Most of these religions state that if you are not a member of their religion, you will go to Hell. Since there is more than one of these religions and since people do not belong to more than one religion, we can project that all souls go to Hell. With birth and <a class="zem_slink" href="http://en.wikipedia.org/wiki/Mortality_rate" title="Mortality rate" rel="wikipedia">death rates</a> as they are, we can expect the number of souls in Hell to <a class="zem_slink" href="http://en.wikipedia.org/wiki/Exponential_growth" title="Exponential growth" rel="wikipedia">increase exponentially</a>. Now, we look at the rate of change of the volume in Hell because Boyle&#8217;s Law states that in order for the <a class="zem_slink" href="http://en.wikipedia.org/wiki/Temperature" title="Temperature" rel="wikipedia">temperature</a> and pressure in Hell to stay the same, the volume of Hell has to expand proportionately as souls are added.</p>
<p>This gives two possibilities:</p>
<ol>
<li>If Hell is expanding at a slower rate than the rate at which souls enter Hell, then the temperature and pressure in Hell will increase until all Hell breaks loose.</li>
<li>If Hell is expanding at a rate faster than the increase of souls in Hell, then the temperature and pressure will drop until Hell freezes over.</li>
</ol>
<p>So which is it?</p>
<p>If we accept the postulate given to me by Teresa during my Freshman year that, &#8220;It will be a <a class="zem_slink" href="http://en.wikipedia.org/wiki/Hell" title="Hell" rel="wikipedia">cold day in Hell</a> before I sleep with you,&#8221; and take into account the fact that I slept with her last night, then number two must be true, and thus I am sure that Hell is exothermic and has already frozen over. The corollary of this theory is that since Hell has frozen over, it follows that it is not accepting any more souls and is therefore, extinct&#8230;&#8230;leaving only Heaven, thereby proving the existence of a divine being which explains why, last night, Teresa kept shouting &#8220;Oh my God.&#8221;</p>
<p><strong>THIS STUDENT RECEIVED AN A+.</strong></p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Zemified by Zemanta" href="http://www.zemanta.com/"><img class="zemanta-pixie-img" src="http://img.zemanta.com/pixie.png" alt="Zemanta Pixie" style="border: medium none ; float: right;" /></a><span class="zem-script more-related"><script type="text/javascript" src="http://static.zemanta.com/readside/loader.js" defer="defer"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2009/03/13/hell-explained-by-a-chemistry-student/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Obama Reverses Bush&#8217;s Ban On Funding Stem Cell Research</title>
		<link>http://armenianeagle.com/2009/03/09/obama-reverses-bushs-ban-on-funding-stem-cell-research/</link>
		<comments>http://armenianeagle.com/2009/03/09/obama-reverses-bushs-ban-on-funding-stem-cell-research/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 20:28:30 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
				<category><![CDATA[Entertainment and News]]></category>
		<category><![CDATA[Adult stem cell]]></category>
		<category><![CDATA[Barack Obama]]></category>
		<category><![CDATA[Biotechnology]]></category>
		<category><![CDATA[Bone marrow]]></category>
		<category><![CDATA[Brain tumor]]></category>
		<category><![CDATA[cancer]]></category>
		<category><![CDATA[Spinal cord]]></category>
		<category><![CDATA[Stem cell]]></category>

		<guid isPermaLink="false">http://armenianeagle.com/?p=1959</guid>
		<description><![CDATA[After eight years of the Bush era, Americans who are pro stem cell research can finally have hope that they can hold onto. President Barack Obama signed an executive order today that will reverse the ban on funding stem cell research..I know there are many Americans who disagree with research because it is unethical, but [...]]]></description>
			<content:encoded><![CDATA[<p>After eight years of the Bush era, Americans who are pro <a class="zem_slink" href="http://en.wikipedia.org/wiki/Stem_cell" title="Stem cell" rel="wikipedia">stem cell research</a> can finally have hope that they can hold onto. President <a class="zem_slink" href="http://obama.senate.gov" title="Barack Obama" rel="homepage">Barack Obama</a> signed an executive order today that will reverse the ban on funding stem cell research..I know there are many Americans who disagree with research because it is unethical, but I don&#8217;t see it the same way. </p>
<p>In case you were unaware what stem cell research is, I will give a short explanation based on my knowledge of it. I would recommend that those reading this should look up more info about it. Stem Cells are blank cells that can become any type of cell from muscle to nerve cells. There is controversy over the use of embryonic stem cells, but embryonic cells are not the only way to pull stem cells, however they are the most usable. <a class="zem_slink" href="http://en.wikipedia.org/wiki/Adult_stem_cell" title="Adult stem cell" rel="wikipedia">Adult stem cells</a> can come from Umbilical Cords, Placentas and Amniotic Fluid. They can also be pulled from adults including the patient for which it is being used on from their <a class="zem_slink" href="http://en.wikipedia.org/wiki/Bone_marrow" title="Bone marrow" rel="wikipedia">bone marrow</a>, liver, epidermis, retina, <a class="zem_slink" href="http://en.wikipedia.org/wiki/Skeletal_muscle" title="Skeletal muscle" rel="wikipedia">skeletal muscle</a>, intestine, brain, dental pulp, even fat from liposuction and others. They can also be available from people who have passed away up to 20 hours after. Some say it is unethical to kill a embryo and I agree, however, how many people who have already been born have to die because we are unwilling to make a couple of sacrifices. </p>
<p>Last year, it is <a href="http://www.ama-assn.org/amednews/2009/02/02/prsb0202.htm">estimated</a> that 750,000 Americans traveled outside of the country to receive medical treatment. I thought America had the best hospitals in the world and I was right, however the lack of stem cell research makes it impossible for Americans to get the care that they deserve. Now that Obama reversed the ban, I hope that more people will see all that stem cell research can accomplish once it is made available. I am not going to sit here and try to be non-objective about this subject. I fully support stem cell research because I have been affected by illnesses of both my parents. </p>
<p>My father was diagnosed with a malignant (cancerous) <a class="zem_slink" href="http://en.wikipedia.org/wiki/Brain_tumor" title="Brain tumor" rel="wikipedia">brain tumor</a> in March 1997. I was only 13 years old at that point. He fought <a class="zem_slink" href="http://en.wikipedia.org/wiki/Cancer" title="Cancer" rel="wikipedia">cancer</a> on and off for 11 years. Five brain tumors and colon cancer became too much for him and he passed away on July 6, 2008. <a href="http://www.cancer.org/docroot/home/index.asp">The American Cancer Society</a> estimates that in <a href="http://www.cancer.org/downloads/stt/CFF2008Table_pg4.pdf">2008</a> there was just under 1.5 million new cases and just over 550,000 deaths from cancer. Isn&#8217;t that enough of an impact for stem cell research to be an important policy for the country. Over 1/2 million people died from cancer who could have had a chance if we funded stem cell research. Cancer must have touched almost every American at some point in their life.</p>
<p>For me, it isn&#8217;t just about cancer. My mother was diagnosed with Multiple Sclerosis in 1990 when I was 6 years old and has been living with it since. It has greatly impacted my life and the lives of everyone who knows us. The <a href="http://www.nationalmssociety.org/news/news-detail/index.aspx?nid=791">National MS Society</a> believes that with proper research using stem cells, there is great hope that they will be able to find a cure for MS. I blogged about <a href="http://armenianeagle.com/2007/01/28/multiple-sclerosis-is-there-a-cure-ahead/">Accelerated Cure</a> which is a Non-Profit Organization that is dedicated to finding a cure for the disease. In less than a month I will be participating in the MS Walk to help raise money for a cure. </p>
<p>Can this executive order be the beginning of the end for diseases that affect millions of Americans around the country. Besides cancer and MS, stem cell research can make way for other illnesses like <a class="zem_slink" href="http://en.wikipedia.org/wiki/Spinal_cord" title="Spinal cord" rel="wikipedia">spinal cord</a> injuries, brain <a class="zem_slink" href="http://en.wikipedia.org/wiki/Brain_damage" title="Brain damage" rel="wikipedia">damage</a>, heart damage, ALS (<a class="zem_slink" href="http://en.wikipedia.org/wiki/Amyotrophic_lateral_sclerosis" title="Amyotrophic lateral sclerosis" rel="wikipedia">Lou Gehrig&#8217;s Disease</a>) and many others. Can we finally focus on our futures rid the world of these illnesses? If we can, we will be on our way to be the most respected country in the world for medical treatment.</p>
<div class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/422bfa2f-38fe-4b3a-a2b4-ff3568df6f24/" title="Zemified by Zemanta"><img class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_c.png?x-id=422bfa2f-38fe-4b3a-a2b4-ff3568df6f24" alt="Reblog this post [with Zemanta]" /></a><span class="zem-script more-related"><script type="text/javascript" src="http://static.zemanta.com/readside/loader.js" defer="defer"></script></span></div>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2009/03/09/obama-reverses-bushs-ban-on-funding-stem-cell-research/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Should A-Rod Be Allowed In The Baseball Hall of Fame?</title>
		<link>http://armenianeagle.com/2009/02/10/should-a-rod-be-allowed-in-the-baseball-hall-of-fame/</link>
		<comments>http://armenianeagle.com/2009/02/10/should-a-rod-be-allowed-in-the-baseball-hall-of-fame/#comments</comments>
		<pubDate>Tue, 10 Feb 2009 19:07:54 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
				<category><![CDATA[Sports and Leisure]]></category>
		<category><![CDATA[Alex Rodriguez]]></category>
		<category><![CDATA[baseball]]></category>
		<category><![CDATA[Boston Red Sox]]></category>
		<category><![CDATA[curt schilling]]></category>
		<category><![CDATA[Growth hormone]]></category>
		<category><![CDATA[Jason Varitek]]></category>
		<category><![CDATA[Seattle]]></category>
		<category><![CDATA[Steroid]]></category>

		<guid isPermaLink="false">http://armenianeagle.com/?p=1940</guid>
		<description><![CDATA[I will first start off by saying that as a die-hard Red Sox fan, I am going to try and keep this article as close to the facts that I can, but my dislike of Alex Rodriguez is very strong, so I apologize if it comes out mean. Alex Rodriguez has been looked upon as [...]]]></description>
			<content:encoded><![CDATA[<p>I will first start off by saying that as a die-hard <a class="zem_slink" href="http://en.wikipedia.org/wiki/Boston_Red_Sox" title="Boston Red Sox" rel="wikipedia">Red Sox</a> fan, I am going to try and keep this article as close to the facts that I can, but my dislike of <a class="zem_slink" href="http://en.wikipedia.org/wiki/Alex_Rodriguez" title="Alex Rodriguez" rel="wikipedia">Alex Rodriguez</a> is very strong, so I apologize if it comes out mean.</p>
<p>Alex Rodriguez has been looked upon as one of the players who will most definitely go into the <a class="zem_slink" href="http://en.wikipedia.org/wiki/Baseball" title="Baseball" rel="wikipedia">baseball</a> hall of fame&#8230;.until now. No matter what people think about him, he will never be voted into the hall after his admission of steroid use. No matter who the player is, no matter what team they play for, I will lose respect for them. If we come to find out years down the road that <a class="zem_slink" href="http://en.wikipedia.org/wiki/Curt_Schilling" title="Curt Schilling" rel="wikipedia">Curt Schilling</a> or <a class="zem_slink" href="http://en.wikipedia.org/wiki/Jason_Varitek" title="Jason Varitek" rel="wikipedia">Jason Varitek</a> used <a class="zem_slink" href="http://en.wikipedia.org/wiki/Steroid" title="Steroid" rel="wikipedia">steroids</a>, every bit of respect for them would be lost. What are they teaching the youth around the country about sports? Especially in <a class="zem_slink" href="http://en.wikipedia.org/wiki/Professional_sports" title="Professional sports" rel="wikipedia">professional sports</a>, it is important that they remember that they are role models and not just someone playing a game trying to win. </p>
<p>I heard some people call him courageous to admit to it, but that is not courage. Courage is going across the world to fight for your country and possibly die for your country. Courage is the single mother/father who are working their way through life on a pay check by pay check basis and still manage to better themselves by going back to school. Courage is not taking steroids to be a better baseball player and receive a 10-year-$252 million contract and then a 10-year-$275 million contract. If he wanted to be the best baseball player in history, he should have worked at it like everyone else. </p>
<p>A-Rod (A-Roid as people are calling him) went on &#8220;60 minutes&#8221; and lied to Katie Curic. If no one ever asked him and he chose not to speak up, not AS many people would be as mad/disappointed. If you knowingly went on TV and lied about not taking steroids, that is wrong. </p>
<div class="quote">
&#8220;For the record, have you ever used steroids, <a class="zem_slink" href="http://en.wikipedia.org/wiki/Growth_hormone" title="Growth hormone" rel="wikipedia">human growth hormone</a> or any other performance-enhancing substance?&#8221; Couric asked.</p>
<p>&#8220;No,&#8221; Rodriguez replied.</p>
<p>Asked if he had ever been tempted to use any of those things, Rodriguez told Couric, &#8220;No.&#8221;</p>
<p>&#8220;You never felt like, &#8216;This guy&#8217;s doing it, maybe I should look into this, too? He&#8217;s getting better numbers, playing better ball,&#8217;&#8221; Couric asked.</p>
<p>&#8220;I&#8217;ve never felt overmatched on the baseball <a class="zem_slink" href="http://en.wikipedia.org/wiki/Baseball_field" title="Baseball field" rel="wikipedia">field</a>. I&#8217;ve always been a very strong, dominant position. And I felt that if I did my work as I&#8217;ve done since I was, you know, a rookie back in <a class="zem_slink" href="http://maps.google.com/maps?ll=47.6097222222,-122.333055556&amp;spn=0.1,0.1&amp;q=47.6097222222,-122.333055556%20%28Seattle%29&amp;t=h" title="Seattle" rel="geolocation">Seattle</a>, I didn&#8217;t have a problem competing at any level. So, no,&#8221; he replied. </p>
</div>
<p><embed src="http://www.cbs.com/thunder/swf/rcpHolderCbs-prod.swf" allowfullscreen="true" flashvars="link=http://www.cbsnews.com/video/watch/?id=3624192n&amp;releaseURL=http://release.theplatform.com/content.select?pid=jua_ASkrh51y8jPHuYtupbp9GVxUIFqY&amp;partner=newsembed&amp;autoPlayVid=false&amp;prevImg=http://thumbnails.cbsig.net/CBS_Production_News/581/837/60min_Arod3_1216_480x360.jpg" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" width="370" height="361"></p>
<div class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/3e8b8ef5-6ec5-4881-b102-29839194c1c8/" title="Zemified by Zemanta"><img class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_c.png?x-id=3e8b8ef5-6ec5-4881-b102-29839194c1c8" alt="Reblog this post [with Zemanta]"/></a></div>
<p></embed></p>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2009/02/10/should-a-rod-be-allowed-in-the-baseball-hall-of-fame/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&quot;Her Morning Elegance&quot; By Oren Lavie</title>
		<link>http://armenianeagle.com/2009/01/29/her-morning-elegance-by-oren-lavie/</link>
		<comments>http://armenianeagle.com/2009/01/29/her-morning-elegance-by-oren-lavie/#comments</comments>
		<pubDate>Thu, 29 Jan 2009 20:43:13 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
				<category><![CDATA[Rants and Randomness]]></category>

		<guid isPermaLink="false">http://armenianeagle.com/?p=1932</guid>
		<description><![CDATA[Veronica Belmont tweeted about this video and I thought I would share it with others. It is a very creative video and I really enjoyed the cinematography.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.veronicabelmont.com/">Veronica Belmont</a> tweeted about this video and I thought I would share it with others. It is a very creative video and I really enjoyed the cinematography.</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/2_HXUhShhmY&#038;color1=0x3a3a3a&#038;color2=0x999999&#038;feature=player_embedded&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/2_HXUhShhmY&#038;color1=0x3a3a3a&#038;color2=0x999999&#038;feature=player_embedded&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2009/01/29/her-morning-elegance-by-oren-lavie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Carly&#8217;s Christening: My Role As Godfather</title>
		<link>http://armenianeagle.com/2009/01/18/carlys-christening-my-role-as-godfather/</link>
		<comments>http://armenianeagle.com/2009/01/18/carlys-christening-my-role-as-godfather/#comments</comments>
		<pubDate>Sun, 18 Jan 2009 19:44:26 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
				<category><![CDATA[Rants and Randomness]]></category>

		<guid isPermaLink="false">http://armenianeagle.com/?p=1918</guid>
		<description><![CDATA[My goddaughter&#8217;s Christening was held at the &#8220;St Vartanantz Armenian Church&#8221; in Chelmsford, MA on January 17th, 2009.]]></description>
			<content:encoded><![CDATA[<p>My goddaughter&#8217;s Christening was held at the &#8220;St Vartanantz Armenian Church&#8221; in Chelmsford, MA on January 17th, 2009. </p>
<p><a href="http://www.flickr.com/photos/armenianeagle/3205067331/" title="Carly's Christening by armenianeagle, on Flickr"><img src="http://farm4.static.flickr.com/3497/3205067331_545b698a6e_o.jpg" width="360" height="480" alt="Carly's Christening" /></a></p>
<p><a href="http://www.flickr.com/photos/armenianeagle/3205068379/" title="Carly's Christening by armenianeagle, on Flickr"><img src="http://farm4.static.flickr.com/3484/3205068379_82c2ec2477_o.jpg" width="324" height="480" alt="Carly's Christening" /></a></p>
<p><a href="http://www.flickr.com/photos/armenianeagle/3205912032/" title="Carly's Christening by armenianeagle, on Flickr"><img src="http://farm4.static.flickr.com/3321/3205912032_84971f86c7_o.jpg" width="360" height="480" alt="Carly's Christening" /></a></p>
<p><a href="http://www.flickr.com/photos/armenianeagle/3205911636/" title="Carly's Christening by armenianeagle, on Flickr"><img src="http://farm4.static.flickr.com/3347/3205911636_1fa4d11324.jpg" width="500" height="477" alt="Carly's Christening" /></a></p>
<p><a href="http://www.flickr.com/photos/armenianeagle/3205068979/" title="Carly's Christening by armenianeagle, on Flickr"><img src="http://farm4.static.flickr.com/3105/3205068979_f0f00a47c4_o.jpg" width="360" height="480" alt="Carly's Christening" /></a></p>
<p><a href="http://www.flickr.com/photos/armenianeagle/3205912794/" title="Carly's Christening by armenianeagle, on Flickr"><img src="http://farm4.static.flickr.com/3449/3205912794_4fb3ebd7f9_o.jpg" width="360" height="480" alt="Carly's Christening" /></a></p>
<p><a href="http://www.flickr.com/photos/armenianeagle/3205912592/" title="Carly's Christening by armenianeagle, on Flickr"><img src="http://farm4.static.flickr.com/3484/3205912592_3c9af06ec2_o.jpg" width="640" height="480" alt="Carly's Christening" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2009/01/18/carlys-christening-my-role-as-godfather/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Nintendo Wii Repairs Produce Quick Turnaround</title>
		<link>http://armenianeagle.com/2009/01/11/nintendo-wii-repairs-produce-quick-turnaround/</link>
		<comments>http://armenianeagle.com/2009/01/11/nintendo-wii-repairs-produce-quick-turnaround/#comments</comments>
		<pubDate>Sun, 11 Jan 2009 06:03:26 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
				<category><![CDATA[Sports and Leisure]]></category>

		<guid isPermaLink="false">http://armenianeagle.com/?p=1911</guid>
		<description><![CDATA[A few weeks ago (before Christmas), I called up Nintendo to ask about how I can clean my Wii since my discs weren&#8217;t being read properly. They told me that I could send in my Wii and they would have it back to me in 13-17 days. I sent it to them December 29th and [...]]]></description>
			<content:encoded><![CDATA[<p>A few weeks ago (before Christmas), I called up Nintendo to ask about how I can clean my Wii since my discs weren&#8217;t being read properly. They told me that I could send in my Wii and they would have it back to me in 13-17 days. I sent it to them December 29th and I received it back on January 7th. They replaced the drive and gave me a whole new year warranty on my Wii. Very quick turnaround considering it was right after Christmas.</p>
<p><a href="http://www.flickr.com/photos/armenianeagle/318887555/" title="Nintendo Wii by armenianeagle, on Flickr"><img src="http://farm1.static.flickr.com/123/318887555_ff88eeb892_o.jpg" width="400" height="400" alt="Nintendo Wii" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2009/01/11/nintendo-wii-repairs-produce-quick-turnaround/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>&quot;Merry Christmas From Heaven&quot;</title>
		<link>http://armenianeagle.com/2008/12/25/merry-christmas-from-heaven/</link>
		<comments>http://armenianeagle.com/2008/12/25/merry-christmas-from-heaven/#comments</comments>
		<pubDate>Thu, 25 Dec 2008 12:54:47 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
				<category><![CDATA[Rants and Randomness]]></category>

		<guid isPermaLink="false">http://armenianeagle.com/?p=1903</guid>
		<description><![CDATA[My mother received this yesterday from the funeral home in memory of my father.]]></description>
			<content:encoded><![CDATA[<p>My mother received this yesterday from the funeral home in memory of my father.<br />
<a href="http://www.flickr.com/photos/armenianeagle/3134825632/" title="Merry Christmas From Heaven by armenianeagle, on Flickr"><img src="http://farm4.static.flickr.com/3086/3134825632_c5567e811a_o.jpg" width="555" height="1024" alt="Merry Christmas From Heaven" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2008/12/25/merry-christmas-from-heaven/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Turkish Intellectuals Apologize For Armenian Genocide</title>
		<link>http://armenianeagle.com/2008/12/17/turkish-intellectuals-apologize-for-armenian-genocide/</link>
		<comments>http://armenianeagle.com/2008/12/17/turkish-intellectuals-apologize-for-armenian-genocide/#comments</comments>
		<pubDate>Thu, 18 Dec 2008 02:45:00 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
				<category><![CDATA[Armenia]]></category>
		<category><![CDATA[Entertainment and News]]></category>
		<category><![CDATA[armenian]]></category>
		<category><![CDATA[Armenian Genocide]]></category>
		<category><![CDATA[Armenian-Americans]]></category>
		<category><![CDATA[armenians]]></category>
		<category><![CDATA[Barack Obama]]></category>
		<category><![CDATA[Finally]]></category>
		<category><![CDATA[genocide]]></category>
		<category><![CDATA[In April Serzh Sargsyan]]></category>
		<category><![CDATA[In October George Bush]]></category>
		<category><![CDATA[In September Abdullah G]]></category>
		<category><![CDATA[iraq]]></category>
		<category><![CDATA[Ottoman Young Turks]]></category>
		<category><![CDATA[president]]></category>
		<category><![CDATA[The Turkish]]></category>
		<category><![CDATA[turkey]]></category>
		<category><![CDATA[Turkish]]></category>
		<category><![CDATA[Turks]]></category>
		<category><![CDATA[United States]]></category>
		<category><![CDATA[US President]]></category>
		<category><![CDATA[world]]></category>
		<category><![CDATA[world cup]]></category>

		<guid isPermaLink="false">http://armenianeagle.com/?p=1897</guid>
		<description><![CDATA[Turkish intellectuals and academics apologized for the Armenian Genocide that took place in 1915. In October 2007, George Bush (current US President) vetoed the bill that would have recognized the Armenian genocide in the United States because he wanted the Turkish airspace for the Iraq war.]]></description>
			<content:encoded><![CDATA[<p>Turkish intellectuals and academics apologized for the Armenian Genocide that took place in 1915. Now this doesn&#8217;t mean that the Turkish nationalists agree and they will recognize it as a genocide tomorrow. In fact, the Turkish nationalists are furious with the group for apologizing to Armenians around the world. However, this is the start of a chain reaction that will hopefully soon turn into a full blown genocide recognition. Many aspects of this issue has changed in the last couple of months. </p>
<p>In April 2008, Serzh Sargsyan took office as the newly elected President of Armenia. In September 2008, Abdullah Gül (President of Turkey) created a serious debate in Turkey because he visited the new President of Armenia during a World Cup qualifying match between the two countries. He was the first Turkish leader to visit bordering Armenia and hoped that it could be the beginning diplomatic normalization. The Turkish border has been closed from Armenia since 1993 and now with the ever changing world, we might see that border open soon. </p>
<p>In October 2007, George Bush (current US President) vetoed the bill that would have <a href="http://armenianeagle.com/2007/10/22/us-house-urged-not-to-vote-on-armenian-genocide-bill/">recognized the Armenian genocide</a> in the United States because he wanted the Turkish airspace for the Iraq war. Now that Barack Obama is our 44th President, he has <a href="http://www.barackobama.com/2008/01/19/barack_obama_on_the_importance.php">openly stated</a> that he will be the President that will recognize the Armenian Genocide. </p>
<p>I believe that many Turkish intellectuals are now realizing that if the US recognizes it on the federal level, there is nothing stopping other countries from following. The Turkish people would deny it as long as the US doesn&#8217;t recognize the genocide, but since everything in the world will be changing, they will have to adapt.</p>
<p>Finally, the 1.5 million Armenian-Americans can receive recognition for their family member who were murdered by the Ottoman &#8220;Young&#8221; Turks in 1915. In my family tree, there are 17 family members who were killed by the Turks in 1915 and only 5 of the survived which included both my great-grandparents. </p>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2008/12/17/turkish-intellectuals-apologize-for-armenian-genocide/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Red Sox Meet With Mark Teixeira In Las Vegas</title>
		<link>http://armenianeagle.com/2008/12/13/red-sox-meet-with-mark-teixeira-in-las-vegas/</link>
		<comments>http://armenianeagle.com/2008/12/13/red-sox-meet-with-mark-teixeira-in-las-vegas/#comments</comments>
		<pubDate>Sat, 13 Dec 2008 18:38:35 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
				<category><![CDATA[Rants and Randomness]]></category>
		<category><![CDATA[Sports and Leisure]]></category>
		<category><![CDATA[Atlanta Braves]]></category>
		<category><![CDATA[baseball]]></category>
		<category><![CDATA[Boston Red Sox]]></category>
		<category><![CDATA[Las Vegas]]></category>
		<category><![CDATA[Las Vegas  Nevada]]></category>
		<category><![CDATA[Mark Teixeira]]></category>
		<category><![CDATA[World Series]]></category>

		<guid isPermaLink="false">http://armenianeagle.com/?p=1890</guid>
		<description><![CDATA[With time running out on making deals with Mark Teixeira, the Red Sox traveled to the Bellagio Hotel in Las Vegas to try and come to an agreement for 2009. After being acquired from the Braves before the trading deadline this past season, Teixeira hit .358 with 13 homers and 43 RBIs in 54 games with the Angels.]]></description>
			<content:encoded><![CDATA[<p>With time running out on making deals with Mark Teixeira, the Red Sox traveled to the Bellagio Hotel in Las Vegas to try and come to an agreement for 2009. The Angels have just offered the top offensive first baseman an 8 year, at least $160 million contract and the Red Sox don&#8217;t want to let him go. He would be an excellent addition to the team and Theo will do everything he can to &#8220;get his man&#8221;&#8230;.again. Not only will he help with defense, but he is a highly trained offensive weapon that will fill the empty 3-4 slot that opened up when Manny left. I mean, Lowell is amazing and so is Youk, but I think that they could rewrite the lineup and make a solid 7-8 players.</p>
<div class="quote">
<p>Teixeira, 28, has hit at least 30 homers and driven in at least 105 runs in each of the past five seasons. After being acquired from the Braves before the trading deadline this past season, Teixeira hit .358 with 13 homers and 43 RBIs in 54 games with the Angels.</p>
</div>
<p>In my opinion, the only way that the Sox will have a chance at winning the division and the World Series is with Mark Teixeira in the lineup. I know the Sox can do it without him, but I think it will be so much easier with him.</p>
<div class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/5d3f3e2b-05f9-46c1-a606-1b7f3be976bb/" title="Zemified by Zemanta"><img class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_c.png?x-id=5d3f3e2b-05f9-46c1-a606-1b7f3be976bb" alt="Reblog this post [with Zemanta]" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2008/12/13/red-sox-meet-with-mark-teixeira-in-las-vegas/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>NESN&#8217;s Comedy All Stars: Live Taping Review</title>
		<link>http://armenianeagle.com/2008/12/11/nesns-comedy-all-stars-live-taping-review/</link>
		<comments>http://armenianeagle.com/2008/12/11/nesns-comedy-all-stars-live-taping-review/#comments</comments>
		<pubDate>Fri, 12 Dec 2008 03:46:17 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
				<category><![CDATA[Entertainment and News]]></category>
		<category><![CDATA[Sports and Leisure]]></category>
		<category><![CDATA[Arts]]></category>
		<category><![CDATA[Iliza Shlesinger]]></category>
		<category><![CDATA[In Living Color]]></category>
		<category><![CDATA[Last Comic Standing]]></category>
		<category><![CDATA[Performing Arts]]></category>
		<category><![CDATA[Ticketmaster]]></category>
		<category><![CDATA[Tommy Davidson]]></category>

		<guid isPermaLink="false">http://armenianeagle.com/?p=1882</guid>
		<description><![CDATA[Last night I went to go see "NESN Comedy All Stars" with my best friend Kristin. In one night, they taped three shows and made it seem like they were actually three different nights. Watch for season 2 of "NESN's Comedy All Stars" which airs I believe Friday nights after Red Sox games (next season obviously).]]></description>
			<content:encoded><![CDATA[<p>Last night I went to go see &#8220;NESN Comedy All Stars&#8221; with my best friend Kristin. This show is dedicated to sports comedy in the Boston area that is sponsored by NESN (New England Sports Network). They were free tickets from Ticketmaster since I just bought other tickets and I figured that it would be something different for us to do instead of getting dinner or just hanging out. I saw the show last season and it was alright, but not extremely funny. However, this live performance was absolutely amazing. When we arrived, we went up to the Mezzanine seats and were pretty far back, but one of the ushers escorted us to the box seats to the right of the stage overlooking it. They were amazing seats and I was extremely impressed.</p>
<p>Tommy Davidson, from &#8220;In Living Color&#8221;, was the host for the night. He not only made the crowd including Kristin and I laugh, but he made himself laugh a couple of times. He kept interrupting the stage manager when he was trying to countdown to taping and each time it was even funnier. </p>
<p>Iliza Shlesinger was one of the comedians that performed last night and she was awesome. In case you were wondering, she was the &#8220;Last Comic Standing&#8221; winner of season 6. She has two major qualities, she&#8217;s extremely hot and VERY funny.<br />
<a href="http://www.flickr.com/photos/armenianeagle/3101009339/" title="Iliza Shlesinger by armenianeagle, on Flickr"><img src="http://farm4.static.flickr.com/3212/3101009339_0b1c33f06c.jpg" alt="Iliza Shlesinger" align="left" width="400" height="500" /></a></p>
<p>The live taping of the show was really interesting. In one night, they taped three shows and made it seem like they were actually three different nights. Tommy Davidson was wearing different shirts and they closed out every third comic with saying goodnight and then they introduced him again two minutes later. There is one section of the show where they play something that is pre-recorded and they asked us not to clap after Tommy introduced it. </p>
<p>Overall the night was great and we had a lot of fun. Watch for season 2 of &#8220;NESN&#8217;s Comedy All Stars&#8221; which airs I believe Friday nights after Red Sox games (next season obviously).</p>
<div class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/9eb89afb-73e2-46d1-8aba-39f7ead7fc7d/" title="Zemified by Zemanta"><img class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_c.png?x-id=9eb89afb-73e2-46d1-8aba-39f7ead7fc7d" alt="Reblog this post [with Zemanta]" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2008/12/11/nesns-comedy-all-stars-live-taping-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OJ Simpson Sentenced To Maximum 33 Years In Prison</title>
		<link>http://armenianeagle.com/2008/12/05/oj-simpson-sentenced-to-maximum-33-years-in-prison/</link>
		<comments>http://armenianeagle.com/2008/12/05/oj-simpson-sentenced-to-maximum-33-years-in-prison/#comments</comments>
		<pubDate>Sat, 06 Dec 2008 04:52:53 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
				<category><![CDATA[Rants and Randomness]]></category>
		<category><![CDATA[Las Vegas  Nevada]]></category>
		<category><![CDATA[Nicole Brown Simpson]]></category>
		<category><![CDATA[O. J. Simpson]]></category>
		<category><![CDATA[OJ Simpson]]></category>
		<category><![CDATA[Palace Station]]></category>
		<category><![CDATA[Robbery]]></category>
		<category><![CDATA[Ronald Goldman]]></category>
		<category><![CDATA[United States]]></category>

		<guid isPermaLink="false">http://armenianeagle.com/?p=1877</guid>
		<description><![CDATA[When you hear the name OJ Simpson, what do you think of? OJ Simpson gets away with 2 counts of murder and then he thinks everything will be fine when he and a group of men rob someone at gun point over some sports memorabilia.]]></description>
			<content:encoded><![CDATA[<p>When you hear the name <a href="http://en.wikipedia.org/wiki/O._J._Simpson" title="O. J. Simpson" rel="wikipedia" class="zem_slink">OJ Simpson</a>, what do you think of? Some people would say a great football player&#8230;up until June 12, 1994 when he was accused of killing his ex-wife <a href="http://en.wikipedia.org/wiki/Nicole_Brown_Simpson" title="Nicole Brown Simpson" rel="wikipedia" class="zem_slink">Nicole Brown Simpson</a> and her friend <a href="http://en.wikipedia.org/wiki/Ronald_Goldman" title="Ronald Goldman" rel="wikipedia" class="zem_slink">Ronald Goldman</a>. From that point on, he was only considered by most, including me, a murderer. So he becomes involved in the &#8220;<a href="http://en.wikipedia.org/wiki/Trial_of_the_century" title="Trial of the century" rel="wikipedia" class="zem_slink">trial of the century</a>&#8221; which ended in October 1995 where he was found <a href="http://en.wikipedia.org/wiki/Acquittal" title="Acquittal" rel="wikipedia" class="zem_slink">not guilty</a>. He is then brought up on civil charges where he was found guilty and has to pay $33.5 million in <a href="http://en.wikipedia.org/wiki/Damages" title="Damages" rel="wikipedia" class="zem_slink">damages</a>. </p>
<p>After the trial, he was hated by most Americans and lost &#8220;a lot&#8221; of his money. Let&#8217;s jump forward about 10 years. Let&#8217;s recap! OJ Simpson <strong>gets away</strong> with 2 counts of <a href="http://en.wikipedia.org/wiki/Murder" title="Murder" rel="wikipedia" class="zem_slink">murder</a> and then he thinks everything will be fine when he and a group of men rob someone at gun point over some <a href="http://en.wikipedia.org/wiki/Sports_memorabilia" title="Sports memorabilia" rel="wikipedia" class="zem_slink">sports memorabilia</a>. Really OJ? You didn&#8217;t think to yourself that you might get caught.</p>
<p>Today he was sentenced to 33 years in prison with eligibility for parole in 9 years. First of all, he should not be allowed parole and be in jail for the rest of his life. I was talking to a friend of mine and I told him: &#8220;All his life, he was told don&#8217;t drop the football. Now it&#8217;s going to be don&#8217;t drop the soap.&#8221;</p>
<p>Have fun OJ!!!</p>
<div class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/b63391da-2ab7-499d-9f70-12d3e3e39478/" title="Zemified by Zemanta"><img class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_c.png?x-id=b63391da-2ab7-499d-9f70-12d3e3e39478" alt="Reblog this post [with Zemanta]" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2008/12/05/oj-simpson-sentenced-to-maximum-33-years-in-prison/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scammers On Craigslist Are Fun To Mess With</title>
		<link>http://armenianeagle.com/2008/12/04/scammers-on-craigslist-are-fun-to-mess-with/</link>
		<comments>http://armenianeagle.com/2008/12/04/scammers-on-craigslist-are-fun-to-mess-with/#comments</comments>
		<pubDate>Fri, 05 Dec 2008 04:41:36 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
				<category><![CDATA[Tech and Web]]></category>
		<category><![CDATA[back]]></category>
		<category><![CDATA[cash]]></category>
		<category><![CDATA[Check]]></category>
		<category><![CDATA[Craigslist]]></category>
		<category><![CDATA[Don't]]></category>
		<category><![CDATA[Hello]]></category>
		<category><![CDATA[If I]]></category>
		<category><![CDATA[IP]]></category>
		<category><![CDATA[jeep wrangler]]></category>
		<category><![CDATA[MAIL]]></category>
		<category><![CDATA[Nice]]></category>
		<category><![CDATA[Payee]]></category>
		<category><![CDATA[Send]]></category>
		<category><![CDATA[Thanks]]></category>
		<category><![CDATA[UK Just]]></category>
		<category><![CDATA[When I]]></category>

		<guid isPermaLink="false">http://armenianeagle.com/?p=1871</guid>
		<description><![CDATA[Hello, Thanks for your mail and i will like to affirm that i am really interested in your items and will like to inform you that my only mode of paying you is by mailing you certified bank check and if you are ok with that...]]></description>
			<content:encoded><![CDATA[<p>Don&#8217;t be fooled by scammers on Craigslist. I was selling my 1987 Jeep Wrangler hard top on Craigslist and got a reply back from someone interested. When I sent him a reply, this is what I got. </p>
<div class="quote">
<p>Hello,<br />
  Thanks for your mail and i will like to affirm that i am really interested in your items and will like to inform you that my only mode of paying you is by mailing you certified bank check and if you are ok with that&#8230; you can get back to me with your home address.. Payee name that will be on check and a valid phone number ( no voice mail number) &#8230; and as soon as you receive the check and it goes through then i will now send my shipper for the pickup of the item asap&#8230;.<br />
thanks</p>
</div>
<p>First of all, he said &#8220;items&#8221; and I was only talking about one thing. Second, if his only way to pay you is a certified check, there is something wrong. I may be mean to telemarketers and scammers, but it is fun sometimes. This is my exact response to his reply.</p>
<p><strong>My response</strong></p>
<div class="quote">
<p>No. Cash or no deal. Don&#8217;t even get me started on how this is fraud. If you send me anything, I will send it right back. If I get spam from you, let me inform you that I am a technology freak and will use it to my advantage.  Nice try, but you didn&#8217;t get me. So if you are paying me in cash, is it going to be $300 in pounds or US dollars considering I tracked this back to an IP address in the UK. Just wondering how you would pick it up and mail it. Seems like it would be easier just to give me $5000 in cash and I can punch you in the face for being an idiot.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2008/12/04/scammers-on-craigslist-are-fun-to-mess-with/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Post-Commit Hooks With Subversion On Dreamhost</title>
		<link>http://armenianeagle.com/2008/12/03/post-commit-hooks-with-subversion-on-dreamhost/</link>
		<comments>http://armenianeagle.com/2008/12/03/post-commit-hooks-with-subversion-on-dreamhost/#comments</comments>
		<pubDate>Thu, 04 Dec 2008 03:03:48 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
				<category><![CDATA[Tech and Web]]></category>
		<category><![CDATA[Command-line interface]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[Configuration Management]]></category>
		<category><![CDATA[DreamHost]]></category>
		<category><![CDATA[Subversion]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Web application]]></category>
		<category><![CDATA[Wiki]]></category>

		<guid isPermaLink="false">http://armenianeagle.com/?p=1865</guid>
		<description><![CDATA[When I was working at my old job, we started using Subversion (SVN) as our versioning software which I really enjoyed. Now that I am working on my own web application, I am using SVN as well.]]></description>
			<content:encoded><![CDATA[<p>When I was working at my old job, we started using Subversion (SVN) as our versioning software which I really enjoyed. Now that I am working on my own <a href="http://en.wikipedia.org/wiki/Web_application" title="Web application" rel="wikipedia" class="zem_slink">web application</a>, I am using SVN as well. Currently I am using <a href="http://www.dreamhost.com" title="DreamHost" rel="homepage" class="zem_slink">Dreamhost</a> for my hosting and they have SVN pre-installed on their servers, all you need to do is activate it. The installation is very easy through the web panel, however, if you want to get more advanced, you will need to know basic <a href="http://en.wikipedia.org/wiki/Command-line_interface" title="Command-line interface" rel="wikipedia" class="zem_slink">command line</a>. </p>
<p>I wanted to setup SVN so that when I commit to the server, it automatically updates the site with the newest content. Normally you have to manually go in and update the site to the latest revision. After reading through the <a href="http://wiki.dreamhost.com/Subversion#Automatic_Post-commit_Checkout">Dreamhost Wiki</a>, I found out how to accomplish this in only about 5-6 quick steps. I say quick in the fact that if you do it right it is quick. I had a few issues based on false information in the wiki, but I finally got it working and they updated the article. </p>
<p><a href="http://wiki.dreamhost.com/Subversion#Automatic_Post-commit_Checkout">Read the article here</a>. </p>
<p>Once I got it working, I tested it out and it worked wonders. It made my life a lot easier because not only was it one less step, but I didn&#8217;t have to go into command line after every save and commit. If you are using SVN, I would highly recommend establishing a post-commit hook so that you can save time and energy. </p>
<div class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/f633c631-91ff-4ade-9479-844a3af0647a/" title="Zemified by Zemanta"><img class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_c.png?x-id=f633c631-91ff-4ade-9479-844a3af0647a" alt="Reblog this post [with Zemanta]" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2008/12/03/post-commit-hooks-with-subversion-on-dreamhost/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Today Marks Two Consecutive Year Of Blogging</title>
		<link>http://armenianeagle.com/2008/12/01/today-marks-two-consecutive-year-of-blogging/</link>
		<comments>http://armenianeagle.com/2008/12/01/today-marks-two-consecutive-year-of-blogging/#comments</comments>
		<pubDate>Tue, 02 Dec 2008 03:51:35 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
				<category><![CDATA[Rants and Randomness]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[Content]]></category>
		<category><![CDATA[posts]]></category>
		<category><![CDATA[Thank]]></category>
		<category><![CDATA[Try]]></category>
		<category><![CDATA[years]]></category>

		<guid isPermaLink="false">http://armenianeagle.com/?p=1859</guid>
		<description><![CDATA[I have been blogging consistently for the last two years and it has been great, but I have a feeling that some of my content has been fading a little bit. I am going to try to cut back on blogging just to blog and try to focus on my content.]]></description>
			<content:encoded><![CDATA[<p>I have been blogging consistently for the last two years and it has been great, but I have a feeling that some of my content has been fading a little bit. I am going to try to cut back on blogging just to blog and try to focus on my content. I am three posts away from my 1,000th post and when I started this consecutive streak, I was at 190 posts. I have put out around 800 posts in the last two years. I will still try to blog frequently, but not as much.</p>
<p>Thank you to everyone who reads this blog!</p>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2008/12/01/today-marks-two-consecutive-year-of-blogging/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook Grabbed The Wrong Status: I&#8217;m Not A Woman</title>
		<link>http://armenianeagle.com/2008/11/30/facebook-grabbed-the-wrong-status-im-not-a-woman/</link>
		<comments>http://armenianeagle.com/2008/11/30/facebook-grabbed-the-wrong-status-im-not-a-woman/#comments</comments>
		<pubDate>Mon, 01 Dec 2008 03:00:18 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
				<category><![CDATA[Tech and Web]]></category>
		<category><![CDATA[Academia]]></category>
		<category><![CDATA[Education]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[School]]></category>
		<category><![CDATA[snow]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[United States]]></category>
		<category><![CDATA[User]]></category>

		<guid isPermaLink="false">http://armenianeagle.com/?p=1856</guid>
		<description><![CDATA[I went on Facebook to change my status tonight and my status was set to "Timothy is loving the beautiful snowfall and trying her best to focus on her academics". Now the fact that I am not in school anymore is the one that I am concerned with.]]></description>
			<content:encoded><![CDATA[<p>I went on <a href="http://facebook.com" title="Facebook" rel="homepage" class="zem_slink">Facebook</a> to change my status tonight and my status was set to &#8220;Timothy is loving the beautiful <a href="http://en.wikipedia.org/wiki/Snow" title="Snow" rel="wikipedia" class="zem_slink">snowfall</a> and trying her best to <a href="http://en.wikipedia.org/wiki/Focus_%28optics%29" title="Focus (optics)" rel="wikipedia" class="zem_slink">focus</a> on her <a href="http://en.wikipedia.org/wiki/Academia" title="Academia" rel="wikipedia" class="zem_slink">academics</a>&#8220;. Now the <a href="http://en.wikipedia.org/wiki/Fact" title="Fact" rel="wikipedia" class="zem_slink">fact</a> that <a href="http://www.amazon.com/I-am-Myra-Joy-McPherson/dp/075411113X%3FSubscriptionId%3D0G81C5DAZ03ZR9WH9X82%26tag%3Dzemanta-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D075411113X" title="I am" rel="amazon" class="zem_slink">I am</a> not in <a href="http://en.wikipedia.org/wiki/School" title="School" rel="wikipedia" class="zem_slink">school</a> anymore is the one that I am concerned with. It&#8217;s not the fact that I am a &#8220;him&#8221; and not a &#8220;her&#8221;. <img src='http://armenianeagle.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I wonder if Facebook even realizes the <a href="http://en.wikipedia.org/wiki/Mistake_%28contract_law%29" title="Mistake (contract law)" rel="wikipedia" class="zem_slink">mistake</a> or if it is just <a href="http://en.wikipedia.org/wiki/User_%28computing%29" title="User (computing)" rel="wikipedia" class="zem_slink">my account</a>. Oh well, funny anyways.</p>
<p><a href="http://www.flickr.com/photos/armenianeagle/3073277354/" title="Facebook wrong status by armenianeagle, on Flickr"><img src="http://farm4.static.flickr.com/3293/3073277354_fe94777ec4.jpg" alt="Facebook wrong status" width="500" height="191" /></a></p>
<div class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/ba79c32c-4dee-407f-9041-8bd56fd6ee1e/" title="Zemified by Zemanta"><img class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_c.png?x-id=ba79c32c-4dee-407f-9041-8bd56fd6ee1e" alt="Reblog this post [with Zemanta]" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2008/11/30/facebook-grabbed-the-wrong-status-im-not-a-woman/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lite-Brite Can Now Be Created Electronically</title>
		<link>http://armenianeagle.com/2008/11/29/lite-brite-can-now-be-created-electronically/</link>
		<comments>http://armenianeagle.com/2008/11/29/lite-brite-can-now-be-created-electronically/#comments</comments>
		<pubDate>Sun, 30 Nov 2008 04:21:58 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
				<category><![CDATA[Rants and Randomness]]></category>
		<category><![CDATA[American Flag]]></category>
		<category><![CDATA[Armenian Flag]]></category>
		<category><![CDATA[create]]></category>
		<category><![CDATA[Create Your Own Lite-Brite]]></category>
		<category><![CDATA[Elf]]></category>
		<category><![CDATA[Enjoy]]></category>
		<category><![CDATA[exists]]></category>
		<category><![CDATA[flag]]></category>
		<category><![CDATA[Happy Birthday]]></category>
		<category><![CDATA[Lite-Brite]]></category>
		<category><![CDATA[looked]]></category>
		<category><![CDATA[Merry Christmas]]></category>

		<guid isPermaLink="false">http://armenianeagle.com/?p=1850</guid>
		<description><![CDATA[I was watching the movie "Elf" tonight and I saw the part where he was using Lite-Brite and it got me thinking. I looked up Lite-Brite to see if it still exists and not only does it still exist, but look at all of the lite-brite products they have now.]]></description>
			<content:encoded><![CDATA[<p>I was watching the movie &#8220;Elf&#8221; tonight and I saw the part where he was using Lite-Brite and it got me thinking. I remember sitting our playroom growing up using Lite-Brite for everything. We used it to write &#8220;Happy Birthday&#8221; or &#8220;Merry Christmas&#8221;. It brought me back to a time when life was a lot easier. </p>
<p>I looked up Lite-Brite to see if it still exists and not only does it still exist, but look at all of the lite-brite <a href="http://www.hasbro.com/litebrite/default.cfm?page=Products/Catalog">products</a> they have now. </p>
<p>I also found that you can <a href="http://www.hasbro.com/monkeybartv/default.cfm?page=Entertainment/OnlineGames/GameSelect&#038;game=1210">Create Your Own Lite-Brite</a> online which was awesome. This is what I created in 5 minutes. The top one is the Armenian Flag and the bottom should be the American Flag, but you can only do so much in a short amount of time. </p>
<p><a href="http://www.flickr.com/photos/armenianeagle/3069540219/" title="Lite-Brite by armenianeagle, on Flickr"><img src="http://farm4.static.flickr.com/3188/3069540219_979859b862.jpg" width="500" height="368" alt="Lite-Brite" /></a></p>
<p>Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2008/11/29/lite-brite-can-now-be-created-electronically/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Beware Of Stores Closing After The Holidays</title>
		<link>http://armenianeagle.com/2008/11/28/beware-of-stores-closing-after-the-holidays/</link>
		<comments>http://armenianeagle.com/2008/11/28/beware-of-stores-closing-after-the-holidays/#comments</comments>
		<pubDate>Fri, 28 Nov 2008 16:15:15 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
				<category><![CDATA[Entertainment and News]]></category>
		<category><![CDATA[Ann Taylor]]></category>
		<category><![CDATA[Circuit City]]></category>
		<category><![CDATA[Dillard]]></category>
		<category><![CDATA[Home Depot]]></category>
		<category><![CDATA[J. C. Penney]]></category>
		<category><![CDATA[Pacific Sunwear]]></category>
		<category><![CDATA[Sharper Image]]></category>
		<category><![CDATA[Talbots]]></category>

		<guid isPermaLink="false">http://armenianeagle.com/?p=1845</guid>
		<description><![CDATA[Jill closing all stores (owned by Talbots) Pacific Sunwear (also owned by Talbots) GAP closing 85 stores Footlocker closing 140 stores more to close after January Wickes Furniture closing down Levitz closing down remaining stores Bombay closing remaining stores Zales closing down 82 stores and 105 after January Whitehall closing all stores Piercing Pagoda closing all stores Disney closing 98 stores and will close more after January.]]></description>
			<content:encoded><![CDATA[<p>The economy is so bad that some of the biggest stores are closing some/all of their stores because they are losing too much money. </p>
<p>I wanted to give everyone a heads up that if you tend to give gift cards around the holidays, you need to be careful that the cards will be honored after the holidays. Stores that are planning to close after Christmas are still selling the cards through the holidays even though the cards will be worthless January 1. There is no law preventing them from doing this. On the contrary, it is referred to as &#8216;Bankruptcy Planning).</p>
<p>Below is a partial list of stores that you need to be cautious about:</p>
<ul>
<li><a href="http://www.circuitcity.com" title="Circuit City" rel="homepage" class="zem_slink">Circuit City</a> (filed Chapter 11)</li>
<li><a href="http://finance.yahoo.com/q?s=ANN" title="NYSE: ANN" rel="stockexchange" class="zem_slink">Ann Taylor</a>- 117 stores nationwide closing</li>
<li>Lane Bryant, <a href="http://www.charmingshoppes.com/" title="Charming Shoppes" rel="homepage" class="zem_slink">Fashion Bug</a> ,and Catherine&#8217;s to close 150 stores nationwide</li>
<li>Eddie Bauer to close stores 27 stores and more after January</li>
<li>Cache will close all stores</li>
<li>Talbots closing down specialty stores</li>
<li><a href="http://http://talbotsinc.com/home.asp/" title="Talbots" rel="homepage" class="zem_slink">J. Jill</a> closing all stores (owned by Talbots)</li>
<li><a href="http://www.pacsun.com/" title="Pacific Sunwear" rel="homepage" class="zem_slink">Pacific Sunwear</a> (also owned by Talbots)</li>
<li>GAP closing 85 stores</li>
<li>Footlocker closing 140 stores more to close after January</li>
<li>Wickes Furniture closing down</li>
<li>Levitz closing down remaining stores</li>
<li>Bombay closing remaining stores</li>
<li>Zales closing down 82 stores and 105 after January</li>
<li>Whitehall closing all stores</li>
<li><a href="http://www.zalecorp.com/" title="Zale Corporation" rel="homepage" class="zem_slink">Piercing Pagoda</a> closing all stores</li>
<li>Disney closing 98 stores and will close more after January.</li>
<li><a href="http://maps.google.com/maps?ll=33.9065,-84.4872&amp;spn=1.0,1.0&amp;q=33.9065,-84.4872%20%28The%20Home%20Depot%29&amp;t=h" title="The Home Depot" rel="geolocation" class="zem_slink">Home Depot</a> closing 15 stores 1 in NJ ( New Brunswick )</li>
<li>Macys to close 9 stores after January</li>
<li>Linens and Things closing all stores</li>
<li>Movie Galley Closing all stores</li>
<li>Pep Boys Closing 33 stores</li>
<li>Sprint/Nextel closing 133 stores</li>
<li><a href="http://www.jcp.com/" title="J. C. Penney" rel="homepage" class="zem_slink">JC Penney</a> closing a number of stores after January</li>
<li>Ethan Allen closing down 12 stores.</li>
<li>Wilson Leather closing down all stores</li>
<li><a href="http://thesharperimage.com" title="The Sharper Image" rel="homepage" class="zem_slink">Sharper Image</a> closing down all stores</li>
<li>K B Toys closing 356 stores</li>
<li>Loews to close down some stores</li>
<li><a href="http://www.dillards.com/" title="Dillard's" rel="homepage" class="zem_slink">Dillard&#8217;s</a> to close some stores</li>
</ul>
<div class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/15d110b4-8264-4ed0-9d08-c2d54e4587fe/" title="Zemified by Zemanta"><img class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_c.png?x-id=15d110b4-8264-4ed0-9d08-c2d54e4587fe" alt="Reblog this post [with Zemanta]" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2008/11/28/beware-of-stores-closing-after-the-holidays/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>First Thanksgiving Without My Father</title>
		<link>http://armenianeagle.com/2008/11/27/first-thanksgiving-without-my-father/</link>
		<comments>http://armenianeagle.com/2008/11/27/first-thanksgiving-without-my-father/#comments</comments>
		<pubDate>Fri, 28 Nov 2008 03:20:00 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
				<category><![CDATA[Rants and Randomness]]></category>
		<category><![CDATA[Children and Youth]]></category>
		<category><![CDATA[family]]></category>
		<category><![CDATA[Food industry]]></category>
		<category><![CDATA[holiday]]></category>
		<category><![CDATA[Holidays and Special Days]]></category>
		<category><![CDATA[thanksgiving]]></category>

		<guid isPermaLink="false">http://armenianeagle.com/?p=1842</guid>
		<description><![CDATA[The holidays are the time when our family, just like many others, spent the most time together. To all those who have the chance to spend time with their loved ones, I hope you enjoyed it and make sure to remember the time you get to spend with them.]]></description>
			<content:encoded><![CDATA[<p>Today was the first <a href="http://en.wikipedia.org/wiki/Thanksgiving" title="Thanksgiving" rel="wikipedia" class="zem_slink">Thanksgiving</a> without my father. I know that over the next months there will be a lot of first _____ without him, but it is very hard. The holidays are the time when our <a href="http://en.wikipedia.org/wiki/Family_%28biology%29" title="Family (biology)" rel="wikipedia" class="zem_slink">family</a>, just like many others, spent the most time together. We had certain traditions that will change and memories we shared. </p>
<p>I know that Thanksgiving is all about giving thanks and there are plenty of things to be thankful for. There are some people who don&#8217;t have <a href="http://en.wikipedia.org/wiki/Food_industry" title="Food industry" rel="wikipedia" class="zem_slink">food</a> to eat or a place to live. Don&#8217;t get me wrong, I have food to eat and a place to live, but it still doesn&#8217;t change the fact about how much it hurts to not spend time with my dad. Some point I will be able to be thankful during the holidays, but it won&#8217;t be for a little bit. </p>
<p>To all those who have the chance to spend time with their loved ones, I hope you enjoyed it and make sure to remember the time you get to spend with them. </p>
<div class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/378cac10-a833-4f15-96f6-a7815d40b956/" title="Zemified by Zemanta"><img class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_c.png?x-id=378cac10-a833-4f15-96f6-a7815d40b956" alt="Reblog this post [with Zemanta]" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2008/11/27/first-thanksgiving-without-my-father/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Bush Sends Hanukkah Invitations With Christmas Tree</title>
		<link>http://armenianeagle.com/2008/11/26/bush-sends-hanukkah-invitations-with-christmas-tree/</link>
		<comments>http://armenianeagle.com/2008/11/26/bush-sends-hanukkah-invitations-with-christmas-tree/#comments</comments>
		<pubDate>Wed, 26 Nov 2008 21:28:12 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
				<category><![CDATA[Rants and Randomness]]></category>
		<category><![CDATA[Barbara Bush]]></category>
		<category><![CDATA[christmas tree]]></category>
		<category><![CDATA[george w bush]]></category>
		<category><![CDATA[Hanukkah]]></category>
		<category><![CDATA[history]]></category>
		<category><![CDATA[Laura Bush]]></category>
		<category><![CDATA[United States]]></category>
		<category><![CDATA[White House]]></category>

		<guid isPermaLink="false">http://armenianeagle.com/?p=1839</guid>
		<description><![CDATA[It turns out that someone in Mrs. Bush's staff who sent out an invitation to American Jewish leaders for a Hanukkah reception at the White House with a Christmas tree on it. Not a major mistake, but just really funny.]]></description>
			<content:encoded><![CDATA[<p>Way to go &#8220;Mr. President&#8221;! I know it wasn&#8217;t his mistake, but it has his and <a href="http://www.imdb.com/name/nm1197615/" title="Laura Bush" rel="imdb" class="zem_slink">Laura</a>&#8216;s name on it. It turns out that someone in Mrs. <a href="http://www.whitehouse.gov/" title="George W. Bush" rel="homepage" class="zem_slink">Bush&#8217;s</a> staff who sent out an invitation to <a href="http://en.wikipedia.org/wiki/American_Jews" title="American Jews" rel="wikipedia" class="zem_slink">American Jewish</a> leaders for a <a href="http://en.wikipedia.org/wiki/Hanukkah" title="Hanukkah" rel="wikipedia" class="zem_slink">Hanukkah</a> reception at <a href="http://maps.google.com/maps?ll=38.89767,-77.03655&amp;spn=0.01,0.01&amp;q=38.89767,-77.03655%20%28White%20House%29&amp;t=h" title="White House" rel="geolocation" class="zem_slink">the White House</a> with a <a href="http://en.wikipedia.org/wiki/Christmas_tree" title="Christmas tree" rel="wikipedia" class="zem_slink">Christmas tree</a> on it. </p>
<p>Not a major mistake, but just really funny. </p>
<div class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/baabe13c-5dbe-4b55-843e-13d00c28bdc0/" title="Zemified by Zemanta"><img class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_c.png?x-id=baabe13c-5dbe-4b55-843e-13d00c28bdc0" alt="Reblog this post [with Zemanta]" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2008/11/26/bush-sends-hanukkah-invitations-with-christmas-tree/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Check Mate: Armenia Retains Title At Chess Olympiad</title>
		<link>http://armenianeagle.com/2008/11/25/check-mate-armenia-retains-title-at-chess-olympiad/</link>
		<comments>http://armenianeagle.com/2008/11/25/check-mate-armenia-retains-title-at-chess-olympiad/#comments</comments>
		<pubDate>Wed, 26 Nov 2008 04:42:12 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
				<category><![CDATA[Sports and Leisure]]></category>
		<category><![CDATA[Abstract]]></category>
		<category><![CDATA[Armenia]]></category>
		<category><![CDATA[Battle Games]]></category>
		<category><![CDATA[Board Games]]></category>
		<category><![CDATA[Chess]]></category>
		<category><![CDATA[Chess Olympiad]]></category>
		<category><![CDATA[Games]]></category>
		<category><![CDATA[Tournament]]></category>

		<guid isPermaLink="false">http://armenianeagle.com/?p=1834</guid>
		<description><![CDATA[Every two years, each country competes in the Chess Olympiad to see which country has the best chess players in the world. The Armenian chess team took the title back to back times beating China in the 11th round.]]></description>
			<content:encoded><![CDATA[<p>Every two <a href="http://en.wikipedia.org/wiki/Year" title="Year" rel="wikipedia" class="zem_slink">years</a>, each country competes in the <a href="http://en.wikipedia.org/wiki/Chess_Olympiad" title="Chess Olympiad" rel="wikipedia" class="zem_slink">Chess Olympiad</a> to see which country has the best <a href="http://en.wikipedia.org/wiki/List_of_chess_players" title="List of chess players" rel="wikipedia" class="zem_slink">chess players</a> in the world. The <a href="http://armenianow.com/?action=viewArticle&#038;AID=3403&#038;CID=3270&#038;IID=1210&#038;lng=eng">Armenian chess team</a> took the title back to back times beating China in the 11th round. </p>
<blockquote><p>“I’ve had no doubts that our guys will do it. But in any case I feel greatly relieved that it’s over now and we can celebrate our success,” said one fan after learning the news.</p>
<p>Meanwhile, Armenia’s women finished outside the top six, but scored a number of memorable victories during the <a href="http://en.wikipedia.org/wiki/Tournament" title="Tournament" rel="wikipedia" class="zem_slink">tournament</a>, among them the demolition of the <a href="http://en.wikipedia.org/wiki/Azerbaijani_people" title="Azerbaijani people" rel="wikipedia" class="zem_slink">Azerbaijani</a> team 4-0.</p></blockquote>
<p>Congratulations to the Armenian chess team.</p>
<div class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/9e8dd5d8-fa24-4aa6-8486-54ef16af6777/" title="Zemified by Zemanta"><img class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_c.png?x-id=9e8dd5d8-fa24-4aa6-8486-54ef16af6777" alt="Reblog this post [with Zemanta]" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2008/11/25/check-mate-armenia-retains-title-at-chess-olympiad/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>24: Redemption == Amazing</title>
		<link>http://armenianeagle.com/2008/11/24/24-redemption-amazing/</link>
		<comments>http://armenianeagle.com/2008/11/24/24-redemption-amazing/#comments</comments>
		<pubDate>Tue, 25 Nov 2008 03:26:41 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
				<category><![CDATA[Entertainment and News]]></category>
		<category><![CDATA[Arts]]></category>
		<category><![CDATA[Carson  Johnny]]></category>
		<category><![CDATA[People]]></category>
		<category><![CDATA[Programs]]></category>
		<category><![CDATA[Redemption]]></category>
		<category><![CDATA[Talk Shows]]></category>
		<category><![CDATA[Television]]></category>
		<category><![CDATA[Tonight Show  The]]></category>

		<guid isPermaLink="false">http://armenianeagle.com/?p=1831</guid>
		<description><![CDATA[I know that 24 Redemption premiered last night, but I was DVRing it and watched it tonight. I miss 24 a lot because of how amazing the writing actually is. However, I will have to wait for January before I get to watch a new episode.]]></description>
			<content:encoded><![CDATA[<p>I know that 24 <a href="http://en.wikipedia.org/wiki/Redemption_%28Stargate_SG-1%29" title="Redemption (Stargate SG-1)" rel="wikipedia" class="zem_slink">Redemption</a> premiered last night, but I was DVRing it and watched it tonight. I miss 24 a lot because of how amazing the writing actually is. You are sitting on the edge of your seat the entire time. However, I will have to wait for January before I get to watch a new episode. </p>
<div class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/7d3ee5d8-6b30-4909-a790-eaee2eb173db/" title="Zemified by Zemanta"><img class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_c.png?x-id=7d3ee5d8-6b30-4909-a790-eaee2eb173db" alt="Reblog this post [with Zemanta]" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2008/11/24/24-redemption-amazing/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Jim Gaffigan Show Tonight &#8211; It&#8217;s Going To Be Awesome</title>
		<link>http://armenianeagle.com/2008/11/23/jim-gaffigan-show-tonight-its-going-to-be-awesome/</link>
		<comments>http://armenianeagle.com/2008/11/23/jim-gaffigan-show-tonight-its-going-to-be-awesome/#comments</comments>
		<pubDate>Sun, 23 Nov 2008 21:33:29 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
				<category><![CDATA[Entertainment and News]]></category>
		<category><![CDATA[Arts]]></category>
		<category><![CDATA[boston]]></category>
		<category><![CDATA[Boston Massachusetts]]></category>
		<category><![CDATA[Comedy]]></category>
		<category><![CDATA[Jim Gaffigan]]></category>
		<category><![CDATA[massachusetts]]></category>
		<category><![CDATA[Television]]></category>
		<category><![CDATA[United States]]></category>

		<guid isPermaLink="false">http://armenianeagle.com/?p=1828</guid>
		<description><![CDATA[In about an hour, I am going to take the T into Boston to see the Jim Gaffigan show. Apparently there is an opening act that isn't that good, but one of my friends who saw the show, said Gaffigan was absolutely amazing.]]></description>
			<content:encoded><![CDATA[<p>In about an hour, I am going to take the T into <a href="http://maps.google.com/maps?ll=42.3577777778,-71.0616666667&amp;spn=0.1,0.1&amp;q=42.3577777778,-71.0616666667%20%28Boston%2C%20Massachusetts%29&amp;t=h" title="Boston, Massachusetts" rel="geolocation" class="zem_slink">Boston</a> to see the <a href="http://www.imdb.com/name/nm0300712/" title="Jim Gaffigan" rel="imdb" class="zem_slink">Jim Gaffigan</a> show. I talked about it last week and I was still trying to figure out who to take. I talked with my friend <a href="http://www.heathermills.org/" title="Heather Mills" rel="homepage" class="zem_slink">Heather</a> and she really wanted to go. Apparently there is an <a href="http://en.wikipedia.org/wiki/Opening_act" title="Opening act" rel="wikipedia" class="zem_slink">opening act</a> that isn&#8217;t that good, but one of my friends who saw the show, said Gaffigan was absolutely amazing. </p>
<p>&#8220;It&#8217;s like having a really bad dinner and then having the best dessert ever.&#8221; &#8211; Eric</p>
<div class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/d0d85425-8af6-428f-8c19-4620f469e8cf/" title="Zemified by Zemanta"><img class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_c.png?x-id=d0d85425-8af6-428f-8c19-4620f469e8cf" alt="Reblog this post [with Zemanta]" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2008/11/23/jim-gaffigan-show-tonight-its-going-to-be-awesome/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Kevin Youkilis Adds 2008 Jensen Award To Red Sox List</title>
		<link>http://armenianeagle.com/2008/11/22/kevin-youkilis-adds-2008-jensen-award-to-red-sox-list/</link>
		<comments>http://armenianeagle.com/2008/11/22/kevin-youkilis-adds-2008-jensen-award-to-red-sox-list/#comments</comments>
		<pubDate>Sun, 23 Nov 2008 01:21:35 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
				<category><![CDATA[Sports and Leisure]]></category>
		<category><![CDATA[baseball]]></category>
		<category><![CDATA[Boston Red Sox]]></category>
		<category><![CDATA[Dustin Pedroia]]></category>
		<category><![CDATA[Jacoby Ellsbury]]></category>
		<category><![CDATA[jon lester]]></category>
		<category><![CDATA[Kevin Youkilis]]></category>
		<category><![CDATA[Major League Baseball Rookie of the Year Award]]></category>
		<category><![CDATA[Sports]]></category>

		<guid isPermaLink="false">http://armenianeagle.com/?p=1824</guid>
		<description><![CDATA[Kevin Youkilis has been selected as the recipient of the 2008 Jackie Jensen Award, it was announced by the Boston Chapter of the Baseball Writers Association of America. Other award recipients at the Boston Baseball Dinner are: Jacoby Ellsbury - Red Sox Rookie of the Year;]]></description>
			<content:encoded><![CDATA[<p><a href="http://en.wikipedia.org/wiki/Kevin_Youkilis" title="Kevin Youkilis" rel="wikipedia" class="zem_slink">Kevin Youkilis</a> has been selected as the recipient of the 2008 Jackie Jensen Award, it was announced by the Boston Chapter of the <a href="http://www.baseballwriters.org/" title="Baseball Writers Association of America" rel="homepage" class="zem_slink">Baseball Writers Association of America</a>. </p>
<p>In addition, the Boston BBWAA announced it has named <a href="http://en.wikipedia.org/wiki/Second_baseman" title="Second baseman" rel="wikipedia" class="zem_slink">second baseman</a> <a href="http://en.wikipedia.org/wiki/Dustin_Pedroia" title="Dustin Pedroia" rel="wikipedia" class="zem_slink">Dustin Pedroia</a> as its 2008 <a href="http://en.wikipedia.org/wiki/Boston_Red_Sox" title="Boston Red Sox" rel="wikipedia" class="zem_slink">Red Sox</a> Most Valuable Player. Left-handed pitcher <a href="http://en.wikipedia.org/wiki/Jon_Lester" title="Jon Lester" rel="wikipedia" class="zem_slink">Jon Lester</a> was chosen as the Chapter&#8217;s 2008 Red Sox Pitcher of the Year.</p>
<blockquote><p>Other award recipients at the Boston Baseball Dinner are: <a href="http://en.wikipedia.org/wiki/Jacoby_Ellsbury" title="Jacoby Ellsbury" rel="wikipedia" class="zem_slink">Jacoby Ellsbury</a> &#8211; Red Sox <a href="http://en.wikipedia.org/wiki/Major_League_Baseball_Rookie_of_the_Year_Award" title="Major League Baseball Rookie of the Year Award" rel="wikipedia" class="zem_slink">Rookie of the Year</a>; <a href="http://en.wikipedia.org/wiki/Jonathan_Papelbon" title="Jonathan Papelbon" rel="wikipedia" class="zem_slink">Jonathan Papelbon</a> &#8211; Red Sox Fireman of the Year; Sean Casey &#8211; Good Guy Award; Jeff Bailey &#8211; Red Sox Minor League Award. Other award winners will be announced in the future.</p>
<p>Tickets for the dinner are priced at $150.00 each. Tickets can be purchased by making checks payable to Boston Chapter BBWAA and mailing to: Boston Chapter BBWAA, P.O. Box 7346, <a href="http://maps.google.com/maps?ll=42.7575,-71.4644444444&amp;spn=0.1,0.1&amp;q=42.7575,-71.4644444444%20%28Nashua%2C%20New%20Hampshire%29&amp;t=h" title="Nashua, New Hampshire" rel="geolocation" class="zem_slink">Nashua, NH</a>, 03060. Proceeds from the event will help the Chapter to continue supporting charitable causes. </p></blockquote>
<div class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/de1d4dee-27ac-4d98-92bf-85759f3165eb/" title="Zemified by Zemanta"><img class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_c.png?x-id=de1d4dee-27ac-4d98-92bf-85759f3165eb" alt="Reblog this post [with Zemanta]" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2008/11/22/kevin-youkilis-adds-2008-jensen-award-to-red-sox-list/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

