<?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>SUPERNOVA &#187; Culture</title>
	<atom:link href="http://blog.metrostarsystems.com/tag/culture/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.metrostarsystems.com</link>
	<description>Stellar Social Media &#38; Technology Solutions</description>
	<lastBuildDate>Thu, 26 Apr 2012 17:31:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>ASP .Net MVC Localization</title>
		<link>http://blog.metrostarsystems.com/2011/01/05/asp-net-mvc-localization/</link>
		<comments>http://blog.metrostarsystems.com/2011/01/05/asp-net-mvc-localization/#comments</comments>
		<pubDate>Wed, 05 Jan 2011 19:51:20 +0000</pubDate>
		<dc:creator>Lee Kohn</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Accept-Langauge]]></category>
		<category><![CDATA[ASP]]></category>
		<category><![CDATA[ASP .Net]]></category>
		<category><![CDATA[Culture]]></category>
		<category><![CDATA[Internationalization]]></category>
		<category><![CDATA[Localization]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[resources]]></category>
		<category><![CDATA[resx]]></category>
		<category><![CDATA[UICulture]]></category>

		<guid isPermaLink="false">http://blog.metrostarsystems.com/?p=4386</guid>
		<description><![CDATA[Ever needed to localize/internationalize an MVC web application but didn&#8217;t know how to? Well it&#8217;s actually pretty simple with ASP .Net. The first step is to set the page&#8217;s UICulture to the language requested by the browser which can be accomplished by adding the following code to the controller. string lang = Request.UserLanguages[0]; //get the<em> ... </em>]]></description>
			<content:encoded><![CDATA[            <script type="text/javascript" src="http://blog.metrostarsystems.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushCSharp.js"></script>
            <script type="text/javascript" src="http://blog.metrostarsystems.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushXml.js"></script>
<p>Ever needed to localize/internationalize an MVC web application but didn&#8217;t know how to?  Well it&#8217;s actually pretty simple with ASP .Net.  The first step is to set the page&#8217;s UICulture to the language requested by the browser which can be accomplished by adding the following code to the controller.</p>
<p><pre class="brush: csharp">string lang = Request.UserLanguages[0]; //get the browsers requested language

//set the current threads langauge to the requested one
Thread.CurrentThread.CurrentCulture = new CultureInfo(lang);
Thread.CurrentThread.CurrentUICulture = Thread.CurrentThread.CurrentCulture;</pre></p>
<p>After the thread&#8217;s UICulture has been set you need to define resource files (.resx) which will contain the translated words.  In the folder containing your view create an Asp.Net folder named App_LocalResources.  In this folder create a resource file for languages you&#8217;ll be supporting in the following format.</p>
<p>Assuming the view is named index.aspx the resource files should be named:<br />
<strong>index.aspx.resx</strong> This will be the language neutral resource file<br />
<strong>index.aspx.en.resx</strong> The English resource file<br />
<strong>index.aspx.es.resx</strong> The Spanish resource file
</p>
<p>In these resource files define name/value pairs for each word which needs to be localized.  Each file should contain the same names but the value should be translated for the language the resource file represents.</p>
<p>Then in the view use the following syntax to bind the resources to where they&#8217;re needed.</p>
<p><pre class="brush: xml">&lt;asp:Label runat=&quot;server&quot; Text=&quot;&lt;%$ Resources:text1 %&gt;&quot; /&gt;</pre></p>
<p>That&#8217;s it!  When the browser sends a request to the server the following will happen:</p>
<ol>
<li>ASP .Net will pickup the &#8216;Accept-Language&#8217; HTTP header and set the Page&#8217;s thread to that language (the first snippet accomplishes this)</li>
<li>When the view is rendered it will run in the context of the appropriate resource file automatically</li>
<li>Any references to <%$ Resources:<i>[blah]</i> %></li>
<p> will be set to that value in the resource file!
</ol></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.metrostarsystems.com/2011/01/05/asp-net-mvc-localization/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Week 9 @ Metrostar Systems</title>
		<link>http://blog.metrostarsystems.com/2010/08/06/week-9-at-metrostar-systems/</link>
		<comments>http://blog.metrostarsystems.com/2010/08/06/week-9-at-metrostar-systems/#comments</comments>
		<pubDate>Fri, 06 Aug 2010 20:50:17 +0000</pubDate>
		<dc:creator>Jon Malley</dc:creator>
				<category><![CDATA[Our Culture]]></category>
		<category><![CDATA[Careers]]></category>
		<category><![CDATA[Culture]]></category>
		<category><![CDATA[education]]></category>
		<category><![CDATA[Intern]]></category>
		<category><![CDATA[Interns]]></category>
		<category><![CDATA[Internship]]></category>
		<category><![CDATA[MetroStar Systems]]></category>

		<guid isPermaLink="false">http://blog.metrostarsystems.com/?p=3234</guid>
		<description><![CDATA[As my two month internship here in Reston draws to a close, I have taken the time to reflect back on the time spent at MetroStar Systems.  The experience has given me a window of perspective into life at one of the most personable, friendly and team-oriented companies I’ve ever had the pleasure to have<em> ... </em>]]></description>
			<content:encoded><![CDATA[            <script type="text/javascript" src="http://blog.metrostarsystems.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushCSharp.js"></script>
            <script type="text/javascript" src="http://blog.metrostarsystems.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushXml.js"></script>
<div class="wp-caption aligncenter" style="width: 370px"><img title="Jon Malley" src="https://blog.metrostarsystems.com/wp-content/uploads/2010/08/Malley_Jon.png" alt="Jon Malley" width="360" height="275" /><p class="wp-caption-text">Day One</p></div>
<p style="text-indent: 2em; text-align: left;">As my two month internship here in Reston draws to a close, I have taken the time to reflect back on the time spent at MetroStar Systems.  The experience has given me a window of perspective into life at one of the most personable, friendly and team-oriented companies I’ve ever had the pleasure to have known. The past nine weeks have provided me with so many minuscule tidbits of information and pieces of knowledge that will surely stay with me throughout my professional career. Some of the things, such as managing social media accounts via HootSuite and social bookmarking, were simple yet useful workplace tools that were unbeknownst to me until my arrival at MetroStar. Other tasks provided me with skills and the preparation for life in the real world of business. Sitting through and watching a business model presentation come together from scratch and watching it progress until just hours before it was to be presented was one of the most useful learning experiences I’ve ever had.</p>
<p style="text-indent: 2em;">I have yet to take a class that could come close to emphasizing the value of implementing BMG and applying it to all aspects of a project/business/anything in life.</p>
<p style="text-indent: 2em;">The month of July went by faster than I could have ever expected it to. The World Cup came to a close after a month of random outbursts of cheers, streaming games in minimized boxes in the corner of the screen, and a first WC win for La Furia Roja. Soon after the Cup ended, the marketing squad gained two new members: Monica Huie and Patricia Joo. After the new additions, the team moved forward at a previously unseen pace of speed and multitasking. New projects seemed to come in from all directions and it quickly became clear that this new formidable block would be more than capable of handling its workload.</p>
<p style="text-indent: 2em;">As I near the end of my last task here at Metrostar Systems (this blog post), I can’t help but to smile when I try to think of any negative aspects of my experience. There was one thing that will always stand out and bug me about this place. Over the course of all of the FIFA 10 soccer matches played by the company B-Team, not ONE of the games ended in our favor. Oh well, I couldn’t have asked for a better duo to pair up with than Daniel and Ethan and I’m sure that one of these days (maybe years from now) we’ll  pull it together and beat a football side a prominent as the KC Wizards or the Colorado Rapids <img src='http://blog.metrostarsystems.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p style="text-indent: 2em;">-Jon Malley</p>
<p style="text-indent: 2em;">
]]></content:encoded>
			<wfw:commentRss>http://blog.metrostarsystems.com/2010/08/06/week-9-at-metrostar-systems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Week 1 @ MetroStar Systems</title>
		<link>http://blog.metrostarsystems.com/2010/06/04/week-1-metrostar-systems/</link>
		<comments>http://blog.metrostarsystems.com/2010/06/04/week-1-metrostar-systems/#comments</comments>
		<pubDate>Fri, 04 Jun 2010 20:24:19 +0000</pubDate>
		<dc:creator>Jon Malley</dc:creator>
				<category><![CDATA[Our Culture]]></category>
		<category><![CDATA[Career]]></category>
		<category><![CDATA[Careers]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[Culture]]></category>
		<category><![CDATA[Intern]]></category>
		<category><![CDATA[Internship]]></category>
		<category><![CDATA[Job]]></category>
		<category><![CDATA[Jobs]]></category>
		<category><![CDATA[Jon]]></category>
		<category><![CDATA[Jon Malley]]></category>
		<category><![CDATA[Malley]]></category>
		<category><![CDATA[MetroStar]]></category>
		<category><![CDATA[MetroStar Systems]]></category>

		<guid isPermaLink="false">http://blog.metrostarsystems.com/?p=2954</guid>
		<description><![CDATA[My first week at MetroStar has been full of new and exciting experiences. Though I have no idea what I’ll be doing by this time next week, it’s been a great start so far. I started my internship here the Tuesday after the Memorial Day weekend. The morning on my first day consisted of a<em> ... </em>]]></description>
			<content:encoded><![CDATA[            <script type="text/javascript" src="http://blog.metrostarsystems.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushCSharp.js"></script>
            <script type="text/javascript" src="http://blog.metrostarsystems.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushXml.js"></script>
<p style="text-align: center;"><img class="aligncenter" title="Jon Malley" src="http://blog.metrostarsystems.com/wp-content/uploads/2010/06/Jon-Week-1.jpg" alt="Jon Malley" width="496" height="372" /></p>
<p>My first week at MetroStar has been full of new and exciting experiences. Though I have no idea what I’ll be doing by this time next week, it’s been a great start so far. I started my internship here the Tuesday after the Memorial Day weekend. The morning on my first day consisted of a lengthy, though standard, orientation session led by Mo Hessabi and Greg Citizen. Unlike my previous internship last summer in DC, I was immediately welcomed with the cool refreshing breeze of an adequate air conditioning system.   The office itself is also much larger than the cramped, two-room space that was rented out on K Street.  I received a brief tour of the premises and completed the necessary paperwork alongside the other new employees, Lynna Hall and Andrew Cisternino.</p>
<p>A quick lunch with Lynna and Greg was followed by a briefing by Mona Lutnes over our newly issued security cards (lanyard included). I then met Jenni Hubacher, the first of the three people that would be supervising me during my stay at MetroStar. The remaining hours of the workday were spent getting acclimated and setting up the desktop computer that I had been assigned.</p>
<p>Wednesday was my first true day of work and I soon met the second member of the Marketing team, Daniel Nguyen.  Jenni introduced me to Google’s AdWords service and we began working on a campaign advertising 8570.1 certification training sessions at the Stafford office.  Next, we moved on to Google Analytics to chart data pertaining to the MetroStar Systems (new and improved) website. My first real task was to complete a report on the data which included multiple graphs and analysis. On Thursday, I worked with Daniel and researched information about social media to get me up to speed with some of the current projects that are being put together. With the most unfortunate timing, I had to leave work early due to a terrible viral infection in my throat (at least that’s what I hope it is- No Mono please!) that left me unable to complete the full work day.</p>
<p>Nearing the end of my first week, Friday morning consisted of writing up my first MetroStar Systems blog entry on the future of social media. After lunch, I ran an inventory of all of the Marketing and HR collateral. The whole experience so far has been as enjoyable as I could have ever imagined. Everyone I’ve encountered has been friendly and helpful.   With that in mind, I’m elated to have the opportunity to spend the rest of my summer here at MetroStar Systems.</p>
<p>P.S. If anyone wants to play a game of FIFA sometime, just shoot me an e-mail.</p>
<p>-Jon Malley</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.metrostarsystems.com/2010/06/04/week-1-metrostar-systems/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Corporate Culture and Collaboration in Community</title>
		<link>http://blog.metrostarsystems.com/2010/02/02/corporate-culture-and-collaboration-in-community/</link>
		<comments>http://blog.metrostarsystems.com/2010/02/02/corporate-culture-and-collaboration-in-community/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 14:52:03 +0000</pubDate>
		<dc:creator>Tanya Hilleary</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[Our Culture]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[Culture]]></category>
		<category><![CDATA[MetroStar Systems]]></category>
		<category><![CDATA[public diplomacy]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.metrostarsystems.com/?p=2464</guid>
		<description><![CDATA[It is amazing how much one can learn in a month after being immersed in an environment. I’ve learned  that while our SVP of Business Development can salsa, it’s the Bhangra music and rhythms that get my new colleagues on the dance floor at a company party. I’ve learned that, true to its name, if<em> ... </em>]]></description>
			<content:encoded><![CDATA[            <script type="text/javascript" src="http://blog.metrostarsystems.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushCSharp.js"></script>
            <script type="text/javascript" src="http://blog.metrostarsystems.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushXml.js"></script>
<p style="text-align: center;"><a href="http://www.flickr.com/photos/noticelj/2878326718/" target="_blank"><img class="size-medium wp-image-2465 aligncenter" title="Globe_hands_CC" src="http://blog.metrostarsystems.com/wp-content/uploads/2010/02/Globe_hands_CC-225x300.jpg" alt="a child holds a globe, computer generated image, mapping image from NASA" width="225" height="300" /></a></p>
<p>It is amazing how much one can learn in a month after being immersed in an environment. I’ve learned  that while our SVP of Business Development can salsa, it’s the Bhangra music and rhythms that get my new colleagues on the dance floor at a company party. I’ve learned that, true to its name, if I drink the Midnight Magic coffee after lunch I can’t fall asleep before 1:00 a.m.  I’ve learned that when you get smart people and good technology in a room together, you can play a part to help a poor island nation racked by catastrophe.</p>
<p>My role here at MetroStar Systems is, ultimately, to tell our story. While there is a certain “drinking from a firehose” aspect to the transition of a new executive into a fast growing company &#8211; average of 272% in the last three years and 420% growth in the last year &#8211; in true MetroStar fashion, I’ve tried to do a lot of listening and observing since arriving earlier this month.</p>
<p>So here’s what I’ve observed:<br />
We are Skywalker Ranch meets the United Nations. Our modern offices are situated on a beautiful pre-Civil War era campus in the heart of what is now bustling, modern, high tech Reston, Virginia. But this exquisite facility is only the shell &#8211; the real beauty lies within. At the time of this writing, we have nearly 100 employees with more than 30 different nationalities represented. Walking around the office and meeting my new colleagues has been the absolute highlight of my transition so far. The cultural diversity is a huge strength for a company immersed in using technology in new and innovative ways.  We come from different places with different backgrounds and different ideas. When a customer presents a problem, we can offer several unique perspectives and share among our team to create the ideal solution. Innovative collaboration is at the very heart of MetroStar Systems.</p>
<p style="text-align: left;">We are a company that uses technology to bridge collaboration between people. Sometimes those people are Marines sharing data around the globe; other times we’re leveraging the best social media technology on a global scale in the interest of the State Department’s public diplomacy campaigns. By doing what we do, we effect change in the world.</p>
<p style="text-align: left;">MetroStar Systems offers a unique ability to collaborate.  Indeed, we are true to our tagline – we &#8220;<strong><em>Advance Technology Daily</em></strong>&#8220;. But we also…</p>
<p style="text-align: center;">Avance la tecnología cada día<br />
每天先进技术<br />
Zaawansowanej technologii na co dzień<br />
پیشرفت تکنولوژی روزانه<br />
передовой технологии с каждым днем<br />
Avançando a tecnologia diariamente<br />
تقدم التكنولوجيا اليومية<br />
अग्रिम प्रौद्योगिकी हर दिन<br />
Progresser les technologies de tous les jours<br />
предварително технология всеки ден<br />
Kuendeleza teknolojia ya kila siku<br />
הטכנולוגיה מראש כל יום<br />
công nghệ tiên tiến mỗi ngày<br />
사전 기술 매일<br />
teknologi maju setiap hari<br />
Teknoloji avanse chak jou</p>
<p style="text-align: left;"><em>Photo Credit:<a rel="cc:attributionURL" href="http://www.flickr.com/photos/noticelj/"> http://www.flickr.com/photos/noticelj/</a> / <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/2.0/">CC BY-NC-SA 2.0</a></em></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.metrostarsystems.com/2010/02/02/corporate-culture-and-collaboration-in-community/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>It’s Peanut Butter Jelly Time</title>
		<link>http://blog.metrostarsystems.com/2009/11/30/its-peanut-butter-jelly-time/</link>
		<comments>http://blog.metrostarsystems.com/2009/11/30/its-peanut-butter-jelly-time/#comments</comments>
		<pubDate>Mon, 30 Nov 2009 17:22:09 +0000</pubDate>
		<dc:creator>Gitendra Malla</dc:creator>
				<category><![CDATA[Our Culture]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Culture]]></category>
		<category><![CDATA[efficiency]]></category>
		<category><![CDATA[MetroStar Systems]]></category>
		<category><![CDATA[problem solving]]></category>
		<category><![CDATA[tips & tricks]]></category>

		<guid isPermaLink="false">http://blog.metrostarsystems.com/?p=2197</guid>
		<description><![CDATA[On an early Thursday morning last August, I walked into the office with a hole in my stomach. Following my regular routine, I went to the kitchen area and tossed two loaves of bread into the great belly of the toaster oven, which boasts a 12 inch pizza capacity. As usual, I waited for the<em> ... </em>]]></description>
			<content:encoded><![CDATA[            <script type="text/javascript" src="http://blog.metrostarsystems.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushCSharp.js"></script>
            <script type="text/javascript" src="http://blog.metrostarsystems.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushXml.js"></script>
<div class="wp-caption aligncenter" style="width: 360px"><img class=" " title="Toaster Oven VS Toaster" src="http://blog.metrostarsystems.com/wp-content/uploads/2009/11/Gitendra-toastervsoven2.jpg" alt="Toaster VS Toaster Oven" width="350" height="229" /><p class="wp-caption-text">Toaster Oven VS Toaster</p></div>
<p>On an early Thursday morning last August, I walked into the office with a hole in my stomach. Following my regular routine, I went to the kitchen area and tossed two loaves of bread into the great belly of the toaster oven, which boasts a 12 inch pizza capacity. As usual, I waited for the oven to heat up while I planned my day alongside.</p>
<p>Mo, the HR Director of the company, entered the kitchen and proceeded to caution me. Ali, the company CEO, is not in a good mood &#8230; so, I should hurry up with my daily ritual. I decided to give the toaster oven one more minute with my breakfast. The next minute, I am meticulously spreading some peanut butter over my toast.</p>
<p><em>&#8220;How long does it take you to make your breakfast every day?&#8221;</em></p>
<p>Lo and behold, it is Ali at the kitchen door. Now, I know that it is a rhetorical question. So, I patiently wait for the follow-up:</p>
<p><em>&#8220;Add up all the time you spend every morning in this kitchen making your breakfast. And when you get the answer, go tell our closest competition how much you have helped them!&#8221;</em></p>
<p>So, I did. (The first part of what he said at least.)</p>
<p>I finished making my breakfast and took it to my desk, where I looked at the following conservative figures:</p>
<ul>
<li>Number of work weeks in a year: (N) = 48  [10 days      of personal leave; 10 days of holidays]</li>
</ul>
<ul>
<li>Average number of days/week I make my      breakfast:     (d) = 4</li>
<li>Average number of minutes I spend/breakfast      session:     (m) = 15</li>
<li>Total number of minutes that I spend/year on      breakfast:     (T) = N*d*m</li>
<li>(T) = 48*4*15</li>
<li>(T) = 2880</li>
<li>Total = 48 hours</li>
</ul>
<p>Before I made these calculations, I was taken aback by a CEO&#8217;s interference in an issue as &#8220;minor&#8221; as making a simple breakfast. But after these calculations I realize that <strong>six</strong> working days of a year is a lot of time to lose for a small business!</p>
<p>So, what next? Blame the toaster oven, of course! It dawned on me: A man is only as good as the tool he owns. Every morning I would sit in the kitchen, submissive to the status quo of the slow burning toaster oven. I was using the wrong tool all along &#8211; wasting both time and energy. That afternoon, I went to a Target store nearby and bought a real toaster &#8211; you know, the one with two slots for the bread. The following morning my new &#8216;tool&#8217; would help me cut the length of my breakfast ritual about 75%! The following figures would emerge:</p>
<ul>
<li>Average number of minutes I spend/breakfast session      (m&#8217;) = 4</li>
<li>Total number of minutes that I spend/year on breakfast      (T) = N*d*m</li>
<li>(T) = 48*4*4</li>
<li>(T) = 768</li>
<li>Total = 12.8 hours</li>
</ul>
<p>It is always convincing when numbers tell you a story. To tell a story, however, needs a visionary intervention. At <a href="http://www.metrostarsystems.com/" target="_blank">MetroStar Systems</a>, we are a team of visionaries. As such, we keep our eyes on the bigger picture but we don’t let the “minor” details slide. We don’t cry over spilled milk, but make the best of the situation. We think both inside and outside the box, and if the box is not right, we change it. We are an agile team of active learners and proactive workers – we are professionals.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.metrostarsystems.com/2009/11/30/its-peanut-butter-jelly-time/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Celebrating 10 Years of Success</title>
		<link>http://blog.metrostarsystems.com/2009/10/22/celebrating-10-years-of-success/</link>
		<comments>http://blog.metrostarsystems.com/2009/10/22/celebrating-10-years-of-success/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 12:45:44 +0000</pubDate>
		<dc:creator>Jenni Hubacher</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Our Culture]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[Culture]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[MetroStar Systems]]></category>

		<guid isPermaLink="false">http://blog.metrostarsystems.com/?p=1845</guid>
		<description><![CDATA[On Friday October 16, 2009, MetroStar Systems hosted a 10 Year Anniversary and Open House event celebrating 10 Years of Dedication and Innovation, and the move into our new world headquarters. On behalf of MetroStar Systems, I would like to thank everyone for attending and celebrating with us. It was great to see our partners,<em> ... </em>]]></description>
			<content:encoded><![CDATA[            <script type="text/javascript" src="http://blog.metrostarsystems.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushCSharp.js"></script>
            <script type="text/javascript" src="http://blog.metrostarsystems.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushXml.js"></script>
<p>On Friday October 16, 2009, <strong>MetroStar Systems</strong> hosted a 10 Year Anniversary and Open House event celebrating 10 Years of Dedication and Innovation, and the move into our <a href="http://blog.metrostarsystems.com/2009/10/05/metrostar-systems-marks-10th-anniversary-with-expansion-to-new-headquarters-in-historic-reston-va-location/" target="_blank">new world headquarters</a>.</p>
<p>On behalf of MetroStar Systems, I would like to thank everyone for attending and celebrating with us.  It was great to see our partners, customers, clients, coworkers, contractors, friends, and families at this special event.  MetroStar Systems would not be who we are today without the help and support we have received from you!</p>
<p>Sincerely,</p>
<p>Jenni Hubacher</p>
<p style="text-align: center;"><script src="http://wanimoto.clearspring.com/o/4805fc0db4a3562c/4ae0745e65fe1dbe/4805fc0db4a3562c/f88d35d0/-cpid/43c478338c8274dd/-EMH/300/-EMW/540/widget.js" type="text/javascript"></script><br />
<em>Video courtesy of Derek Yale.</em></p>

<div class="ngg-galleryoverview" id="ngg-gallery-4-1845">

	<!-- Slideshow link -->
	<div class="slideshowlink">
		<a class="slideshowlink" href="http://blog.metrostarsystems.com/2009/10/22/celebrating-10-years-of-success/?show=slide">
			[Show as slideshow]		</a>
	</div>

	<!-- Piclense link -->
	<div class="piclenselink">
		<a class="piclenselink" href="javascript:PicLensLite.start({feedUrl:'http://blog.metrostarsystems.com/wp-content/plugins/nextgen-gallery/xml/media-rss.php?gid=4&amp;mode=gallery'});">
			[View with PicLens]		</a>
	</div>
	
	<!-- Thumbnails -->
		
	<div id="ngg-image-53" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.metrostarsystems.com/wp-content/gallery/mss-open-house-event/dsc_0030.jpg" title="                                    " class="shutterset_set_4" >
								<img title="dsc_0030" alt="dsc_0030" src="http://blog.metrostarsystems.com/wp-content/gallery/mss-open-house-event/thumbs/thumbs_dsc_0030.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-54" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.metrostarsystems.com/wp-content/gallery/mss-open-house-event/dsc_0037.jpg" title="                                    " class="shutterset_set_4" >
								<img title="dsc_0037" alt="dsc_0037" src="http://blog.metrostarsystems.com/wp-content/gallery/mss-open-house-event/thumbs/thumbs_dsc_0037.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-55" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.metrostarsystems.com/wp-content/gallery/mss-open-house-event/dsc_0044.jpg" title="                                    " class="shutterset_set_4" >
								<img title="dsc_0044" alt="dsc_0044" src="http://blog.metrostarsystems.com/wp-content/gallery/mss-open-house-event/thumbs/thumbs_dsc_0044.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-56" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.metrostarsystems.com/wp-content/gallery/mss-open-house-event/dsc_0067.jpg" title="                                    " class="shutterset_set_4" >
								<img title="dsc_0067" alt="dsc_0067" src="http://blog.metrostarsystems.com/wp-content/gallery/mss-open-house-event/thumbs/thumbs_dsc_0067.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-57" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.metrostarsystems.com/wp-content/gallery/mss-open-house-event/dsc_0074.jpg" title="                                    " class="shutterset_set_4" >
								<img title="dsc_0074" alt="dsc_0074" src="http://blog.metrostarsystems.com/wp-content/gallery/mss-open-house-event/thumbs/thumbs_dsc_0074.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-58" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.metrostarsystems.com/wp-content/gallery/mss-open-house-event/dsc_0079.jpg" title="                                    " class="shutterset_set_4" >
								<img title="dsc_0079" alt="dsc_0079" src="http://blog.metrostarsystems.com/wp-content/gallery/mss-open-house-event/thumbs/thumbs_dsc_0079.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-59" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.metrostarsystems.com/wp-content/gallery/mss-open-house-event/dsc_0082.jpg" title="                                    " class="shutterset_set_4" >
								<img title="dsc_0082" alt="dsc_0082" src="http://blog.metrostarsystems.com/wp-content/gallery/mss-open-house-event/thumbs/thumbs_dsc_0082.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-60" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.metrostarsystems.com/wp-content/gallery/mss-open-house-event/dsc_0083.jpg" title="                                    " class="shutterset_set_4" >
								<img title="dsc_0083" alt="dsc_0083" src="http://blog.metrostarsystems.com/wp-content/gallery/mss-open-house-event/thumbs/thumbs_dsc_0083.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-61" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.metrostarsystems.com/wp-content/gallery/mss-open-house-event/dsc_0086.jpg" title="                                    " class="shutterset_set_4" >
								<img title="dsc_0086" alt="dsc_0086" src="http://blog.metrostarsystems.com/wp-content/gallery/mss-open-house-event/thumbs/thumbs_dsc_0086.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-62" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.metrostarsystems.com/wp-content/gallery/mss-open-house-event/dsc_0095.jpg" title="                                    " class="shutterset_set_4" >
								<img title="dsc_0095" alt="dsc_0095" src="http://blog.metrostarsystems.com/wp-content/gallery/mss-open-house-event/thumbs/thumbs_dsc_0095.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-63" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.metrostarsystems.com/wp-content/gallery/mss-open-house-event/dsc_0096.jpg" title="                                    " class="shutterset_set_4" >
								<img title="dsc_0096" alt="dsc_0096" src="http://blog.metrostarsystems.com/wp-content/gallery/mss-open-house-event/thumbs/thumbs_dsc_0096.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-64" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.metrostarsystems.com/wp-content/gallery/mss-open-house-event/dsc_0099.jpg" title="                                    " class="shutterset_set_4" >
								<img title="dsc_0099" alt="dsc_0099" src="http://blog.metrostarsystems.com/wp-content/gallery/mss-open-house-event/thumbs/thumbs_dsc_0099.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-65" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.metrostarsystems.com/wp-content/gallery/mss-open-house-event/dsc_0105.jpg" title="                                    " class="shutterset_set_4" >
								<img title="dsc_0105" alt="dsc_0105" src="http://blog.metrostarsystems.com/wp-content/gallery/mss-open-house-event/thumbs/thumbs_dsc_0105.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-66" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.metrostarsystems.com/wp-content/gallery/mss-open-house-event/dsc_0112.jpg" title="                                    " class="shutterset_set_4" >
								<img title="dsc_0112" alt="dsc_0112" src="http://blog.metrostarsystems.com/wp-content/gallery/mss-open-house-event/thumbs/thumbs_dsc_0112.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-67" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.metrostarsystems.com/wp-content/gallery/mss-open-house-event/dsc_0123.jpg" title="                                    " class="shutterset_set_4" >
								<img title="dsc_0123" alt="dsc_0123" src="http://blog.metrostarsystems.com/wp-content/gallery/mss-open-house-event/thumbs/thumbs_dsc_0123.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-68" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.metrostarsystems.com/wp-content/gallery/mss-open-house-event/dsc_0136.jpg" title="                                    " class="shutterset_set_4" >
								<img title="dsc_0136" alt="dsc_0136" src="http://blog.metrostarsystems.com/wp-content/gallery/mss-open-house-event/thumbs/thumbs_dsc_0136.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-69" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.metrostarsystems.com/wp-content/gallery/mss-open-house-event/dsc_0137.jpg" title="                                    " class="shutterset_set_4" >
								<img title="dsc_0137" alt="dsc_0137" src="http://blog.metrostarsystems.com/wp-content/gallery/mss-open-house-event/thumbs/thumbs_dsc_0137.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-70" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.metrostarsystems.com/wp-content/gallery/mss-open-house-event/dsc_0148.jpg" title="                                    " class="shutterset_set_4" >
								<img title="dsc_0148" alt="dsc_0148" src="http://blog.metrostarsystems.com/wp-content/gallery/mss-open-house-event/thumbs/thumbs_dsc_0148.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-71" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.metrostarsystems.com/wp-content/gallery/mss-open-house-event/dsc_0150.jpg" title="                                    " class="shutterset_set_4" >
								<img title="dsc_0150" alt="dsc_0150" src="http://blog.metrostarsystems.com/wp-content/gallery/mss-open-house-event/thumbs/thumbs_dsc_0150.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-72" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://blog.metrostarsystems.com/wp-content/gallery/mss-open-house-event/dsc_0154.jpg" title="                                    " class="shutterset_set_4" >
								<img title="dsc_0154" alt="dsc_0154" src="http://blog.metrostarsystems.com/wp-content/gallery/mss-open-house-event/thumbs/thumbs_dsc_0154.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-navigation'><span>1</span><a class="page-numbers" href="http://blog.metrostarsystems.com/2009/10/22/celebrating-10-years-of-success/?nggpage=2">2</a><a class="next" id="ngg-next-2" href="http://blog.metrostarsystems.com/2009/10/22/celebrating-10-years-of-success/?nggpage=2">&#9658;</a></div> 	
</div>


<p style="text-align: center;"><em>Photos courtesy of Clayton Harrison.<br />
</em></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.metrostarsystems.com/2009/10/22/celebrating-10-years-of-success/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Social Networking Through Global Issues</title>
		<link>http://blog.metrostarsystems.com/2009/07/01/social-networking-through-global-issues/</link>
		<comments>http://blog.metrostarsystems.com/2009/07/01/social-networking-through-global-issues/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 20:30:35 +0000</pubDate>
		<dc:creator>Jill Boyer</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[Our Culture]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[Culture]]></category>
		<category><![CDATA[economics]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Social Media]]></category>

		<guid isPermaLink="false">http://blog.metrostarsystems.com/?p=1064</guid>
		<description><![CDATA[Taking IT Global (TIG) is a social networking site that connects cultures based on global issues that affect us all. The issues that are mainly focused on relate to culture, education, environment, health, human rights, media, peace and conflict, technology, and work and economics. TIG is about to reach a quarter of a million members<em> ... </em>]]></description>
			<content:encoded><![CDATA[            <script type="text/javascript" src="http://blog.metrostarsystems.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushCSharp.js"></script>
            <script type="text/javascript" src="http://blog.metrostarsystems.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushXml.js"></script>
<p><a title="TakingITGlobal" href="http://tigweb.org/" target="_blank">Taking IT Global </a>(TIG) is a social networking site that connects cultures based on global issues that affect us all. The issues that are mainly focused on relate to culture, education, environment, health, human rights, media, peace and conflict, technology, and work and economics. TIG is about to reach a quarter of a million members that are located in 261 countries worldwide. All of the current members are people who want to make a difference in the world. TIG Connects people, specifically the youth, around the world to get involved with improving communities.</p>
<p>Each member can choose the involvement level they wish to participate at. There are opportunities for members to contribute to discussion boards on various topics, they can join different groups relating to their interests, they can sign online petitions for issues they support, they can locate upcoming events worldwide, and they can join ongoing projects.</p>
<p>Organizations can also choose to create a TIG page. This enables companies and organizations to connect with different cultural communities that are socially aware of the issues going on around the world and trying to make a difference. TIG can be advantageous, also: “Inspire the youth about your work and key issues you address, inform a global audience on your latest news and activities, and involve a growing network in making a greater difference together.” Organizations are able to create a profile, post events, promote resources on global issues, find qualified applicants, showcase digital videos and photos, and set up blogs.</p>
<p>Educators are now allowed to join TIG. This allows for classrooms to go global while having interactive learning experiences that “improve students’ global citizenship, critical thinking, and leadership skills.” Through educators getting involved with TakingITGlobal, students are prepared for the world and all of the ongoing issues and controversies that are faced daily.</p>
<p>A new tool that TakingITGlobal has adapted is the integration of Twitter. Twitter accounts are now capable of being associated with project pages where the latest tweets will display on the project homepage.  This hopefully will be the first round of new features that are being built into project pages.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.metrostarsystems.com/2009/07/01/social-networking-through-global-issues/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>We Are Small But We Are Strong!</title>
		<link>http://blog.metrostarsystems.com/2009/03/22/we-are-small-but-we-are-strong/</link>
		<comments>http://blog.metrostarsystems.com/2009/03/22/we-are-small-but-we-are-strong/#comments</comments>
		<pubDate>Sun, 22 Mar 2009 22:52:05 +0000</pubDate>
		<dc:creator>Ali Manouchehri</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[Our Culture]]></category>
		<category><![CDATA[Culture]]></category>
		<category><![CDATA[economics]]></category>
		<category><![CDATA[leadership]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://blog.metrostarsystems.com/?p=64</guid>
		<description><![CDATA[It’s funny when you have to worry about growing pains in business.  I compare this phenomenon to a ten year old kid, where it has learned to walk and talk.  Yet, it is still vulnerable to its surroundings = the economy, friends = partnerships, and neighbors = other businesses or competition. The other day I<em> ... </em>]]></description>
			<content:encoded><![CDATA[            <script type="text/javascript" src="http://blog.metrostarsystems.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushCSharp.js"></script>
            <script type="text/javascript" src="http://blog.metrostarsystems.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushXml.js"></script>
<p>It’s funny when you have to worry about growing pains in business.  I compare this phenomenon to a ten year old kid, where it has learned to walk and talk.  Yet, it is still vulnerable to its surroundings = the economy, friends = partnerships, and neighbors = other businesses or competition.</p>
<p>The other day I was told by a large neighbor how would MetroStar manage and survive in this downturn of an economy.  Does MetroStar have the relationships?  And can it continue capturing new business in this ultra competitive market? Well the quick answer is “YES, WE CAN SIR!”.</p>
<p>I did not spend 20 years of my life in the government building relationships. In fact for the past 10 years, since I graduated from George Mason University I have been an entrepreneur not worried about the bottom line, but working hard building our organization brick by brick with knowledge, courage, and determination. In my ten years of being in business we experienced the following: in our second year the DOT COM bubble busted, our third year we coped with 9/11, a tragedy that shook our nation, but at the same time it taught us to unite and be strong.  Finally, the last two years have been compared to the Great Depression of the 30’s and 40’s. With that said, MetroStar has grown at an average of 250% in the past three years. We have been profitable for the past 12 quarters. Every cent of profit has gone back into our organization; to create INNOVATION and JOBS.</p>
<p>Our assets are our people not cash in the bank, our growth is due to our culture not relationships, and our courage is due to the characters of our leadership not our board members.  So, the next time a large firm corner’s you and try’s to overpower you with their large sums of cash and tries to intimidate you with their relationships with government officials; stand strong, be confident, and remember that you are a small business owner not in it for the moment, but for the journey.</p>
<p>You are creating jobs and giving back during this crisis, you are not held accountable by members of the board, Wall Street, or Shareholders.  Stay resilient, give back, and do not let this market and its bullies overwhelm you and your goals, it will turn to your advantage.  Work smart, hard, and efficiently!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.metrostarsystems.com/2009/03/22/we-are-small-but-we-are-strong/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Traveling Around Argentina and Chile</title>
		<link>http://blog.metrostarsystems.com/2008/01/01/traveling-around-argentina-and-chile/</link>
		<comments>http://blog.metrostarsystems.com/2008/01/01/traveling-around-argentina-and-chile/#comments</comments>
		<pubDate>Tue, 01 Jan 2008 21:21:30 +0000</pubDate>
		<dc:creator>Jorge "El Che" Vasquez</dc:creator>
				<category><![CDATA[Our Culture]]></category>
		<category><![CDATA[Culture]]></category>
		<category><![CDATA[travel]]></category>

		<guid isPermaLink="false">http://blog.metrostarsystems.com/?p=216</guid>
		<description><![CDATA[For the past few weeks, I have been traveling around two of the most beautiful and dearest countries to me; Argentina (Buenos Aires, El Chaltern) and Chile (Santiago, Vina del Mar). Both countries have great food, great places to visit, but most of all; great people. Along the way I have met some wonderful individuals,<em> ... </em>]]></description>
			<content:encoded><![CDATA[            <script type="text/javascript" src="http://blog.metrostarsystems.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushCSharp.js"></script>
            <script type="text/javascript" src="http://blog.metrostarsystems.com/wp-content/plugins/wordpress-code-snippet/scripts/shBrushXml.js"></script>
<p>For the past few weeks, I have been traveling around two of the most beautiful and dearest countries to me; Argentina (Buenos Aires, El Chaltern) and Chile (Santiago, Vina del Mar). Both countries have great food, great places to visit, but most of all; great people.</p>
<p>Along the way I have met some wonderful individuals, many of which I will never forget and would like to thank for listening and providing a helping hand. Along the way I have seen people wanting to connect to one another, wanting to share their experiences. Along the way I have seen individuals in unthinkable situations that many of us would considered impossible, yet they continue on. Along the way I have seen the resilience of the human spirit, the good in all people, and the beauty of this magnificent world that we live in. Along the way I have been able to reflect on my life and have seen myself grow as a husband, father, friend and individual.</p>
<p>As I get back to business, I can only hope that many of the experiences do not fade away, but become a reminder of how fortunate we are to be where we are.  To treat all individuals that same way we would like to be treated and to always tell your loved ones how you feel about them.</p>
<p>I would like to thank my wife and kids for helping me achieve my goals and for their endless support, with out them I would be an aimless soul in this world. <img src='http://blog.metrostarsystems.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<ul>
<li>Argentina Slide Show</li>
<li>Chile Slide Show</li>
<li>View All Trip Pictures</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.metrostarsystems.com/2008/01/01/traveling-around-argentina-and-chile/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

