<?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>jaffamonkey&#187; jaffamonkey testing and development</title>
	<atom:link href="http://blog.jaffamonkey.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.jaffamonkey.com</link>
	<description></description>
	<lastBuildDate>Wed, 21 Jul 2010 09:25:18 +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>Tell me what to think, I am too stupid</title>
		<link>http://blog.jaffamonkey.com/2010/07/21/tell-me-what-to-think-i-am-too-stupid/</link>
		<comments>http://blog.jaffamonkey.com/2010/07/21/tell-me-what-to-think-i-am-too-stupid/#comments</comments>
		<pubDate>Wed, 21 Jul 2010 09:21:08 +0000</pubDate>
		<dc:creator>jaffamonkey</dc:creator>
				<category><![CDATA[attitude]]></category>
		<category><![CDATA[rant]]></category>

		<guid isPermaLink="false">http://blog.jaffamonkey.com/?p=3298</guid>
		<description><![CDATA[Sign or fine &#8211; the modern British way to deal with problems.  A large amount of council investment is in signs, which they believe is the best way to address modern problems such as anti-social behaviour, smoking, littering, what the green man on pedestrian crossing actually denotes, etc.  Now in London we have CCTV cars [...]]]></description>
			<content:encoded><![CDATA[<img style='float: left; margin-right: 10px; border: none;' src='http://www.gravatar.com/avatar.php?gravatar_id=b70ea5a3195a01a2151ee737c437b4bf&amp;default=http://jaffamonkey.com/wp-content/themes/lifecollage/images/jaffamonkey.png' alt='No Gravatar' width=40 height=40/><p><a href="http://blog.jaffamonkey.com/files/2010/07/they-live.jpg" rel="lightbox[3298]"><img class="alignleft size-thumbnail wp-image-3297" title="they-live" src="http://blog.jaffamonkey.com/files/2010/07/they-live-170x170.jpg" alt="" width="170" height="170" /></a>Sign or fine &#8211; the modern British way to deal with problems.  A large amount of council investment is in signs, which they believe is the best way to address modern problems such as anti-social behaviour, smoking, littering, what the green man on pedestrian crossing actually denotes, etc.  Now in London we have CCTV cars going round &#8211; sinister looking beetle shaped cars whose primary directive is to enforce sign orders, and gain revenue from fining people who generally dont cause trouble.  It could be a fear element &#8211; i.e. civil servants &#8211; from policemen to noise pollution officers choose to fight their battles from their desks &#8211; rather than in any kind of public forum.  <span id="more-3298"></span></p>
<p>The amount of warning and information signs beggars belief, especially given the lack of actual directional signs in London. And if any driver needs to be told to be careful in a built-up area, or that they shouldnt juggle their mobile phones whilst steering a tonne of metal at the same time with one hand, shouldnt be in a car.  It appears a large proportion of civil service spending is on signs for idiots and lazy people, with fines applied wherever possible (but not reasonable). </p>
<p>But given the level of policing and monitoring how on earth can they enforce it?  Thats where the camera cars come in, and I am sure this is thin edge of the wedge. What we have now is a government that fail at final hurdles every time &#8211; legislation is discussed/approved, then local council leap into action creating signs telling people, then fining people who ignore the all important signs. The cameras are there not to cut crime (unsolved crime is on the increase), but to enforce penalties.  As the majority of people are going about their work and other daily business, without a balaclava or a hoodie on, then these are the people that are ultimately victims of this system.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jaffamonkey.com/2010/07/21/tell-me-what-to-think-i-am-too-stupid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Command-line wordpress install</title>
		<link>http://blog.jaffamonkey.com/2010/07/13/command-line-wordpress-install/</link>
		<comments>http://blog.jaffamonkey.com/2010/07/13/command-line-wordpress-install/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 11:11:45 +0000</pubDate>
		<dc:creator>jaffamonkey</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[testing]]></category>

		<guid isPermaLink="false">http://blog.jaffamonkey.com/?p=3295</guid>
		<description><![CDATA[
ssh root@domain.com
cd /var/www/vhosts/domain.com/httpdocs/
wget http://wordpress.org/latest.zip
unzip latest.zip
cp -rf ./wordpress/* ./
mysql -uusername -ppassword
create database dbname
grant usage on *.* to username@localhost identified by &#8216;password&#8217;
grant all privileges on dbname.* to username@localhost
mv wp-config-sample.php wp-config.php
vi ./wp-config.php

]]></description>
			<content:encoded><![CDATA[<img style='float: left; margin-right: 10px; border: none;' src='http://www.gravatar.com/avatar.php?gravatar_id=b70ea5a3195a01a2151ee737c437b4bf&amp;default=http://jaffamonkey.com/wp-content/themes/lifecollage/images/jaffamonkey.png' alt='No Gravatar' width=40 height=40/><ul>
<li>ssh root@domain.com</li>
<li>cd /var/www/vhosts/domain.com/httpdocs/</li>
<li>wget http://wordpress.org/latest.zip</li>
<li>unzip latest.zip</li>
<li>cp -rf ./wordpress/* ./</li>
<li>mysql -uusername -ppassword</li>
<li>create database dbname</li>
<li>grant usage on *.* to username@localhost identified by &#8216;password&#8217;</li>
<li>grant all privileges on dbname.* to username@localhost</li>
<li>mv wp-config-sample.php wp-config.php</li>
<li>vi ./wp-config.php</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.jaffamonkey.com/2010/07/13/command-line-wordpress-install/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Domains for sale</title>
		<link>http://blog.jaffamonkey.com/2010/07/12/domains-for-sale/</link>
		<comments>http://blog.jaffamonkey.com/2010/07/12/domains-for-sale/#comments</comments>
		<pubDate>Mon, 12 Jul 2010 12:51:45 +0000</pubDate>
		<dc:creator>jaffamonkey</dc:creator>
				<category><![CDATA[Other things]]></category>
		<category><![CDATA[domain]]></category>

		<guid isPermaLink="false">http://blog.jaffamonkey.com/?p=3293</guid>
		<description><![CDATA[I have some domain names for sale

easystoragespace.com
redfishbluefish.co.uk
self-storage.in
testwith.us

Contact us for more details or to submit an offer
]]></description>
			<content:encoded><![CDATA[<img style='float: left; margin-right: 10px; border: none;' src='http://www.gravatar.com/avatar.php?gravatar_id=b70ea5a3195a01a2151ee737c437b4bf&amp;default=http://jaffamonkey.com/wp-content/themes/lifecollage/images/jaffamonkey.png' alt='No Gravatar' width=40 height=40/><p>I have some <a href="http://blog.jaffamonkey.com/tag/domain">domain</a> names for sale</p>
<ul>
<li>easystoragespace.com</li>
<li>redfishbluefish.co.uk</li>
<li>self-storage.in</li>
<li>testwith.us</li>
</ul>
<p><a title="Contact us" href="http://blog.jaffamonkey.com/contact-us/">Contact us for more details or to submit an offer</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jaffamonkey.com/2010/07/12/domains-for-sale/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TestGen4Web</title>
		<link>http://blog.jaffamonkey.com/2010/06/30/testgen4web/</link>
		<comments>http://blog.jaffamonkey.com/2010/06/30/testgen4web/#comments</comments>
		<pubDate>Wed, 30 Jun 2010 10:17:45 +0000</pubDate>
		<dc:creator>jaffamonkey</dc:creator>
				<category><![CDATA[testing]]></category>
		<category><![CDATA[automated-testing]]></category>

		<guid isPermaLink="false">http://blog.jaffamonkey.com/?p=3291</guid>
		<description><![CDATA[A very nice test plugin (and easier to comprehend and use that Selenium IDE), this robust plugin easily enables basic automated front end testing.  And easy use of CSV file to apply data to your recorded test scripts.  Knowledge of scripting is helpful &#8211; there are no automated test tools that can be [...]]]></description>
			<content:encoded><![CDATA[<img style='float: left; margin-right: 10px; border: none;' src='http://www.gravatar.com/avatar.php?gravatar_id=b70ea5a3195a01a2151ee737c437b4bf&amp;default=http://jaffamonkey.com/wp-content/themes/lifecollage/images/jaffamonkey.png' alt='No Gravatar' width=40 height=40/><p><a href="http://developer.spikesource.com/wiki/index.php?title=Projects:TestGen4WebDocs"><img src="http://blog.jaffamonkey.com/files/2010/06/Wiki_testgen4web_flow-199x103.png" alt="" title="Wiki_testgen4web_flow" width="199" height="103" class="alignleft size-thumbnail wp-image-3287" /></a>A very nice test plugin (and easier to comprehend and use that Selenium IDE), this robust plugin easily enables basic automated front end <a href="http://blog.jaffamonkey.com/tag/testing">testing</a>.  And easy use of CSV file to apply data to your recorded test scripts.  Knowledge of scripting is helpful &#8211; there are no automated test tools that can be presented to a complete novice, but boning up a little on scripting will really enable you to outlier this tool to its potential.  There is not too much difference to other similar browser plugins &#8211; what always draws me to one rather than another is usability and stability.</p>
<p><a href="http://developer.spikesource.com/docman/view.php/14/850/tg4w-dataset.htm" target="_blank">Look at this video guide</a>  &#8211; it will explain the concepts pretty well (using the very useful CSV mapping feature as theme).</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jaffamonkey.com/2010/06/30/testgen4web/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>User testing on a diet</title>
		<link>http://blog.jaffamonkey.com/2010/06/27/slideshare-user-testing-on-a-diet/</link>
		<comments>http://blog.jaffamonkey.com/2010/06/27/slideshare-user-testing-on-a-diet/#comments</comments>
		<pubDate>Sun, 27 Jun 2010 16:45:30 +0000</pubDate>
		<dc:creator>blog</dc:creator>
				<category><![CDATA[testing]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://blog.jaffamonkey.com/2010/06/27/slideshare-user-testing-on-a-diet/</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<img style='float: left; margin-right: 10px; border: none;' src='http://www.gravatar.com/avatar.php?gravatar_id=b449dd01fdba975a17953bb91f248eee&amp;default=http://jaffamonkey.com/wp-content/themes/lifecollage/images/jaffamonkey.png' alt='No Gravatar' width=40 height=40/><p><object id="__sse3974238" width="425" height="355"><param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=losing-weight-100505045352-phpapp01&#038;stripped_title=user-<a href="http://blog.jaffamonkey.com/tag/testing">testing</a>-on-a-diet" /><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed name="__sse3974238" src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=losing-weight-100505045352-phpapp01&#038;stripped_title=user-testing-on-a-diet" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jaffamonkey.com/2010/06/27/slideshare-user-testing-on-a-diet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Usability as a fashion trend</title>
		<link>http://blog.jaffamonkey.com/2010/06/01/usability-as-a-fashion-trend/</link>
		<comments>http://blog.jaffamonkey.com/2010/06/01/usability-as-a-fashion-trend/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 18:54:20 +0000</pubDate>
		<dc:creator>jaffamonkey</dc:creator>
				<category><![CDATA[testing]]></category>
		<category><![CDATA[accessibility]]></category>
		<category><![CDATA[agile]]></category>
		<category><![CDATA[coding standards]]></category>
		<category><![CDATA[SCRUM]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[wcag]]></category>
		<category><![CDATA[web accessibility]]></category>

		<guid isPermaLink="false">http://blog.jaffamonkey.com/?p=3270</guid>
		<description><![CDATA[Usability is beginning to get treated like a constant software update &#8211; I was recently asked how current my usability QA Management was.  If February this years isn&#8217;t, then I would have to start laughing.  Standards aren&#8217;t software updates &#8211; why this perception exists is basic misunderstanding of what web usablity is about (it is [...]]]></description>
			<content:encoded><![CDATA[<img style='float: left; margin-right: 10px; border: none;' src='http://www.gravatar.com/avatar.php?gravatar_id=b70ea5a3195a01a2151ee737c437b4bf&amp;default=http://jaffamonkey.com/wp-content/themes/lifecollage/images/jaffamonkey.png' alt='No Gravatar' width=40 height=40/><p><img class="alignright size-thumbnail wp-image-3273" title="usability" src="http://blog.jaffamonkey.com/files/2010/06/usability-170x170.jpg" alt="" width="170" height="170" />Usability is beginning to get treated like a constant software update &#8211; I was recently asked how current my usability QA Management was.  If February this years isn&#8217;t, then I would have to start laughing.  Standards aren&#8217;t software updates &#8211; why this perception exists is basic misunderstanding of what web usablity is about (it is a huge area of <a href="http://blog.jaffamonkey.com/tag/testing">testing</a>), combined with middle management keenness to turn everything possible into a buzzword, a marketing tool to senior management &#8211; we do it differently, we do it right.  If only.  Usability encompasses primarily front-end tests in user exepreince, web <a href="http://blog.jaffamonkey.com/tag/accessibility">accessibility</a> (the oft forgottten) <a href="http://blog.jaffamonkey.com/tag/coding-standards">coding standards</a>, design heuristics.  Back-end tests include load testing based on user stories (scenarios) to simulate an realistic load.</p>
<p>Understanding the audience is a first consideration, but this shouldnt be barrier for adopting a more flexible approach &#8211; no company should be arrogant enough to think they know everything about their marketing demographic.</p>
<p>Web Accessibility is overlooked, but a sizeable proportion of a web audience is affected by simple things such as colour. It&#8217;s estimated that one in 12 men and one in 200 women have some form of colour blindness (Source: <a href="http://www.iee.org/Policy/Areas/Health/cvdintro.cfm"><acronym title="Institution of Electrical Engineers">IEE</acronym></a>). You can check how Internet users with different strains of colour blindness are viewing your website with <a href="http://www.vischeck.com/vischeck/vischeckURL.php">Vischeck</a>.  Other people who may access your website that have disadvantages include:</p>
<ol>
<li>Some <strong>epileptic users</strong> who must always be careful to avoid seeing flickering between 2 and 55 Hz</li>
<li>Web users from <strong>outside your industry</strong> who may not understand industry jargon or acronyms</li>
<li>Web users whose <strong>first language is not English</strong> and who may not be able to comprehend complicated language</li>
</ol>
<p>I get suprising resistance to standards, but in a way not &#8211; its almost akin to schoolboy/girl obstinacy.   Observing the well defined standards can really prevent basic problems, and code quality is important for maintenance, performance and cross-device/browser friendliness.  This alone would improve a sites overall <a href="http://blog.jaffamonkey.com/tag/usability">usability</a>.  Now this is where usability gets larger &#8211; functionality &#8211; often excluded in a usablity remit plan, but ludicrous.   Poor functionality = poor usability.</p>
<p>This highlights a problem with testing still &#8211; the way managers, with little knowlege of project lifecycle, refactor/rework testing principles for aims other than doing things right &#8211; or worse, in misguided belief they are doing the right thing.  Testing/QA is a skill, like any other IT discipline.  Agile/<a href="http://blog.jaffamonkey.com/tag/scrum">SCRUM</a> impacted this further with large degree of woolliness of QA and Project Management.  The reliance is heavily on rounded skilled developers &#8211; which are minority.  Although Agile/SCRUM focus on requirements, largely project management is left out of equation.  Managment feel confidence that there are daily meetings (though largely these are run ineffectively), but I have seen a lot of damage created at these meetings.  Usually too long, too few people, and sometimes overly detailed.  It should be an account of work done, current work impediments.  All other discussions should be offline, and only concern relevant people.  There is no point on holding work up, because two people decide o descend into a database schema argument.</p>
<p>I mention Agile/SCRUM because these environments can allow usability to be part and parcel of development.  The rapid dev/test turnaround can easily incorporate standards checks.  And if the Agile philosophy is applied correctly on user stories and Product Manager input from the client perspective this will keep the expected user experience on track.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jaffamonkey.com/2010/06/01/usability-as-a-fashion-trend/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Design vs Development</title>
		<link>http://blog.jaffamonkey.com/2010/05/31/design-vs-development/</link>
		<comments>http://blog.jaffamonkey.com/2010/05/31/design-vs-development/#comments</comments>
		<pubDate>Mon, 31 May 2010 13:14:36 +0000</pubDate>
		<dc:creator>jaffamonkey</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[testing]]></category>
		<category><![CDATA[accessibility]]></category>
		<category><![CDATA[coding standards]]></category>
		<category><![CDATA[wcag]]></category>
		<category><![CDATA[web accessibility]]></category>

		<guid isPermaLink="false">http://blog.jaffamonkey.com/?p=3267</guid>
		<description><![CDATA[Somewhere along the line in web development (late 1990&#8217;s at a guess), design was firmly decoupled from development.   Then as design tools became more complex, design incorporated development of its own.  This was right and proper, and in keeping with traditional software development &#8211; frontend and backend.  But what we ended [...]]]></description>
			<content:encoded><![CDATA[<img style='float: left; margin-right: 10px; border: none;' src='http://www.gravatar.com/avatar.php?gravatar_id=b70ea5a3195a01a2151ee737c437b4bf&amp;default=http://jaffamonkey.com/wp-content/themes/lifecollage/images/jaffamonkey.png' alt='No Gravatar' width=40 height=40/><p><img class="alignleft size-thumbnail wp-image-3268" title="stop" src="http://blog.jaffamonkey.com/files/2010/05/stop-170x170.png" alt="website design problems" width="170" height="170" />Somewhere along the line in web development (late 1990&#8217;s at a guess), design was firmly decoupled from development.   Then as design tools became more complex, design incorporated development of its own.  This was right and proper, and in keeping with traditional software development &#8211; frontend and backend.  But what we ended up with are designers who are poor coders, but expected to do that work by default.  While perfection is impossible to achieve, a small amount of coding from a designer, can wreck a lot of a website&#8217;s aim, i.e. quality.  Running most websites through <a href="http://blog.jaffamonkey.com/tag/coding-standards">coding standards</a> checkers highlights the main problems.</p>
<p>1. Sloppy coding (missing Alt tags still irritatingly common).<br />
2. Adopting the latest development options without considering backwards compatibility.</p>
<p>Point 1.  is a very common guilt, including myself.  It is to do with attitude &#8211; on this site, I employ a constant reasonning of &#8220;I will do it later&#8221;.  Fair enough for a blog site, though I chide myself that by employing this attitude I am creating <a href="http://blog.jaffamonkey.com/tag/accessibility">accessibility</a> and usability issues I harp on about in a professional QA capacity.  As I also develop, I do have a more sympathetic and pragmatic approach that most QA people.  Designers and developers are usually overworked, so my argument is that this kind of clean-up work should at least be prioritized and scheduled. A more sensitive scenario however is that the designer in question is not sufficently skilled enough to really understand what the problems are, and hence will just repeat them.</p>
<p>It is not job of contract staff to point out weaknesses in development &#8211; it can simply look &#8220;bitchy&#8221;.  However, testing can be an easy scapegoat for a management and development, so how can you protect your corner?  Pushing the case for enforcing standards.  The more chaotic the development, the easier it is to sell this case.  As a minimum released code to conform to XHTML Transitional, CSS 2.1 and WCAG Level A.  These are versions that I currently consider to be safe for most OS/Browser combinations AND (perhaps more importantly) maintainable.   That is not expecting too much.   But just passing it once is not enough, the checks should be run for every release.  Anyone who resists this is plain lazy, or plain doesn&#8217;t understand even the basics of good web development.   Good design is all well and good, but not if it causes problems for large sections of your audience.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jaffamonkey.com/2010/05/31/design-vs-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Look after the weak not the chavs and bankers</title>
		<link>http://blog.jaffamonkey.com/2010/05/28/look-after-the-weak-not-the-chavs-and-bankers/</link>
		<comments>http://blog.jaffamonkey.com/2010/05/28/look-after-the-weak-not-the-chavs-and-bankers/#comments</comments>
		<pubDate>Fri, 28 May 2010 10:08:52 +0000</pubDate>
		<dc:creator>jaffamonkey</dc:creator>
				<category><![CDATA[attitude]]></category>

		<guid isPermaLink="false">http://blog.jaffamonkey.com/?p=3253</guid>
		<description><![CDATA[After watching a frustrating Question Time, it seems this country&#8217;s leaders have learnt no lessons.  When Piers Morgan appears to be only person talking sense, that is a big cause of worry!  We still primarily look after people who do nothing, whatever the reason.  For a long time now workers have felt [...]]]></description>
			<content:encoded><![CDATA[<img style='float: left; margin-right: 10px; border: none;' src='http://www.gravatar.com/avatar.php?gravatar_id=b70ea5a3195a01a2151ee737c437b4bf&amp;default=http://jaffamonkey.com/wp-content/themes/lifecollage/images/jaffamonkey.png' alt='No Gravatar' width=40 height=40/><p>After watching a frustrating Question Time, it seems this country&#8217;s leaders have learnt no lessons.  When Piers Morgan appears to be only person talking sense, that is a big cause of worry!  We still primarily look after people who do nothing, whatever the reason.  For a long time now workers have felt at the thin end of the edge &#8211; self-employed people even more so, thanks to Labour creating an air of mistrust of anyone operating this way.  </p>
<p>We should look after the weak and the sick, not the greedy, the stupid and the lazy.  I am tired of pumping money into a system that largely wastes money.  We are still being ripped off and lied to.  Banks received so much support, yet none of that public financial support has filtered down. How much more are we going to take before we start storming the government building and banks?  I am starting to feel I would like to be at the front, complete with Wat Tyler-style pitchfork!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jaffamonkey.com/2010/05/28/look-after-the-weak-not-the-chavs-and-bankers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Agency speak (or when to put the phone down)</title>
		<link>http://blog.jaffamonkey.com/2010/05/27/agency-speak/</link>
		<comments>http://blog.jaffamonkey.com/2010/05/27/agency-speak/#comments</comments>
		<pubDate>Thu, 27 May 2010 14:11:35 +0000</pubDate>
		<dc:creator>jaffamonkey</dc:creator>
				<category><![CDATA[attitude]]></category>
		<category><![CDATA[agency]]></category>

		<guid isPermaLink="false">http://blog.jaffamonkey.com/?p=3249</guid>
		<description><![CDATA[
I saw your CV on [Jobserve/Jobsite/Monster/Linkedin etc] &#8230;.
I am bored, and trying to fill my day by searching cv&#8217;s, and contacting people in vague hope I will get a lead, or at the very least polish up my sales talk.
So what is [Enter technology/buzzword/acronym here] &#8230;.
I am too lazy to use google, and frankly have [...]]]></description>
			<content:encoded><![CDATA[<img style='float: left; margin-right: 10px; border: none;' src='http://www.gravatar.com/avatar.php?gravatar_id=b70ea5a3195a01a2151ee737c437b4bf&amp;default=http://jaffamonkey.com/wp-content/themes/lifecollage/images/jaffamonkey.png' alt='No Gravatar' width=40 height=40/><p><a href="http://blog.jaffamonkey.com/files/2010/05/ignorant1.jpg" rel="lightbox[3249]"><img src="http://blog.jaffamonkey.com/files/2010/05/ignorant1-170x170.jpg" alt="" title="ignorant" width="170" height="170" class="alignright size-thumbnail wp-image-3252" /></a><br />
<strong><em>I saw your CV on [<span style="color: #339966;">Jobserve/Jobsite/Monster/Linkedin etc</span>] &#8230;.</em></strong></p>
<p>I am bored, and trying to fill my day by searching cv&#8217;s, and contacting people in vague hope I will get a lead, or at the very least polish up my sales talk.</p>
<p><strong><em>So what is [<span style="color: #339966;">Enter technology/buzzword/acronym here</span>] &#8230;.</em></strong></p>
<p>I am too lazy to use google, and frankly have no expertise in area I am hiring for.   Hence why I try to pronounce SQL as &#8220;Squirrel&#8221; and  Agile as &#8220;Aggile&#8221;.</p>
<p><strong><em>We have a number of roles we are recruiting for in [<span style="color: #339966;">enter location/sector relevant to cv in front of agent</span>] </em></strong></p>
<p>We, along with every other <a href="http://blog.jaffamonkey.com/tag/agency">agency</a>, have a number of roles to fill at any one time, but we need some decent cv&#8217;s to get a look in.</p>
<p><strong><em>Oh, I know a few people from people there &#8211; who did you work with?  Do you know [<span style="color: #339966;">enter made-up name here</span>]? No?  Then who did you work with down there?<br />
</em></strong></p>
<p>I am not interested in finding you work, I just lied about the opportunity that was available.  I just want to get some easy access to people in your previous companies, and in doing so annoy your previous employers.</p>
<p><strong><em>We will need a reference before we can put your forward for this [<span style="color: #339966;">fantasy</span>] position</em></strong></p>
<p>As above &#8230;</p>
<p><strong><em>We pay on monthly invoices and you will be paid within 1-2 weeks after that.</em></strong></p>
<p>We dont have enough float to pay you in decent time frame, even though we are earning commission from you.   We have no hope of paying you on time, unless the company we are resourcing for pays us on time.<em></em></p>
<p><strong><em>We don&#8217;t give out our commission rate</em></strong></p>
<p>We take too much, and also ignorant of the law<em>.<br />
</em></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jaffamonkey.com/2010/05/27/agency-speak/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>More Fun With Agile</title>
		<link>http://blog.jaffamonkey.com/2010/05/24/3245/</link>
		<comments>http://blog.jaffamonkey.com/2010/05/24/3245/#comments</comments>
		<pubDate>Mon, 24 May 2010 19:15:55 +0000</pubDate>
		<dc:creator>jaffamonkey</dc:creator>
				<category><![CDATA[testing]]></category>
		<category><![CDATA[agile]]></category>

		<guid isPermaLink="false">http://blog.jaffamonkey.com/?p=3245</guid>
		<description><![CDATA[
Agile testing does not emphasize rigidly defined testing procedures, but rather focuses on testing iteratively against newly developed code until quality is achieved from an end customer&#8217;s perspective. In other words, the emphasis is shifted from &#8220;testers as quality police&#8221; to something more like &#8220;entire project team working toward demonstrable quality.&#8221;
http://en.wikipedia.org/wiki/Agile_testing
I can only speak for [...]]]></description>
			<content:encoded><![CDATA[<img style='float: left; margin-right: 10px; border: none;' src='http://www.gravatar.com/avatar.php?gravatar_id=b70ea5a3195a01a2151ee737c437b4bf&amp;default=http://jaffamonkey.com/wp-content/themes/lifecollage/images/jaffamonkey.png' alt='No Gravatar' width=40 height=40/><p><a rel="attachment wp-att-3247" href="http://blog.jaffamonkey.com/2010/05/24/3245/standing/"><img class="alignleft size-thumbnail wp-image-3247" title="standing" src="http://blog.jaffamonkey.com/files/2010/05/standing-170x170.jpg" alt="" width="170" height="170" /></a></p>
<blockquote><p>Agile testing does not emphasize rigidly defined testing procedures, but rather focuses on testing iteratively against newly developed code until quality is achieved from an end customer&#8217;s perspective. In other words, the emphasis is shifted from &#8220;testers as quality police&#8221; to something more like &#8220;entire project team working toward demonstrable quality.&#8221;</p>
<p>http://en.wikipedia.org/wiki/Agile_testing</p></blockquote>
<p>I can only speak for UK here, but I am sure my experience is not uncommon.  Largely companies are incapable of applying Agile methodology is anything but a short-term fashion.  And even then apply in wrongly, drowning themselves in <a href="http://blog.jaffamonkey.com/tag/agile">agile</a> tools (built by and for &#8220;tools&#8221;).  Agile software is big business, but largely useless.  That is not what Agile is about, and its interesting that only Selenium seems to be associated with Agile, in terms of test automation.  Agile was about cutting through the red tape, inspiring developers, giving end clients something half resembling what they want, and most importantly allowing all project members to contribute and suggest.  This only works if your Agile team is competent, but in the UK we suffer particularly from the Peter Principle &#8211; many managers exist who shouldn&#8217;t be there.  With Agile the Product Owner is usually a distant figure (commonly having other roles to perform), and development is largely left to its own devices.  A more pragmatic approach (given the woolliness of UK management) is to adopt SCRUM more fully.</p>
<p>SCRUM is child of Agile, and very focussed on the development/test cycle.   As the role of project manager is becoming role that people shy away from, all manner of project structure can arise  &#8211; sometimes bizarre.   Developers can be very independent &#8211; if they don&#8217;t have, or are not given direction, they will find one.  Then if the ineffective managers take um-bridge to this usurping of authority they react in peculiar way.  They make the direction decisions.  Agile attracts the lazy managers who are simply looking to the top.  Eradicate these useless individuals by taking charge of a project with an effective PROJECT MANAGER.  Every project needs a &#8220;buck-stops-here&#8221; lead.  Product Owners are effective for requirements, but to leave them in the daily development pit is madness.   Project Manager, Development Team, Development/Test Manager and Tester(s).  OK, I am rewriting the rules a little &#8211; but as I have been stuck in Agile world for some time, I feel my opinion is wholly valid.  Agile has become a smokescreen, a tool people use not to develop good software, by develop their own selfish paths (regardless of damage).  Age should not be a team barrier, but anyone refusing to evolve with technology and methodology should be given marching orders.  And, contrary to our bizarre hiring/firing culture, incompetence has no place on an Agile project, and can be very damaging to overall effort.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jaffamonkey.com/2010/05/24/3245/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
