<?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 &#187; Tech and Web</title>
	<atom:link href="http://armenianeagle.com/category/tech-web/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>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>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>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>Manage Your Money Trends &quot;Mint&quot;y Fresh</title>
		<link>http://armenianeagle.com/2008/11/21/manage-your-money-trends-minty-fresh/</link>
		<comments>http://armenianeagle.com/2008/11/21/manage-your-money-trends-minty-fresh/#comments</comments>
		<pubDate>Sat, 22 Nov 2008 03:32:08 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
				<category><![CDATA[Tech and Web]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[Credit card]]></category>
		<category><![CDATA[Debt]]></category>
		<category><![CDATA[Financial transaction]]></category>
		<category><![CDATA[Net worth]]></category>
		<category><![CDATA[Savings account]]></category>
		<category><![CDATA[Student loan]]></category>
		<category><![CDATA[Transactional account]]></category>

		<guid isPermaLink="false">http://armenianeagle.com/?p=1814</guid>
		<description><![CDATA[Mint is free fully functional personal budget management system. It allows you to add all your accounts into their secure system and track purchases and watch trends. I have added my checking account, savings, "brokerage (another savings)", paypal and my student loans.]]></description>
			<content:encoded><![CDATA[<p><a href="http://mint.com">Mint</a> is free fully functional <a href="http://en.wikipedia.org/wiki/Personal_budget" title="Personal budget" rel="wikipedia" class="zem_slink">personal budget</a> management system. It allows you to add all your accounts into their secure system and track purchases and watch trends. I have added my <a href="http://en.wikipedia.org/wiki/Transactional_account" title="Transactional account" rel="wikipedia" class="zem_slink">checking account</a>, <a href="http://en.wikipedia.org/wiki/Savings_account" title="Savings account" rel="wikipedia" class="zem_slink">savings</a>, &#8220;brokerage (another savings)&#8221;, paypal and my <a href="http://en.wikipedia.org/wiki/Student_loan" title="Student loan" rel="wikipedia" class="zem_slink">student loans</a>. With my student loans in there, it lets me know how much I owe on them and what my <a href="http://en.wikipedia.org/wiki/Debt" title="Debt" rel="wikipedia" class="zem_slink">debt</a> to asset ratio and what my <a href="http://en.wikipedia.org/wiki/Net_worth" title="Net worth" rel="wikipedia" class="zem_slink">net worth</a> is. </p>
<p>I can name each <a href="http://en.wikipedia.org/wiki/Financial_transaction" title="Financial transaction" rel="wikipedia" class="zem_slink">transaction</a> that I make with each account, categorize it and then <a href="http://en.wikipedia.org/wiki/Tag_%28metadata%29" title="Tag (metadata)" rel="wikipedia" class="zem_slink">tag</a> them for later searching. It will send you emails when there is unusual spending on a specific account or merchant. It is a very robust system that I would highly recommend to anyone who has a lot of accounts. </p>
<div class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/cd2fe114-fe50-449f-8579-df602bc171c6/" title="Zemified by Zemanta"><img class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_c.png?x-id=cd2fe114-fe50-449f-8579-df602bc171c6" alt="Reblog this post [with Zemanta]" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2008/11/21/manage-your-money-trends-minty-fresh/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Verizon Fios Now Allows DVR Management Via Internet</title>
		<link>http://armenianeagle.com/2008/11/05/verizon-fios-now-allows-dvr-management-via-internet/</link>
		<comments>http://armenianeagle.com/2008/11/05/verizon-fios-now-allows-dvr-management-via-internet/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 07:16:20 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
				<category><![CDATA[Tech and Web]]></category>
		<category><![CDATA[Digital video recorder]]></category>
		<category><![CDATA[dvr]]></category>
		<category><![CDATA[FiOS]]></category>
		<category><![CDATA[Home Entertainment]]></category>
		<category><![CDATA[Television]]></category>
		<category><![CDATA[Verizon]]></category>
		<category><![CDATA[Verizon Communications]]></category>
		<category><![CDATA[verizon fios]]></category>

		<guid isPermaLink="false">http://armenianeagle.com/?p=1729</guid>
		<description><![CDATA[Verizon Fios just launched a new feature that I requested over a year ago. This is an amazing feature because it will allow "average" customers (not tech savvy) to go online and add/delete from the DVR while at work or on the road.]]></description>
			<content:encoded><![CDATA[<p><a href="http://en.wikipedia.org/wiki/Verizon_FiOS" title="Verizon FiOS" rel="wikipedia" class="zem_slink">Verizon Fios</a> just launched a new feature that I requested over a year ago. I am not saying that I was the only one to suggest it, but I was at least one of them.</p>
<p>Verizon now allows customers to manage their <a href="http://en.wikipedia.org/wiki/Digital_video_recorder" title="Digital video recorder" rel="wikipedia" class="zem_slink">DVR</a> from anywhere there is internet access. This is an amazing feature because it will allow &#8220;average&#8221; customers (not tech savvy) to go online and add/delete from the DVR while at work or on the road. </p>
<p>For example: Let&#8217;s say that you leave for work in the morning and at noon you find out that the President is going to be delivering a speech in a breaking news situation. You can go online and add that as one of your scheduled recordings. Don&#8217;t have room, delete other items to make space. I am not sure if it is all customers right now or just the ones with the Home Media Center plan. They might roll it out to all DVRs if the community responds well to the feature.</p>
<p>This is an exciting feature that I think many will like if it is marketed properly. I would want a summary of the encryption it will run and be able to see a certificate. If they can fully answer that question, I do not see a single negative aspect of this feature. Isn&#8217;t technology awesome that you can remotely control your DVR when you are nowhere near your TV. I knew it was possible, but I wasn&#8217;t sure how others would perceive it. Only time will tell if it will be available to all customers which I really hope they do.</p>
<div class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/2ea3a2f8-c92d-4dfe-b617-e2563d50b859/" title="Zemified by Zemanta"><img class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_c.png?x-id=2ea3a2f8-c92d-4dfe-b617-e2563d50b859" alt="Reblog this post [with Zemanta]" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2008/11/05/verizon-fios-now-allows-dvr-management-via-internet/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Tiny Paste Is An Awesome Twitter Tool</title>
		<link>http://armenianeagle.com/2008/10/24/tiny-paste-is-an-awesome-twitter-tool/</link>
		<comments>http://armenianeagle.com/2008/10/24/tiny-paste-is-an-awesome-twitter-tool/#comments</comments>
		<pubDate>Sat, 25 Oct 2008 03:45:37 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
				<category><![CDATA[Tech and Web]]></category>
		<category><![CDATA[TinyURL]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://armenianeagle.com/?p=1631</guid>
		<description><![CDATA[Tiny Paste is a tool that is used for twitter to allow you to type more than the 140 characters that twitter allows. There is also a firefox plugin for Tiny Paste which you can select the text you want in the browser, right click and convert it into a url.]]></description>
			<content:encoded><![CDATA[<p><a href="http://tinypaste.com/">Tiny Paste</a> is a tool that is used for twitter to allow you to type more than the 140 characters that twitter allows. You type what you want to say, hit submit and it will turn it into a <a href="http://www.tinyurl.com" title="TinyURL" rel="homepage" class="zem_slink">tiny url</a> that you can add into your <a href="http://www.twitter.com/" title="Twitter" rel="homepage" class="zem_slink">tweet</a>. Once the person clicks on the url, they will be able to read it from there. </p>
<p>There is also a <a href="http://tinypaste.com/extension/index.htm">firefox plugin</a> for Tiny Paste which you can select the text you want in the browser, right click and convert it into a url. Very handy when you are trying to quote something and you need more than 140 characters. </p>
<p>Enjoy!</p>
<div class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/2c3d3a49-8196-4cdd-a791-be68be048d4d/" title="Zemified by Zemanta"><img class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_c.png?x-id=2c3d3a49-8196-4cdd-a791-be68be048d4d" alt="Reblog this post [with Zemanta]" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2008/10/24/tiny-paste-is-an-awesome-twitter-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Check Out &quot;Palin As President&quot;.us &#8211; This Is Hilarious</title>
		<link>http://armenianeagle.com/2008/10/23/check-out-palin-as-presidentus-hilarious/</link>
		<comments>http://armenianeagle.com/2008/10/23/check-out-palin-as-presidentus-hilarious/#comments</comments>
		<pubDate>Fri, 24 Oct 2008 03:44:45 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
				<category><![CDATA[Entertainment and News]]></category>
		<category><![CDATA[Tech and Web]]></category>
		<category><![CDATA[John McCain]]></category>
		<category><![CDATA[office]]></category>
		<category><![CDATA[Oval Office]]></category>
		<category><![CDATA[Politics]]></category>
		<category><![CDATA[Russia]]></category>
		<category><![CDATA[Sarah Palin]]></category>

		<guid isPermaLink="false">http://armenianeagle.com/?p=1625</guid>
		<description><![CDATA[For example: There is a poster of the movie "Maverick" and someone from the Dallas Mavericks Inside the door on the left, there are burning books On the wall there are blank frames and if you click on them, she says: "Learning's hard", "Didn't graduate", "BS here I come" If you click on the curtain directly behind Palin, she says "Where did Russia go?"]]></description>
			<content:encoded><![CDATA[<p>A friend of mine told me about <a href="http://palinaspresident.us">http://palinaspresident.us</a>. You go on the site and you see <a href="http://maps.google.com/maps?ll=38.89736,-77.03742&amp;spn=0.01,0.01&amp;q=38.89736,-77.03742%20%28Oval%20Office%29&amp;t=h" title="Oval Office" rel="geolocation" class="zem_slink">the oval office</a> with <a href="http://en.wikipedia.org/wiki/Sarah_Palin" title="Sarah Palin" rel="wikipedia" class="zem_slink">Sarah Palin</a> sitting behind it. You can click on all the different objects in the office and they move or make comments. </p>
<p>For example:</p>
<ul>
<li>There is a poster of the movie &#8220;Maverick&#8221; and someone from the <a href="http://en.wikipedia.org/wiki/Dallas_Mavericks" title="Dallas Mavericks" rel="wikipedia" class="zem_slink">Dallas Mavericks</a></li>
<li>Inside the door on the left, there are burning books</li>
<li>On the wall there are blank frames and if you click on them, she says: &#8220;Learning&#8217;s hard&#8221;, &#8220;Didn&#8217;t graduate&#8221;, &#8220;BS here I come&#8221;</li>
<li>If you click on the curtain directly behind Palin, she says &#8220;Where did <a href="http://maps.google.com/maps?ll=55.75,37.6166666667&amp;spn=10.0,10.0&amp;q=55.75,37.6166666667%20%28Russia%29&amp;t=h" title="Russia" rel="geolocation" class="zem_slink">Russia</a> go?&#8221;</li>
<li>There is a 6 pack of beer on the seat that she calls &#8220;Joe 6 pack&#8221; and the light bulb she calls &#8220;Joe Light bulb&#8221;</li>
</ul>
<p>I would highly recommend checking this site out for fun</p>
<div class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/ef033d02-1c0e-4425-9a87-975a33efc147/" title="Zemified by Zemanta"><img class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_c.png?x-id=ef033d02-1c0e-4425-9a87-975a33efc147" alt="Reblog this post [with Zemanta]" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2008/10/23/check-out-palin-as-presidentus-hilarious/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pandora Music Service: Your Free Online Music Adviser</title>
		<link>http://armenianeagle.com/2008/10/20/pandora-music-service-your-free-online-music-adviser/</link>
		<comments>http://armenianeagle.com/2008/10/20/pandora-music-service-your-free-online-music-adviser/#comments</comments>
		<pubDate>Tue, 21 Oct 2008 03:49:06 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
				<category><![CDATA[Tech and Web]]></category>
		<category><![CDATA[EXAMPLES]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[Music Genome Project]]></category>
		<category><![CDATA[Pandora]]></category>
		<category><![CDATA[similar]]></category>
		<category><![CDATA[songs]]></category>

		<guid isPermaLink="false">http://armenianeagle.com/?p=1614</guid>
		<description><![CDATA[I know I am behind the times with Pandora, but some people haven't been brought into the light yet. Pandora is a free online music adviser that was created by the Music Genome Project. There are over 400 musical attributes that Pandora uses to determine how types of music are similar.]]></description>
			<content:encoded><![CDATA[<p>I know I am behind the times with <a href="http://www.pandora.com/" title="Pandora (music service)" rel="homepage" class="zem_slink">Pandora</a>, but some people haven&#8217;t been brought into the light yet. Pandora is a free online music adviser that was created by <a href="http://en.wikipedia.org/wiki/Music_Genome_Project" title="Music Genome Project" rel="wikipedia" class="zem_slink">the Music Genome Project</a>. You enter in an artist and it will return you a set list of songs that are similar. There are over 400 musical attributes that Pandora uses to determine how types of music are similar.  Examples of these are rhythm syncopation, key tonality, vocal harmonies and displayed instrumental proficiency.</p>
<p>I have been using it for about 1 hour and it has picked all songs that I have liked. I keep hearing about it from my friends, so I figured I would get on the bandwagon. I would highly recommend this FREE service if you are allowed to listen to stream music at work. </p>
<div class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/f01bf2ce-d59f-4389-91ba-2b970b967a2d/" title="Zemified by Zemanta"><img class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_c.png?x-id=f01bf2ce-d59f-4389-91ba-2b970b967a2d" alt="Reblog this post [with Zemanta]" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2008/10/20/pandora-music-service-your-free-online-music-adviser/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I Actually Was Able To Order Domino&#8217;s Pizza Online</title>
		<link>http://armenianeagle.com/2008/10/16/i-actually-was-able-to-order-dominos-pizza-online/</link>
		<comments>http://armenianeagle.com/2008/10/16/i-actually-was-able-to-order-dominos-pizza-online/#comments</comments>
		<pubDate>Fri, 17 Oct 2008 03:07:37 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
				<category><![CDATA[Tech and Web]]></category>
		<category><![CDATA[Domino]]></category>
		<category><![CDATA[dominos pizza]]></category>
		<category><![CDATA[Pizza]]></category>
		<category><![CDATA[Pizza delivery]]></category>

		<guid isPermaLink="false">http://armenianeagle.com/?p=1585</guid>
		<description><![CDATA[Tonight, my friends and I decided to order Domino's pizza for dinner. I was about to call when I remembered you can order online. I ordered the food online and we watched as the food progressed on the "Pizza Tracker".]]></description>
			<content:encoded><![CDATA[<p>Tonight, my friends and I decided to order <a href="http://www.dominos.com" title="Domino's Pizza" rel="homepage" class="zem_slink">Domino&#8217;s pizza</a> for dinner. I was about to call when I remembered you can order online. The last time I was there, my local store didn&#8217;t participate, but they finally decided to get on-board. I ordered the food online and we watched as the food progressed on the &#8220;Pizza <a href="http://en.wikipedia.org/wiki/Geo/Chevrolet_Tracker" title="Geo/Chevrolet Tracker" rel="wikipedia" class="zem_slink">Tracker</a>&#8220;. Basically they tell you when it is being prepped, cooked, boxed and in route and the times that the step was started. It is a really cool feature and was very excited to try it out. Try it for yourself and see how you like it<br />
<a href="http://www.flickr.com/photos/armenianeagle/2948006275/" title="Domino's Order Online by armenianeagle, on Flickr"><img src="http://farm4.static.flickr.com/3153/2948006275_e3d3cf8032.jpg" alt="Domino's Order Online" width="500" height="293" /></a></p>
<div class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/52ed134c-78f3-4626-b60c-2b27383d679f/" title="Zemified by Zemanta"><img class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_c.png?x-id=52ed134c-78f3-4626-b60c-2b27383d679f" alt="Reblog this post [with Zemanta]" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2008/10/16/i-actually-was-able-to-order-dominos-pizza-online/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scrabble On Facebook Is Really Fun</title>
		<link>http://armenianeagle.com/2008/10/14/scrabble-on-facebook-is-really-fun/</link>
		<comments>http://armenianeagle.com/2008/10/14/scrabble-on-facebook-is-really-fun/#comments</comments>
		<pubDate>Wed, 15 Oct 2008 03:57:56 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
				<category><![CDATA[Tech and Web]]></category>
		<category><![CDATA[Board game]]></category>
		<category><![CDATA[Electronic Arts]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[Hasbro]]></category>
		<category><![CDATA[Scrabble]]></category>
		<category><![CDATA[Scrabulous]]></category>
		<category><![CDATA[Words and Trivia]]></category>

		<guid isPermaLink="false">http://armenianeagle.com/?p=1574</guid>
		<description><![CDATA[My friend Vasken and I were bored a few weekends ago while I was in Plymouth and we played Scrabble on Facebook. You can have multiple games going at the same time and can continue to play in all your games simultaneously.]]></description>
			<content:encoded><![CDATA[<p>My friend <a href="http://neverblog.net">Vasken</a> and I were bored a few weekends ago while I was in <a href="http://maps.google.com/maps?ll=50.3713888889,-4.1425&amp;spn=0.1,0.1&amp;q=50.3713888889,-4.1425%20%28Plymouth%29&amp;t=h" title="Plymouth" rel="geolocation" class="zem_slink">Plymouth</a> and we played <a href="http://en.wikipedia.org/wiki/Scrabble" title="Scrabble" rel="wikipedia" class="zem_slink">Scrabble</a> on <a href="http://www.facebook.com/" title="Facebook" rel="homepage" class="zem_slink">Facebook</a>. It was really fun because unlike Scrabble in real life, you are bound by time constraints. In Facebook, you can play your next move whenever you have time or are online. You can have multiple games going at the same time and can continue to play in all your games simultaneously.</p>
<p>By the way, I won! Actually, he had me beat the entire game, but the last word in the top left corner, &#8220;HA&#8221; a triple word score and &#8220;AD&#8221; which gave me the points I needed to win.</p>
<p>Check it out if you have time. <a href="http://apps.facebook.com/ea_scrabble_closed/">Scrabble Beta on Facebook</a></p>
<p><a href="http://www.flickr.com/photos/armenianeagle/2943476342/" title="Scrabble Facebook by armenianeagle, on Flickr"><img src="http://farm4.static.flickr.com/3160/2943476342_b8a0bd9b43_o.png" alt="Scrabble Facebook" width="632" height="616" /></a></p>
<div class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/7b408c60-3386-424d-8de6-cb07c12b449a/" title="Zemified by Zemanta"><img class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_c.png?x-id=7b408c60-3386-424d-8de6-cb07c12b449a" alt="Reblog this post [with Zemanta]" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2008/10/14/scrabble-on-facebook-is-really-fun/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Media Temple Web Hosting, Armenian As A Language</title>
		<link>http://armenianeagle.com/2008/09/27/media-temple-web-hosting-armenian-as-a-language/</link>
		<comments>http://armenianeagle.com/2008/09/27/media-temple-web-hosting-armenian-as-a-language/#comments</comments>
		<pubDate>Sun, 28 Sep 2008 03:30:09 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
				<category><![CDATA[Armenia]]></category>
		<category><![CDATA[Tech and Web]]></category>
		<category><![CDATA[24/7]]></category>
		<category><![CDATA[Business Services]]></category>
		<category><![CDATA[Data center]]></category>
		<category><![CDATA[El Segundo]]></category>
		<category><![CDATA[El Segundo  California]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[John Resig]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[United States]]></category>
		<category><![CDATA[Website]]></category>

		<guid isPermaLink="false">http://armenianeagle.com/?p=1494</guid>
		<description><![CDATA[Yesterday, I saw a tweet from John Resig, creator of jQuery, that stated that he will be moving all of the jQuery files/data to Media Temple. Bulletproof security station and shipping/receiving areas with a Biometric security system are also in place.]]></description>
			<content:encoded><![CDATA[<p>Yesterday, I saw a <a href="http://twitter.com">tweet</a> from <a href="http://en.wikipedia.org/wiki/JQuery" title="JQuery" rel="wikipedia" class="zem_slink">John Resig</a>, creator of jQuery, that stated that he will be moving all of the jQuery files/data to <a href="http://en.wikipedia.org/wiki/Media_Temple" title="Media Temple" rel="wikipedia" class="zem_slink">Media Temple</a>. Media Temple is a Tier IV web hosting facility in <a href="http://maps.google.com/maps?ll=33.9213888889,-118.406111111&amp;spn=0.1,0.1&amp;q=33.9213888889,-118.406111111%20%28El%20Segundo%2C%20California%29&amp;t=h" title="El Segundo, California" rel="geolocation" class="zem_slink">El Segundo, CA</a> that features one the most advanced technology used for their <a href="http://en.wikipedia.org/wiki/Data_center" title="Data center" rel="wikipedia" class="zem_slink">data center</a>. </p>
<div class="quote">
<p>The space is in approximately 7,000 square feet currently with room for expansion up to 40,000 square feet. The center is open <a href="http://en.wikipedia.org/wiki/24/7" title="24/7" rel="wikipedia" class="zem_slink">24 hours a day, 7 days a week</a>, 365 days per year. On-site armed security is around-the-clock. They monitor the alarm system and security cameras that are on all perimeter points of ingress/egress to the building. Bulletproof security station and shipping/receiving areas with a Biometric security system are also in place. Our personnel require authorized escorted visitations. 24” raised floor manufactured by Maxcess covering every square foot of our cages, <a href="http://en.wikipedia.org/wiki/Medium-density_fibreboard" title="Medium-density fibreboard" rel="wikipedia" class="zem_slink">MDF</a> and Network Operation Center. </p>
</div>
<p> &#8211; <a href="http://www.mediatemple.net/company/aboutus/technology-infrastructure-EL-IDC3.php">source</a></p>
<p>When I was reading up about them, it says:<br />
&#8220;English is our primary language. We also speak Spanish, Japanese, Swedish, Korean, Polish, Russian, Romanian, <strong>Armenian</strong> and a few other languages.&#8221; &#8211; <a href="http://www.mediatemple.net/company/aboutus/">source</a></p>
<p>That&#8217;s awesome, but out of all the other languages, Italian or German would be next on the list, I would think. It must be since they are located about 30 miles away from Glendale, CA which has the largest concentration of Armenian-American population. Just thought that was pretty funny.</p>
<p>Speaking of jQuery, I am heading to the jQuery Conference in Boston in the am</p>
<div class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/1b6a899b-51b7-46dd-95aa-015475819282/" title="Zemified by Zemanta"><img class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_c.png?x-id=1b6a899b-51b7-46dd-95aa-015475819282" alt="Reblog this post [with Zemanta]" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2008/09/27/media-temple-web-hosting-armenian-as-a-language/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Zemanta Is My New Favorite Tool As A Blogger</title>
		<link>http://armenianeagle.com/2008/09/25/zemanta-is-my-new-favorite-tool-as-a-blogger/</link>
		<comments>http://armenianeagle.com/2008/09/25/zemanta-is-my-new-favorite-tool-as-a-blogger/#comments</comments>
		<pubDate>Fri, 26 Sep 2008 03:31:19 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
				<category><![CDATA[Tech and Web]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[Creative Commons]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[Keyword]]></category>
		<category><![CDATA[List of Firefox extensions]]></category>
		<category><![CDATA[Plug-in]]></category>
		<category><![CDATA[Tag]]></category>
		<category><![CDATA[Web content]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Zemanta]]></category>

		<guid isPermaLink="false">http://armenianeagle.com/?p=1478</guid>
		<description><![CDATA[I stumbled upon Zemanta the other day and have grown to love this blogging tool. Below those boxes in the tags section is a set of tags that are auto generated based on your content.]]></description>
			<content:encoded><![CDATA[<p>I stumbled upon <a href="http://www.zemanta.com" title="Zemanta" rel="homepage" class="zem_slink">Zemanta</a> the other day and have grown to love this blogging tool. Personally, I have it as a <a href="http://wordpress.org/" title="WordPress" rel="homepage" class="zem_slink">WordPress</a> <a href="http://en.wikipedia.org/wiki/Plug-in_%28computing%29" title="Plug-in (computing)" rel="wikipedia" class="zem_slink">plugin</a> which works out well. It appears to the right of the area in which you write the content of your post. The plugin grabs your content and pulls out keywords to search the internet against. If it finds anything, it will place images that relate to the content that you are writing about. Most of these images are from flickr, other photosharing software and sites. You can click on the photo and it will automatically place it into your content. </p>
<p>Zemanta also provides two other key components to this tool. Below the posting area, links will appear that relate to your content as well. You can click on the boxes that appear and see where they are coming from, for example: Wikipedia, main site, imdb, maps, youtube and more. Below those boxes in the tags section is a set of tags that are auto generated based on your content. You click the <a href="http://en.wikipedia.org/wiki/Tag_%28metadata%29" title="Tag (metadata)" rel="wikipedia" class="zem_slink">tag</a> and it adds the tags for you.</p>
<p>This is a great tool because, it is very easy to be lazy while blogging and not want to link to sites or add tags, but this makes it a lot easier and faster. I would highly recommend it to any blogger, however, if you have a lot of firefox addons (depending on the addon), it might slow down your blogging because it uses all your <a href="http://en.wikipedia.org/wiki/Central_processing_unit" title="Central processing unit" rel="wikipedia" class="zem_slink">CPU</a> usage. I have 2Gb of memory in my laptop and it ran slow with one or more of my firefox plugins. Just informing my readers of what I experienced. <img src='http://armenianeagle.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/0be4f875-3e97-47e2-871f-3aff61a7c3be/" title="Zemified by Zemanta"><img class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_c.png?x-id=0be4f875-3e97-47e2-871f-3aff61a7c3be" alt="Reblog this post [with Zemanta]" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2008/09/25/zemanta-is-my-new-favorite-tool-as-a-blogger/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Microsoft Sucks At Life And Delayed My Work Day</title>
		<link>http://armenianeagle.com/2008/09/15/microsoft-sucks-at-life-and-delayed-my-work-day/</link>
		<comments>http://armenianeagle.com/2008/09/15/microsoft-sucks-at-life-and-delayed-my-work-day/#comments</comments>
		<pubDate>Tue, 16 Sep 2008 03:53:03 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
				<category><![CDATA[Tech and Web]]></category>
		<category><![CDATA[After I]]></category>
		<category><![CDATA[Anyways I]]></category>
		<category><![CDATA[CDs]]></category>
		<category><![CDATA[Granted]]></category>
		<category><![CDATA[In Microsoft's]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[key]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[Network Administrator]]></category>
		<category><![CDATA[office]]></category>
		<category><![CDATA[Our CFO's Outlook]]></category>
		<category><![CDATA[product]]></category>
		<category><![CDATA[Since Microsoft]]></category>

		<guid isPermaLink="false">http://armenianeagle.com/?p=1419</guid>
		<description><![CDATA[After I entered it, I realized that I needed his product key, but it was already installing so I figure when I went to activate it, I could change the key, but it turns out you can't do that anymore.]]></description>
			<content:encoded><![CDATA[<p>With my new position, I am not only a web developer, but also the Network Administrator. As a part of that, I sometimes need to fix computers. Our CFO&#8217;s Outlook would throw an error every time he closed it and he finally asked for my help. At first I tried to repair the installation, but that didn&#8217;t fix the problem. I knew that I would have to remove and re-install Office. Since we manage many computers in our office, we have many Office installation CD&#8217;s. I figured that our license would cover all of the computers, however, his computer had it&#8217;s own license of Office. While he was in a meeting, I reinstalled the suite using the other product key. After I entered it, I realized that I needed his product key, but it was already installing so I figure when I went to activate it, I could change the key, but it turns out you can&#8217;t do that anymore.</p>
<p>As far as I remember, you would be able to change the product key on activation on older versions of Office. Anyways, I call Microsoft asking how I can change the product key and they told me that I would have to uninstall it and reinstall it. He said that was for our protection, but I didn&#8217;t see the point in it. I would understand if it had already been activated, but it did not go through activation yet. It seems to me that someone might have more than one license of a software and may grab the wrong key code. Since Microsoft accepts that as a valid key, it continues through the installation process, but doesn&#8217;t inform you until you go to activate it that it is already active. In Microsoft&#8217;s bad attempt at making the software secure they wasted valuable time I could have spent programming. Granted it was only an hour of my time back and forth, but that&#8217;s not the point. </p>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2008/09/15/microsoft-sucks-at-life-and-delayed-my-work-day/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Office 2007: Content Controls Are Very Helpful</title>
		<link>http://armenianeagle.com/2008/09/09/microsoft-office-2007-content-controls-are-very-helpful/</link>
		<comments>http://armenianeagle.com/2008/09/09/microsoft-office-2007-content-controls-are-very-helpful/#comments</comments>
		<pubDate>Wed, 10 Sep 2008 03:40:03 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
				<category><![CDATA[Tech and Web]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[After I]]></category>
		<category><![CDATA[Associated Hours]]></category>
		<category><![CDATA[controls]]></category>
		<category><![CDATA[Itemized Task List]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[Microsoft Office]]></category>
		<category><![CDATA[office]]></category>
		<category><![CDATA[PDF]]></category>
		<category><![CDATA[proposal]]></category>
		<category><![CDATA[Software Costs]]></category>
		<category><![CDATA[template]]></category>

		<guid isPermaLink="false">http://armenianeagle.com/?p=1390</guid>
		<description><![CDATA[After I created a software plan, I needed a proposal template that could help. The proposal I chose had section to mark off "Software Costs" and "Itemized Task List and Associated Hours" to make the proposal more professional.]]></description>
			<content:encoded><![CDATA[<p>One of my friends has a business deal that he wanted me to be a part of for my web development skills. The business is very straight forward and execution should be nearly flawless, but it&#8217;s the web, so never flawless.</p>
<p>After I created a software plan, I needed a proposal template that could help. I went into Microsoft word and started a new document. On the left, I scrolled down to the bottom labeled &#8220;more categories&#8221; and clicked on proposals. You can choose any of them which will best suite your needs.  The template is fully laid out with examples of what each section should contain. It also includes the ability to add a date picker, text fields, rich text, combo boxes and drop down options. The proposal I chose had section to mark off &#8220;Software Costs&#8221; and &#8220;Itemized Task List and Associated Hours&#8221; to make the proposal more professional. </p>
<p>I think Microsoft realized that if they can turn it into a PDF like controls, more people would use Office than Adobe. I will figure out more ways to use templates and content controls and learn some of the new advanced features in Microsoft Office.</p>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2008/09/09/microsoft-office-2007-content-controls-are-very-helpful/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Convert A Youtube Video And Edit The File</title>
		<link>http://armenianeagle.com/2008/09/06/how-to-convert-a-youtube-video-and-edit-the-file/</link>
		<comments>http://armenianeagle.com/2008/09/06/how-to-convert-a-youtube-video-and-edit-the-file/#comments</comments>
		<pubDate>Sun, 07 Sep 2008 01:45:41 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
				<category><![CDATA[Tech and Web]]></category>
		<category><![CDATA[Adobe Premiere Pro]]></category>
		<category><![CDATA[Adobe Soundbooth]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Apple's Garage Band]]></category>
		<category><![CDATA[Audio]]></category>
		<category><![CDATA[CD]]></category>
		<category><![CDATA[convert]]></category>
		<category><![CDATA[Didn't]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[Final Cut Pro]]></category>
		<category><![CDATA[Im]]></category>
		<category><![CDATA[iMovie]]></category>
		<category><![CDATA[powerpoint]]></category>
		<category><![CDATA[Save]]></category>
		<category><![CDATA[Soundbooth]]></category>
		<category><![CDATA[Using KeepVid]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[Windows Movie Maker]]></category>
		<category><![CDATA[Windows Sound Recorder]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://armenianeagle.com/?p=1370</guid>
		<description><![CDATA[One of my friends asked me if I knew of a way to take a Youtube video and extract the audio off of it so they could burn it onto a CD for a wedding.]]></description>
			<content:encoded><![CDATA[<p>One of my friends asked me if I knew of a way to take a Youtube video and extract the audio off of it so they could burn it onto a CD for a wedding. I&#8217;m going to tell you that the video was their own video that they do not have the original anymore. </p>
<p>Using <a href="http://keepvid.com">KeepVid.com</a> I was able to download the high quality video file (video.mp4) and imported it into Adobe Soundbooth. Soundbooth will pull out just the audio file and then you can edit it how you see fit. For me, I had to make edits to the audio and then I hit &#8220;File -> Save&#8221; and it allowed me to convert it into a mp3 so my friend could add it into PowerPoint. </p>
<p>Didn&#8217;t take documented steps, but it is very easy to accomplish. You will also require Adobe Soundbooth for this, however, you can use free converters to convert the mp4 into a mpg that just included the audio track. You can then import it into Windows Sound Recorder or Apple&#8217;s Garage Band. If you want to import the video, I would recommend either Final Cut Pro or iMovie for an Apple and Adobe Premiere Pro for Windows. Windows Movie Maker is alright for basic movies, but if you want to do anything advanced, you want to use one of the other programs since that is what they are designed for. </p>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2008/09/06/how-to-convert-a-youtube-video-and-edit-the-file/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>jQuery Conference In Boston, MA On September 28th, 2008</title>
		<link>http://armenianeagle.com/2008/08/22/jquery-conference-in-boston-ma-on-september-28th-2008/</link>
		<comments>http://armenianeagle.com/2008/08/22/jquery-conference-in-boston-ma-on-september-28th-2008/#comments</comments>
		<pubDate>Sat, 23 Aug 2008 03:53:17 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
				<category><![CDATA[Tech and Web]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[attending]]></category>
		<category><![CDATA[boston]]></category>
		<category><![CDATA[Check]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[http://events.jquery.com]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[JavaScript Library]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://armenianeagle.com/?p=1291</guid>
		<description><![CDATA[As a jQuery user I like to learn new and exciting uses of the framework and the jQuery conference should be educational. "jQuery is a fast, concise, JavaScript Library that simplifies how you traverse HTML documents, handle events, perform animations, and add Ajax interactions to your web pages.]]></description>
			<content:encoded><![CDATA[<p>As a <a href="http://armenianeagle.com/2007/08/24/jquery-114-release-faster-better-and-prepped/">jQuery user</a> I like to learn new and exciting uses of the framework and the jQuery conference should be educational. However, money can normally be a deterrent from attending. Since it is in Boston and the cost is only $50, it makes it easier to go. My boss found out that I was going and told myself and two co-workers to submit our receipts so work could expense it.</p>
<p>&#8220;jQuery is a fast, concise, JavaScript Library that simplifies how you traverse HTML documents, handle events, perform animations, and add Ajax interactions to your web pages. jQuery is designed to change the way that you write JavaScript.&#8221; &#8211; <a href="http://jquery.com">source</a></p>
<p>They still haven&#8217;t determined a location yet, but if you would like to attend, check out <a href="http://events.jquery.com">http://events.jquery.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2008/08/22/jquery-conference-in-boston-ma-on-september-28th-2008/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>MySQL 5 Does Not Work With &#8216;Comma Joins&#8217;</title>
		<link>http://armenianeagle.com/2008/08/02/mysql-5-does-not-work-with-comma-joins/</link>
		<comments>http://armenianeagle.com/2008/08/02/mysql-5-does-not-work-with-comma-joins/#comments</comments>
		<pubDate>Sat, 02 Aug 2008 20:11:26 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
				<category><![CDATA[Tech and Web]]></category>
		<category><![CDATA[5]]></category>
		<category><![CDATA[Comma Joins]]></category>
		<category><![CDATA[Hope]]></category>
		<category><![CDATA[INNER JOIN]]></category>
		<category><![CDATA[INNER JOINS]]></category>
		<category><![CDATA[joins]]></category>
		<category><![CDATA[LEFT JOINS]]></category>
		<category><![CDATA[Luckily]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[SELECT FROM]]></category>
		<category><![CDATA[Thanks Matt]]></category>
		<category><![CDATA[u]]></category>
		<category><![CDATA[Users]]></category>

		<guid isPermaLink="false">http://armenianeagle.com/?p=974</guid>
		<description><![CDATA[SELECT * FROM users as u, user_details as d WHERE u.id = d.user_id A comma separated joins are not as efficient nor are they the norm in web development. SELECT * FROM users as u INNER JOIN user_details as d ON u.id = d.user_id Hope this helps!]]></description>
			<content:encoded><![CDATA[<p>At work, we are redesigning one of our websites and we couldn&#8217;t completely get rid of our old data since other websites/cms still use it. On the new site, we standardized our database structure, used transactions and started using views once we converted from mysql 4 to mysql 5. The change went pretty smooth until we realized one of the changes in mysql 5, caused a lot of problems with our old code. Luckily it was on our development server and were able to make the changes before we went live with mysql 5. </p>
<p>The code was originally written around 1999 and contained Comma Joins.<br />
<strong>SELECT * FROM users as u, user_details as d WHERE u.id = d.user_id</strong><br />
A comma separated joins are not as efficient nor are they the norm in web development. The &#8220;as&#8221; in &#8220;users as u&#8221; is not required, but that is my style.</p>
<p>If you have any of those joins and you move to mysql 5, you will run into some issues. You will want to convert those to INNER JOINS or LEFT JOINS, etc&#8230;</p>
<p><strong>SELECT * FROM users as u INNER JOIN user_details as d ON u.id = d.user_id</strong></p>
<p>Hope this helps!</p>
<p>*Thanks Matt for noticing the missing FROM</p>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2008/08/02/mysql-5-does-not-work-with-comma-joins/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Google Walking: Google Maps Makes Walking More Convient</title>
		<link>http://armenianeagle.com/2008/07/27/google-walking-google-maps-makes-walking-more-convient/</link>
		<comments>http://armenianeagle.com/2008/07/27/google-walking-google-maps-makes-walking-more-convient/#comments</comments>
		<pubDate>Mon, 28 Jul 2008 03:24:29 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
				<category><![CDATA[Sports and Leisure]]></category>
		<category><![CDATA[Tech and Web]]></category>
		<category><![CDATA[AWESOME]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[PATH]]></category>
		<category><![CDATA[There's]]></category>
		<category><![CDATA[Travel]]></category>
		<category><![CDATA[walking]]></category>

		<guid isPermaLink="false">http://armenianeagle.com/?p=1140</guid>
		<description><![CDATA[I don't know when Google launched this into beta, but it is awesome.]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t know when Google launched this into beta, but it is awesome. Google calculates how long and what path you should travel when walking. There&#8217;s not much more to say other than awesome.</p>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2008/07/27/google-walking-google-maps-makes-walking-more-convient/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting My Credit Score/Report Was Really Aggravating</title>
		<link>http://armenianeagle.com/2008/07/25/getting-my-credit-scorereport-was-really-aggravating/</link>
		<comments>http://armenianeagle.com/2008/07/25/getting-my-credit-scorereport-was-really-aggravating/#comments</comments>
		<pubDate>Sat, 26 Jul 2008 03:52:38 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
				<category><![CDATA[Rants and Randomness]]></category>
		<category><![CDATA[Tech and Web]]></category>
		<category><![CDATA[asp]]></category>
		<category><![CDATA[Finally I]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Looking]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[Password]]></category>
		<category><![CDATA[Since ASP]]></category>
		<category><![CDATA[time]]></category>
		<category><![CDATA[Vasken]]></category>
		<category><![CDATA[When I]]></category>
		<category><![CDATA[works]]></category>

		<guid isPermaLink="false">http://armenianeagle.com/?p=1131</guid>
		<description><![CDATA[I was looking into my credit score/report on the advice of my friend Vasken and I had a lot of trouble with the process. When I loaded IE, it worked fine but at the same time, Firefox wouldn't work.]]></description>
			<content:encoded><![CDATA[<p>I was looking into my credit score/report on the advice of my friend <a href="http://neverblog.net">Vasken</a> and I had a lot of trouble with the process. </p>
<p>First, the password only has one field which you can not verify you typed it right because it is in password format. Next, they won&#8217;t let you use special characters which limits what you can increase your personal information online. </p>
<p><a href="http://www.flickr.com/photos/armenianeagle/2704164376/" title="Equifax by armenianeagle, on Flickr"><img src="http://farm4.static.flickr.com/3013/2704164376_273e8ef90b_o.png" width="514" height="321" alt="Equifax" /></a></p>
<p>Finally, I get into the system, and it throws me (what looks like) an ASP.net JavaScript error. Since ASP is a Microsoft framework, it &#8220;only works&#8221; in Internet Explorer and I was using Firefox. When I loaded IE, it worked fine but at the same time, Firefox wouldn&#8217;t work.<br />
<a href="http://www.flickr.com/photos/armenianeagle/2704164436/" title="Equifax1 by armenianeagle, on Flickr"><img src="http://farm4.static.flickr.com/3239/2704164436_48aca7be67_o.png" width="619" height="202" alt="Equifax1" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2008/07/25/getting-my-credit-scorereport-was-really-aggravating/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mario Kart Wii: Race Against Friends (Registering A License)</title>
		<link>http://armenianeagle.com/2008/07/23/mario-kart-wii-race-against-friends-registering-a-license/</link>
		<comments>http://armenianeagle.com/2008/07/23/mario-kart-wii-race-against-friends-registering-a-license/#comments</comments>
		<pubDate>Thu, 24 Jul 2008 03:29:00 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
				<category><![CDATA[Tech and Web]]></category>
		<category><![CDATA[Brigham's]]></category>
		<category><![CDATA[Choose]]></category>
		<category><![CDATA[Choose Friends]]></category>
		<category><![CDATA[close]]></category>
		<category><![CDATA[friend]]></category>
		<category><![CDATA[kart]]></category>
		<category><![CDATA[Kart License Number]]></category>
		<category><![CDATA[Kate]]></category>
		<category><![CDATA[Kev]]></category>
		<category><![CDATA[Kevin]]></category>
		<category><![CDATA[mario]]></category>
		<category><![CDATA[Mario Kart]]></category>
		<category><![CDATA[Mario Kart Tourneys]]></category>
		<category><![CDATA[Michelle]]></category>
		<category><![CDATA[Register]]></category>
		<category><![CDATA[Repeat]]></category>
		<category><![CDATA[room]]></category>
		<category><![CDATA[Type]]></category>
		<category><![CDATA[Usually]]></category>
		<category><![CDATA[WFC]]></category>
		<category><![CDATA[wii]]></category>

		<guid isPermaLink="false">http://armenianeagle.com/?p=1123</guid>
		<description><![CDATA[Choose 1 player WFC Choose Friends Register Type in your friends "Kart License Number" Repeat the process on your friends end Go back Open a room and have friend join the room Close the room and race (amazing details I have for you!) My friends Kevin and Kate were here as well.]]></description>
			<content:encoded><![CDATA[<p>I have had my Wii for 1 1/2 years and this is the first time I have tried to register a Wii for the console, never mind Mario Kart. However, my friend Michelle wanted me to play against her, so I went through the process and it was awesome. </p>
<ol>
<li>Choose 1 player WFC</li>
<li>Choose Friends</li>
<li>Register</li>
<li>Type in your friends &#8220;Kart License Number&#8221;</li>
<li>Repeat the process on your friends end</li>
<li>Go back</li>
<li>Open a room and have friend join the room</li>
<li>Close the room and race</li>
</ol>
<p>(amazing details I have for you!)</p>
<p>My friends Kevin and Kate were here as well. They came bearing &#8220;gifts&#8221; from Brighams, which was awesome. We usually get into Mario Kart Tourneys and I usually win. </p>
<p>So for all those Mario Kart 64 memories Kev&#8230;.actually, Kate thought I should write something about her in here, so I did <img src='http://armenianeagle.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2008/07/23/mario-kart-wii-race-against-friends-registering-a-license/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook Launches Beta New Layout</title>
		<link>http://armenianeagle.com/2008/07/22/facebook-launches-beta-new-layout/</link>
		<comments>http://armenianeagle.com/2008/07/22/facebook-launches-beta-new-layout/#comments</comments>
		<pubDate>Wed, 23 Jul 2008 03:45:55 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
				<category><![CDATA[Tech and Web]]></category>
		<category><![CDATA[Check]]></category>
		<category><![CDATA[Enjoy]]></category>
		<category><![CDATA[http://new.facebook.com]]></category>

		<guid isPermaLink="false">http://armenianeagle.com/?p=1120</guid>
		<description><![CDATA[Go to http://new.facebook.com and check it out.]]></description>
			<content:encoded><![CDATA[<p>Go to <a href="http://new.facebook.com">http://new.facebook.com</a> and check it out. I really enjoy it.</p>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2008/07/22/facebook-launches-beta-new-layout/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Brigham&#8217;s Ice Cream Needs A Better Remodeling Page</title>
		<link>http://armenianeagle.com/2008/07/04/brighams-ice-cream-needs-a-better-remodeling-page/</link>
		<comments>http://armenianeagle.com/2008/07/04/brighams-ice-cream-needs-a-better-remodeling-page/#comments</comments>
		<pubDate>Sat, 05 Jul 2008 03:59:32 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
				<category><![CDATA[Food and Drink]]></category>
		<category><![CDATA[Tech and Web]]></category>
		<category><![CDATA[Also All]]></category>
		<category><![CDATA[America]]></category>
		<category><![CDATA[arlington]]></category>
		<category><![CDATA[boston]]></category>
		<category><![CDATA[Brigham]]></category>
		<category><![CDATA[Brigham's]]></category>
		<category><![CDATA[Brigham's Restaurant]]></category>
		<category><![CDATA[Buttricks]]></category>
		<category><![CDATA[cream]]></category>
		<category><![CDATA[England]]></category>
		<category><![CDATA[fired]]></category>
		<category><![CDATA[friends]]></category>
		<category><![CDATA[Hood]]></category>
		<category><![CDATA[ice]]></category>
		<category><![CDATA[ice cream]]></category>
		<category><![CDATA[Ice Cream Parlor]]></category>
		<category><![CDATA[In High School I]]></category>
		<category><![CDATA[Mill St]]></category>
		<category><![CDATA[My Grandmother]]></category>
		<category><![CDATA[Step]]></category>
		<category><![CDATA[worked]]></category>

		<guid isPermaLink="false">http://armenianeagle.com/?p=1079</guid>
		<description><![CDATA[In High School, I worked at Boston based "Brigham's Restaurant and Ice Cream Parlor" on Mill St in Arlington. The plant where the Ice Cream is made is connected to the restaurant I worked at by underground tunnels.]]></description>
			<content:encoded><![CDATA[<p>In High School, I worked at Boston based &#8220;<a href="http://www.brighams.com/">Brigham&#8217;s Restaurant and Ice Cream Parlor</a>&#8221; on Mill St in Arlington. My Grandmother worked at Brigham&#8217;s when it was Buttricks. The plant where the Ice Cream is made is connected to the restaurant I worked at by underground tunnels. It was the freshest Ice Cream anywhere since it practically just came off the &#8220;belt&#8221;. </p>
<p>They had an interesting flash page for the site and it was very interactive. However, last week, Hood legally bought Brigham&#8217;s. Friends who still work there told me that all of the &#8220;recipes&#8221; and &#8220;brands&#8221; will stay the same. I doubt that, they fired the ice cream makers. Also, All of the other workers were fired including the webmaster&#8230;see below:<br />
<a href="http://www.flickr.com/photos/armenianeagle/2637580889/" title="Brighams copy by armenianeagle, on Flickr"><img src="http://farm4.static.flickr.com/3188/2637580889_d93743066b.jpg" width="500" height="174" alt="Brighams copy" /></a></p>
<p>If you are redoing the website because of the buyout, at least keep the so-called branding for the homepage. Step 1 to Hood ruining that which the Boston area loves.</p>
<p>I know this isn&#8217;t about America and it&#8217;s independence from England, but there was a lot of things going on today.</p>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2008/07/04/brighams-ice-cream-needs-a-better-remodeling-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I Am Now Twittering Throughout My Days</title>
		<link>http://armenianeagle.com/2008/07/02/i-am-now-twittering-throughout-my-days/</link>
		<comments>http://armenianeagle.com/2008/07/02/i-am-now-twittering-throughout-my-days/#comments</comments>
		<pubDate>Wed, 02 Jul 2008 23:38:56 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
				<category><![CDATA[Tech and Web]]></category>
		<category><![CDATA[Blackberry]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[Days]]></category>
		<category><![CDATA[December]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[Twitterberry]]></category>
		<category><![CDATA[TwitterFox]]></category>
		<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://armenianeagle.com/?p=1077</guid>
		<description><![CDATA[Now that I have found "TwitterFox" for Firefox and "Twitterberry" for my Blackberry, it makes it very easy to send my updates. I hopefully will continue to update on a regular basis now that I have it on my Blackberry and Firefox.]]></description>
			<content:encoded><![CDATA[<p>I know that I am just about two years late on the twitter phenomenon, but I am starting on it. Now that I have found &#8220;TwitterFox&#8221; for Firefox and &#8220;Twitterberry&#8221; for my Blackberry, it makes it very easy to send my updates. </p>
<p>I don&#8217;t really remember to update all the time, but I will get there. I have only 8 updates total, but I was the same way with this blog. I would update every few weeks, then every few days. I have now been blogging at least once a day since December 01, 2006. </p>
<p>I hopefully will continue to update on a regular basis now that I have it on my Blackberry and Firefox. <img src='http://armenianeagle.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2008/07/02/i-am-now-twittering-throughout-my-days/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Fix MySQL Tables That Have Crashed</title>
		<link>http://armenianeagle.com/2008/06/22/how-to-fix-mysql-tables-that-have-crashed/</link>
		<comments>http://armenianeagle.com/2008/06/22/how-to-fix-mysql-tables-that-have-crashed/#comments</comments>
		<pubDate>Mon, 23 Jun 2008 03:48:02 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
				<category><![CDATA[Tech and Web]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[helps]]></category>
		<category><![CDATA[Hope]]></category>
		<category><![CDATA[joe]]></category>
		<category><![CDATA[LIVE]]></category>
		<category><![CDATA[MYI]]></category>
		<category><![CDATA[site]]></category>

		<guid isPermaLink="false">http://armenianeagle.com/?p=1065</guid>
		<description><![CDATA[The other day at work there one of the tables crashed on us in our development site and we were unable to access any of the data. After looking up the documentation we realized that if you shut down the mysql server and go into the directory that the data is located, you can type in the following command, it will fix the table without touching the data.]]></description>
			<content:encoded><![CDATA[<p>The other day at work there one of the tables crashed on us in our development site and we were unable to access any of the data. I was going to just replace the data from our live site, but my co-worker Joe suggested that we figure out a solution in case it happens on live. </p>
<p>After looking up the <a href="http://dev.mysql.com/doc/refman/5.0/en/repair.html">documentation</a> we realized that if you shut down the mysql server and go into the directory that the data is located, you can type in the following command, it will fix the table without touching the data.</p>
<p>&#8220;myisamchk -r -q name_of_table.MYI&#8221;</p>
<p>Hope this helps.</p>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2008/06/22/how-to-fix-mysql-tables-that-have-crashed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox 3 Was &#8216;Semi&#8217; Released Today&#8230;.</title>
		<link>http://armenianeagle.com/2008/06/17/firefox-3-was-semi-released-today/</link>
		<comments>http://armenianeagle.com/2008/06/17/firefox-3-was-semi-released-today/#comments</comments>
		<pubDate>Wed, 18 Jun 2008 02:58:23 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
				<category><![CDATA[Tech and Web]]></category>
		<category><![CDATA[boston]]></category>
		<category><![CDATA[downloads]]></category>
		<category><![CDATA[Except]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[million]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[The Boston Celtics]]></category>
		<category><![CDATA[today]]></category>
		<category><![CDATA[UPDATE]]></category>
		<category><![CDATA[updated]]></category>

		<guid isPermaLink="false">http://armenianeagle.com/?p=1056</guid>
		<description><![CDATA[Except for the fact that the Mozilla website was down most of the day, Firefox 3 was released today and it is looking real nice. I decided to spend the time with my parents and mainly my father instead of going into Boston which is what my original plan was.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/armenianeagle/2574403746/" title="firefox_logo by armenianeagle, on Flickr"><img src="http://farm4.static.flickr.com/3109/2574403746_55e6ecefb2.jpg" width="200" height="174" alt="firefox_logo" align="right"/></a>Except for the fact that the Mozilla website was down most of the day, Firefox 3 was released today and it is looking real nice. Most of my extensions were compatible and the rest will be updated hopefully soon.</p>
<p>The Boston Celtics are currently closing in on their 17th championship. I decided to spend the time with my parents and mainly my father instead of going into Boston which is what my original plan was.</p>
<p><strong>* Update: The total for today is just shy of 4 million downloads.</strong></p>
<div style="clear:right;"></div>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2008/06/17/firefox-3-was-semi-released-today/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Software Development Process: Cartoon</title>
		<link>http://armenianeagle.com/2008/06/06/software-development-process-cartoon/</link>
		<comments>http://armenianeagle.com/2008/06/06/software-development-process-cartoon/#comments</comments>
		<pubDate>Sat, 07 Jun 2008 03:54:29 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
				<category><![CDATA[Tech and Web]]></category>
		<category><![CDATA[Click]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[larger]]></category>
		<category><![CDATA[true]]></category>
		<category><![CDATA[version]]></category>

		<guid isPermaLink="false">http://armenianeagle.com/?p=1049</guid>
		<description><![CDATA[I used to have this up at my old job and I love how true it really is!]]></description>
			<content:encoded><![CDATA[<p>I used to have this up at my old job and I love how true it really is!</p>
<p>Click the image for larger version.<br />
<a href="http://www.flickr.com/photos/armenianeagle/2557949564/" title="project by armenianeagle, on Flickr"><img src="http://farm4.static.flickr.com/3096/2557949564_213e768f2f.jpg" width="500" height="375" alt="project" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2008/06/06/software-development-process-cartoon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Need Help Finding The Right Web Hosting?</title>
		<link>http://armenianeagle.com/2008/05/20/need-help-finding-the-right-web-hosting/</link>
		<comments>http://armenianeagle.com/2008/05/20/need-help-finding-the-right-web-hosting/#comments</comments>
		<pubDate>Wed, 21 May 2008 03:26:42 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
				<category><![CDATA[Tech and Web]]></category>
		<category><![CDATA[Check]]></category>
		<category><![CDATA[companies]]></category>
		<category><![CDATA[DreamHost]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[Im]]></category>
		<category><![CDATA[October]]></category>
		<category><![CDATA[pal]]></category>
		<category><![CDATA[tells]]></category>
		<category><![CDATA[Unlimited]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Web Hosting Pal]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://armenianeagle.com/?p=1027</guid>
		<description><![CDATA[For me, the right web hosting solution was Dreamhost, but you may want something different. "Web Hosting Pal" is a website that helps you to determine which hosting company/plan is right for you. Once you click on a hosting company, "Web Hosting Pal" gives you more information about them.]]></description>
			<content:encoded><![CDATA[<p>For me, the right web hosting solution was <a href="http://www.dreamhost.com">Dreamhost</a>, but you may want something different. </p>
<p>The following is a sponsored post. <a href="http://www.webhostingpal.com/">&#8220;Web Hosting Pal&#8221;</a> is a website that helps you to determine which hosting company/plan is right for you. It gives you a list of web hosting companies that have been rating in the top 10 based on price and services. Once you click on a hosting company, <a href="http://www.webhostingpal.com/">&#8220;Web Hosting Pal&#8221;</a> gives you more information about them. Tells you what services they offer with the advantages of each. </p>
<p>You want to look for a web hosting company that gives you the best options, not just the most options. Unlimited use of the company&#8217;s music library is useless unless you are building a site for an elementary school library and music is fun to have on the kids page. For someone like me, who builds web applications, paying for that wouldn&#8217;t be worth it. However, if they offered me unlimited domain hosting to my data limit is really helpful to me, so Dreamhost works. Also for me, One click install of WordPress really helps on the different blogs I host for everyone else (not this one). I know, Dreamhost has had a few problems lately, but I am not running a high profile business off of them.</p>
<p>The only problem with <a href="http://www.webhostingpal.com/">&#8220;Web Hosting Pal&#8221;</a>, is they haven&#8217;t updated their top 10 since October of 2005, so I&#8217;m not sure how accurate their prices are. Check out <a href="http://www.webhostingpal.com/">&#8220;Web Hosting Pal&#8221;</a> and also look at Dreamhost because I really enjoy them.</p>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2008/05/20/need-help-finding-the-right-web-hosting/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Restarting SVN On A Unix Box: Is There An Easier Way?</title>
		<link>http://armenianeagle.com/2008/05/15/restarting-svn-on-unix-box-is-there-an-easier-way/</link>
		<comments>http://armenianeagle.com/2008/05/15/restarting-svn-on-unix-box-is-there-an-easier-way/#comments</comments>
		<pubDate>Fri, 16 May 2008 03:36:29 +0000</pubDate>
		<dc:creator>Timothy Haroutunian</dc:creator>
				<category><![CDATA[Tech and Web]]></category>
		<category><![CDATA[/sbin/service]]></category>
		<category><![CDATA[However I]]></category>
		<category><![CDATA[Luckily]]></category>
		<category><![CDATA[restart]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[svn]]></category>
		<category><![CDATA[way]]></category>

		<guid isPermaLink="false">http://armenianeagle.com/?p=1019</guid>
		<description><![CDATA[The only way that I have figured out to accomplish this is to restart our entire server and restart it. I was hoping that I could set it up as a service so I could do something like: /sbin/service subversion restart or /sbin/service svn restart.]]></description>
			<content:encoded><![CDATA[<p>While at work the other day, our SVN server decided that it wanted to shut down randomly. Well, nothing is completely random, but I don&#8217;t know why it shut down. However, I have not found an easy way to restart it. The only way that I have figured out to accomplish this is to restart our entire server and restart it. Luckily our SVN is on our development server and it won&#8217;t cause any problems, but it is time consuming wait for it to load back up. I was hoping that I could set it up as a service so I could do something like: /sbin/service subversion restart or /sbin/service svn restart.</p>
<p>If anyone has any incite on this matter, it would be awesome.</p>
]]></content:encoded>
			<wfw:commentRss>http://armenianeagle.com/2008/05/15/restarting-svn-on-unix-box-is-there-an-easier-way/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

