<?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>PMA Media Group&#187; Business</title>
	<atom:link href="http://www.pmamediagroup.com/category/business/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pmamediagroup.com</link>
	<description>Unique Marketing Techniques and Strategies with Guaranteed Results!</description>
	<lastBuildDate>Thu, 29 Jul 2010 15:34:44 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Culerity and Celerity, JavaScript enabled testing in Cucumber</title>
		<link>http://www.pmamediagroup.com/2009/06/culerity-and-celerity-javascript-enabled-testing-in-cucumber/</link>
		<comments>http://www.pmamediagroup.com/2009/06/culerity-and-celerity-javascript-enabled-testing-in-cucumber/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 23:02:30 +0000</pubDate>
		<dc:creator>fugufish</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[activescaffold]]></category>
		<category><![CDATA[celerity]]></category>
		<category><![CDATA[cucumber]]></category>
		<category><![CDATA[culerity]]></category>
		<category><![CDATA[htmUnit]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jruby]]></category>
		<category><![CDATA[rspec]]></category>
		<category><![CDATA[testing]]></category>

		<guid isPermaLink="false">http://www.pmamediagroup.com/?p=821</guid>
		<description><![CDATA[As you may know, testing JavaScript inesnsive applications using Cucumber can be a pain. There are several ways to handle this; Selenium, Watir and the like. The easiest way I have found however is by using Celerity a jRuby API for htmlUnit, a fully functional headless browser that completely supports JavaScript, and you don&#8217;t have [...]]]></description>
			<content:encoded><![CDATA[<p>As you may know, testing JavaScript inesnsive applications using Cucumber can be a pain. There are several ways to handle this; Selenium, Watir and the like. The easiest way I have found however is by using <a title="Celerity" href="http://celerity.rubyforge.org/">Celerity</a> a jRuby API for htmlUnit, a fully functional headless browser that completely supports JavaScript, and you don&#8217;t have to serve your application on jRuby to use it!. I was able to get Celerity to play nice duruing Cucumber tests by doing the following:  First, you will need of course jRuby. The Culerity gem will start up Celerity in the jRuby environment, and proxy the actual browser through it. Download <a title="jRuby" href="http://jruby.codehaus.org/">jRuby</a> and extract it to wherever you want it located. In my case I put it in /opt, and set your PATH accordingly.</p>

<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:monospace;">export PATH=$HOME<span style="color:#006600; font-weight:bold;">/</span>jruby<span style="color:#006600; font-weight:bold;">/</span>bin:$PATH</pre></div></div>

<p>Next install the Celerity gem in jRuby (we are using the github version rather than the ruby forge version, as it provides a later version):</p>

<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:monospace;">jruby <span style="color:#006600; font-weight:bold;">-</span>S gem install jarib<span style="color:#006600; font-weight:bold;">-</span>celerity <span style="color:#006600; font-weight:bold;">--</span>source=http:<span style="color:#006600; font-weight:bold;">//</span>gems.<span style="color:#9900CC;">github</span>.<span style="color:#9900CC;">com</span></pre></div></div>

<p>Now install the Culerity gem. This provides the interface between Celerity and your environment without forcing you to run in jRuby</p>

<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:monospace;"> gem install langalex<span style="color:#006600; font-weight:bold;">-</span>culerity <span style="color:#006600; font-weight:bold;">--</span>source http:<span style="color:#006600; font-weight:bold;">//</span>gems.<span style="color:#9900CC;">github</span>.<span style="color:#9900CC;">com</span></pre></div></div>

<p>Place this in your test environment:</p>

<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:monospace;"><span style="color:#008000; font-style:italic;"># config/environments/test.rb</span>
&nbsp;
config.<span style="color:#9900CC;">gem</span> <span style="color:#996600;">&quot;langalex-culerity&quot;</span>, <span style="color:#ff3333; font-weight:bold;">:lib</span> =<span style="color:#006600; font-weight:bold;">&amp;</span>gt; <span style="color:#0000FF; font-weight:bold;">false</span></pre></div></div>

<p>I call <code>:lib =&gt; false</code> here to avoid loading the gem. This is done in the file generated by culerity.  Finally remove <code>features/steps/webrat_steps.rb</code> as it will conflict with Culerity, and run:</p>

<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:monospace;">script<span style="color:#006600; font-weight:bold;">/</span>generate culerity</pre></div></div>

<p>Enjoy!  Culerity should have very similar syntax to webrat, however keep in mind you may see some differences that you may need to adjust.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pmamediagroup.com/2009/06/culerity-and-celerity-javascript-enabled-testing-in-cucumber/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 Habits That Help Job Security</title>
		<link>http://www.pmamediagroup.com/2009/04/10-habits-of-job-security/</link>
		<comments>http://www.pmamediagroup.com/2009/04/10-habits-of-job-security/#comments</comments>
		<pubDate>Thu, 23 Apr 2009 15:46:57 +0000</pubDate>
		<dc:creator>Brandon Buttars</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[habits]]></category>
		<category><![CDATA[job security]]></category>

		<guid isPermaLink="false">http://www.pmamediagroup.com/?p=721</guid>
		<description><![CDATA[I wrote an article titled &#8220;Gaining Control of Job Security&#8221; the other day and thought I would trim the fat and get straight to the points of that post.  These are some habits and things that my employers have expressed to me throughout the years and things that I have learned about job security. [...]]]></description>
			<content:encoded><![CDATA[<p>I wrote an article titled <a title="Gaining Control of Job Security" href="http://blog.mycollegesandcareers.com/2009/04/gaining-control-of-job-security/">&#8220;Gaining Control of Job Security&#8221;</a> the other day and thought I would trim the fat and get straight to the points of that post.  These are some habits and things that my employers have expressed to me throughout the years and things that I have learned about job security.  Feel free to comment and add to the list in the comments.</p>
<p><span id="more-721"></span></p>
<h3 id="habit_list">10 Habits That Help Job Security</h3>
<ol>
<li><strong><a title="Always be willing to learn." href="#learn">Always be willing to learn.</a></strong></li>
<li><strong><a title="Stand out." href="#stand">Stand out.</a></strong></li>
<li><strong><a title="Continue your education." href="#education">Continue your education.</a></strong></li>
<li><strong><a title="Be trustworthy." href="#trustworthy">Be trustworthy.</a></strong></li>
<li><strong><a title="Be positive." href="#positive">Be positive.</a></strong></li>
<li><strong><a title="Show gratitude." href="#gratitude">Show gratitude.</a></strong></li>
<li><strong><a title="Make suggestions and contribute." href="#suggestions">Make suggestions and contribute.</a></strong></li>
<li><strong><a title="Know your value." href="#value">Know your value.</a></strong></li>
<li><strong><a title="Stand up for yourself." href="#stand">Stand up for yourself.</a></strong></li>
<li><strong><a title="Give a crap." href="#crap">Give a crap.</a></strong></li>
</ol>
<hr />
<h3 id="learn">Always be willing to learn.</h3>
<p>If you can present yourself as a problem solver and that you have not become the old dog that will not learn new tricks, you immediately increase your value. You must deliver though.  People that are willing to learn will often times open up new opportunities for themselves.</p>
<p><a title="top" href="#wrapper">[ top ]</a></p>
<h3 id="stand">Stand out.</h3>
<p>If you participate in the meetings and seem involved in the company and that you are a part of the company they will see your value to the company. This can be looked at as a brown noser but the people calling your a brown noser are going to be some of the first employees to go most likely.</p>
<p><a title="top" href="#wrapper">[ top ]</a></p>
<h3 id="education">Continue your education.</h3>
<p>You can always be learning new things that are not even a part of your current position. This may involve enrolling in <a href="http://www.mycollegesandcareers.com/"><span>online certificate training</span></a>, completing your <a href="http://www.mycollegesandcareers.com/"><span>online bachelors or masters degree</span></a>, or just even going through online tutorials.</p>
<p><a title="top" href="#wrapper">[ top ]</a></p>
<h3 id="trustworthy">Be trustworthy.</h3>
<p>This brings me back to the scout oath of being trustworthy, loyal, helpful, friendly, courteous, kind, blah blah blah. If you can be trusted along with all of the other things mentioned, your employer will trust you with new positions and new opportunities and feel you are a valuable asset to the company.</p>
<p><a title="top" href="#wrapper">[ top ]</a></p>
<h3 id="positive">Be positive.</h3>
<p>Always be positive. A positive attitude will rub off as much as a negative attitude does. Create a positive environment and try to enjoy your job and others will talk about you and want to work with you. Employers are always looking for employees that play nice with one another and work well in team environments. When you are positive you present yourself very well.</p>
<p><a title="top" href="#wrapper">[ top ]</a></p>
<h3 id="gratitude">Show gratitude.</h3>
<p>People love hearing thank you. It makes them feel valued and also that what they do matters to you. When you present yourself as a grateful employee you often times will find yourself respecting your position and the time that you work in that position. You will find yourself working more effectively because you will make better use of your time.</p>
<p><a title="top" href="#wrapper">[ top ]</a></p>
<h3 id="suggestions">Make suggestions and contribute.</h3>
<p>Anyone that can help the company improve their process will find themselves rewarded for their contributions. If they are not, then I would reevaluate your job and position. Suggest things that will make your job easier so you can perform better and look better.</p>
<p><a title="top" href="#wrapper">[ top ]</a></p>
<h3 id="value">Know your value.</h3>
<p>You need to know your value. If you don’t understand what you bring to the table then it will be hard for you to convince your employer that they should keep you.</p>
<p><a title="top" href="#wrapper">[ top ]</a></p>
<h3 id="stand">Stand up for yourself.</h3>
<p>If you don’t stand up for yourself, you may not find anyone else standing up for you. When it’s time to lay off or downsize it’s everyone for themselves. Don’t talk negatively about others, but speak positively about yourself.</p>
<p><a title="top" href="#wrapper">[ top ]</a></p>
<h3 id="crap">Give a crap.</h3>
<p>My grandpa always said, <span><strong>“You can’t pay someone to give a crap.”</strong></span> He used other words but you can imagine. It’s hard to find someone who truly cares about their position. They are a diamond in the rough. If you can get involved in your position and show that you truly do care about your position, your employer will see. If you do many of the above mentioned things, you will find that you give a crap about your position.</p>
<p><a title="top" href="#wrapper">[ top ]</a></p>
<h3><em>What other things would you add to the list?</em></h3>
]]></content:encoded>
			<wfw:commentRss>http://www.pmamediagroup.com/2009/04/10-habits-of-job-security/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/


Served from: www.pmamediagroup.com @ 2010-07-31 10:57:07 -->