<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
<channel>
	<title>Comments for DevChix</title>
	
	<link>http://www.devchix.com</link>
	<description>Boys can't have all the fun</description>
	<pubDate>Mon, 06 Jul 2009 02:45:31 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/CommentsForDevchix" type="application/rss+xml" /><item>
		<title>Comment on A Hello World for Ruby on Ragel 6.0 by Ana Nelson</title>
		<link>http://feedproxy.google.com/~r/CommentsForDevchix/~3/7DWAeRELjog/</link>
		<dc:creator>Ana Nelson</dc:creator>
		<pubDate>Fri, 03 Jul 2009 21:49:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.devchix.com/2008/01/13/a-hello-world-for-ruby-on-ragel-60/#comment-30917</guid>
		<description>Images fixed and links updated for the new complang.org home of Ragel.</description>
		<content:encoded><![CDATA[<p>Images fixed and links updated for the new complang.org home of Ragel.</p>
]]></content:encoded>
	<feedburner:origLink>http://www.devchix.com/2008/01/13/a-hello-world-for-ruby-on-ragel-60/comment-page-1/#comment-30917</feedburner:origLink></item>
	<item>
		<title>Comment on I Love Python: ReSTful DB CRUD dispatching using CherryPy by desfrenes</title>
		<link>http://feedproxy.google.com/~r/CommentsForDevchix/~3/hR2c0NjjIl0/</link>
		<dc:creator>desfrenes</dc:creator>
		<pubDate>Fri, 03 Jul 2009 19:33:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.devchix.com/?p=230#comment-30916</guid>
		<description>Nice tip !

I'm balancing between Cherrypy and web.py but I guess Cherrypy could be a better choice for RPC applications.</description>
		<content:encoded><![CDATA[<p>Nice tip !</p>
<p>I&#8217;m balancing between Cherrypy and web.py but I guess Cherrypy could be a better choice for RPC applications.</p>
]]></content:encoded>
	<feedburner:origLink>http://www.devchix.com/2009/04/19/i-love-python-restful-db-crud-dispatching-using-cherrypy/comment-page-1/#comment-30916</feedburner:origLink></item>
	<item>
		<title>Comment on An Introduction to Selenium IDE by Fatima</title>
		<link>http://feedproxy.google.com/~r/CommentsForDevchix/~3/wHkmb53KmOE/</link>
		<dc:creator>Fatima</dc:creator>
		<pubDate>Tue, 30 Jun 2009 16:25:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.devchix.com/2007/02/19/an-introduction-to-selenium-ide/#comment-30911</guid>
		<description>Here is a link to perform data driven testing on Selenium IDE:
http://wiki.openqa.org/display/SEL/datadriven</description>
		<content:encoded><![CDATA[<p>Here is a link to perform data driven testing on Selenium IDE:<br />
<a href="http://wiki.openqa.org/display/SEL/datadriven" rel="nofollow">http://wiki.openqa.org/display/SEL/datadriven</a></p>
]]></content:encoded>
	<feedburner:origLink>http://www.devchix.com/2007/02/19/an-introduction-to-selenium-ide/comment-page-2/#comment-30911</feedburner:origLink></item>
	<item>
		<title>Comment on Using YUI DataTable with Rails by ann</title>
		<link>http://feedproxy.google.com/~r/CommentsForDevchix/~3/qI6PBj524do/</link>
		<dc:creator>ann</dc:creator>
		<pubDate>Wed, 24 Jun 2009 06:48:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.devchix.com/?p=199#comment-30907</guid>
		<description>if you show the result with an example will be more useful...</description>
		<content:encoded><![CDATA[<p>if you show the result with an example will be more useful&#8230;</p>
]]></content:encoded>
	<feedburner:origLink>http://www.devchix.com/2009/02/07/using-yui-datatable-with-rails/comment-page-1/#comment-30907</feedburner:origLink></item>
	<item>
		<title>Comment on An Introduction to Selenium IDE by Ravi</title>
		<link>http://feedproxy.google.com/~r/CommentsForDevchix/~3/N1MtqXzyv5U/</link>
		<dc:creator>Ravi</dc:creator>
		<pubDate>Tue, 23 Jun 2009 06:28:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.devchix.com/2007/02/19/an-introduction-to-selenium-ide/#comment-30906</guid>
		<description>Hi,

I am posting a small example on how to extract data from an external file for the login flow with username and password.
In a text file or excel have two fields.
username = "xyz"
password = "abc"
Make sure before you run the following script, the appropriate java classes are imported.

public class Login extends TestsDataSetUp
{
	Properties pros = new Properties();
	File fil = new File("Logindetails.txt");

	public void setUp() throws Exception
	{
		FileInputStream fis = new FileInputStream(fil);
		pros.load(fis);
		super.setUp();
		fis.close();
	}

	public void testnoDetails() throws Exception
	{
		String email = null;
		String pass = null;

		FileInputStream fis = new FileInputStream(fil);
		selenium.open("/home/");
		captureImage();
		selenium.click("enter the link which you want to open");
		for (int second = 0;; second++)
		{
			if (second &gt;= 60) fail("timeout");
			try { if (selenium.isVisible("enter the login button id here")) break; } catch (Exception e)
			{
				System.out.println(e);
			}
			Thread.sleep(1000);
		}

		try{
			pros.load(fis);
			email = pros.getProperty("username");
			pass = pros.getProperty("password");

			selenium.type("loginName", email);
			selenium.type("password", pass);
			selenium.click("loginButton_button");

		if ((email.toString().equals("")) &amp;&amp; (email.toString().equals("")))
		{
				for (int second = 0;; second++)
				{
					if (second &gt;= 60) fail("timeout");
					try { if (selenium.isElementPresent("check for any element present for selenium to wait till that loads"))
						break;
					} catch (Exception e)
					{
						System.out.println(e);
					}
					Thread.sleep(1000);
				}
			}
			fis.close();
		}catch(Exception e){}
	}</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I am posting a small example on how to extract data from an external file for the login flow with username and password.<br />
In a text file or excel have two fields.<br />
username = &#8220;xyz&#8221;<br />
password = &#8220;abc&#8221;<br />
Make sure before you run the following script, the appropriate java classes are imported.</p>
<p>public class Login extends TestsDataSetUp<br />
{<br />
	Properties pros = new Properties();<br />
	File fil = new File(&#8221;Logindetails.txt&#8221;);</p>
<p>	public void setUp() throws Exception<br />
	{<br />
		FileInputStream fis = new FileInputStream(fil);<br />
		pros.load(fis);<br />
		super.setUp();<br />
		fis.close();<br />
	}</p>
<p>	public void testnoDetails() throws Exception<br />
	{<br />
		String email = null;<br />
		String pass = null;</p>
<p>		FileInputStream fis = new FileInputStream(fil);<br />
		selenium.open(&#8221;/home/&#8221;);<br />
		captureImage();<br />
		selenium.click(&#8221;enter the link which you want to open&#8221;);<br />
		for (int second = 0;; second++)<br />
		{<br />
			if (second &gt;= 60) fail(&#8221;timeout&#8221;);<br />
			try { if (selenium.isVisible(&#8221;enter the login button id here&#8221;)) break; } catch (Exception e)<br />
			{<br />
				System.out.println(e);<br />
			}<br />
			Thread.sleep(1000);<br />
		}</p>
<p>		try{<br />
			pros.load(fis);<br />
			email = pros.getProperty(&#8221;username&#8221;);<br />
			pass = pros.getProperty(&#8221;password&#8221;);</p>
<p>			selenium.type(&#8221;loginName&#8221;, email);<br />
			selenium.type(&#8221;password&#8221;, pass);<br />
			selenium.click(&#8221;loginButton_button&#8221;);</p>
<p>		if ((email.toString().equals(&#8221;")) &amp;&amp; (email.toString().equals(&#8221;")))<br />
		{<br />
				for (int second = 0;; second++)<br />
				{<br />
					if (second &gt;= 60) fail(&#8221;timeout&#8221;);<br />
					try { if (selenium.isElementPresent(&#8221;check for any element present for selenium to wait till that loads&#8221;))<br />
						break;<br />
					} catch (Exception e)<br />
					{<br />
						System.out.println(e);<br />
					}<br />
					Thread.sleep(1000);<br />
				}<br />
			}<br />
			fis.close();<br />
		}catch(Exception e){}<br />
	}</p>
]]></content:encoded>
	<feedburner:origLink>http://www.devchix.com/2007/02/19/an-introduction-to-selenium-ide/comment-page-2/#comment-30906</feedburner:origLink></item>
	<item>
		<title>Comment on ai ai ai: more porn at a conference, this time hardcore by Jennifer Lindner</title>
		<link>http://feedproxy.google.com/~r/CommentsForDevchix/~3/XrGOBbp5u5c/</link>
		<dc:creator>Jennifer Lindner</dc:creator>
		<pubDate>Fri, 19 Jun 2009 17:14:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.devchix.com/?p=339#comment-30903</guid>
		<description>Well this incident happened at a Flash conference, so the offenders in question aren't Rails developers. But let's face it, when the shoe fits it fits across technologies.</description>
		<content:encoded><![CDATA[<p>Well this incident happened at a Flash conference, so the offenders in question aren&#8217;t Rails developers. But let&#8217;s face it, when the shoe fits it fits across technologies.</p>
]]></content:encoded>
	<feedburner:origLink>http://www.devchix.com/2009/06/17/ai-ai-ai-more-porn-at-a-conference-this-time-hardcore/comment-page-1/#comment-30903</feedburner:origLink></item>
	<item>
		<title>Comment on ai ai ai: more porn at a conference, this time hardcore by Eleanor McHugh</title>
		<link>http://feedproxy.google.com/~r/CommentsForDevchix/~3/70uUFUtlaV8/</link>
		<dc:creator>Eleanor McHugh</dc:creator>
		<pubDate>Wed, 17 Jun 2009 22:11:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.devchix.com/?p=339#comment-30899</guid>
		<description>These incidents just prove how immature some developers in the Rails world are. But it's nothing new. I remember guys in the 80s having pornographic ASCII art in their login scripts on the uni mainframes and wondering why it was I and other women used to get offended by that.

Most of them thought they were real cool hax0rs, but mostly they were lame arses who could barely code and knew nothing about hacker culture aside from the WarGames stereotype and having read a couple of Gibson novels. Hit them with phrack, 2600 or 411 and they'd have been lost. Ask them to be a Mondo 2000 cover model, and they'd have thought they'd died and gone to silicon heaven.

Porn isn't cool. It's just porn. It's got nothing to do with creating technology, so sticking it in a tech presentation is just dumb. Am I offended as a woman? Yes. But nowhere near as much as I'm offended as a hacker and technologist. Porn imagery - soft or otherwise - isn't just about objectifying my gender, it's about dumbing down the entire presentation. It's as if the presenter is not only denying the presence of women in tech, it's as if they're saying that the guys there are so clueless that they need that kind of imagery to keep them interested.

That's an insult to all of us, regardless of gender.</description>
		<content:encoded><![CDATA[<p>These incidents just prove how immature some developers in the Rails world are. But it&#8217;s nothing new. I remember guys in the 80s having pornographic ASCII art in their login scripts on the uni mainframes and wondering why it was I and other women used to get offended by that.</p>
<p>Most of them thought they were real cool hax0rs, but mostly they were lame arses who could barely code and knew nothing about hacker culture aside from the WarGames stereotype and having read a couple of Gibson novels. Hit them with phrack, 2600 or 411 and they&#8217;d have been lost. Ask them to be a Mondo 2000 cover model, and they&#8217;d have thought they&#8217;d died and gone to silicon heaven.</p>
<p>Porn isn&#8217;t cool. It&#8217;s just porn. It&#8217;s got nothing to do with creating technology, so sticking it in a tech presentation is just dumb. Am I offended as a woman? Yes. But nowhere near as much as I&#8217;m offended as a hacker and technologist. Porn imagery - soft or otherwise - isn&#8217;t just about objectifying my gender, it&#8217;s about dumbing down the entire presentation. It&#8217;s as if the presenter is not only denying the presence of women in tech, it&#8217;s as if they&#8217;re saying that the guys there are so clueless that they need that kind of imagery to keep them interested.</p>
<p>That&#8217;s an insult to all of us, regardless of gender.</p>
]]></content:encoded>
	<feedburner:origLink>http://www.devchix.com/2009/06/17/ai-ai-ai-more-porn-at-a-conference-this-time-hardcore/comment-page-1/#comment-30899</feedburner:origLink></item>
	<item>
		<title>Comment on ai ai ai: more porn at a conference, this time hardcore by Susan Potter</title>
		<link>http://feedproxy.google.com/~r/CommentsForDevchix/~3/RGe_Dea8IqQ/</link>
		<dc:creator>Susan Potter</dc:creator>
		<pubDate>Wed, 17 Jun 2009 17:29:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.devchix.com/?p=339#comment-30897</guid>
		<description>A very thoughtful response.  Last week I went to a quantitative finance workshop in NYC and the atmosphere was so far removed from the culture and setting often found in the software development sphere, especially when compared and contrasted to the "rock star" Ruby on Rails world.</description>
		<content:encoded><![CDATA[<p>A very thoughtful response.  Last week I went to a quantitative finance workshop in NYC and the atmosphere was so far removed from the culture and setting often found in the software development sphere, especially when compared and contrasted to the &#8220;rock star&#8221; Ruby on Rails world.</p>
]]></content:encoded>
	<feedburner:origLink>http://www.devchix.com/2009/06/17/ai-ai-ai-more-porn-at-a-conference-this-time-hardcore/comment-page-1/#comment-30897</feedburner:origLink></item>
	<item>
		<title>Comment on O’Reilly Mother’s Day Discount: Get yours! by gaba</title>
		<link>http://feedproxy.google.com/~r/CommentsForDevchix/~3/nwlVm2w47lo/</link>
		<dc:creator>gaba</dc:creator>
		<pubDate>Thu, 21 May 2009 14:46:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.devchix.com/?p=306#comment-30872</guid>
		<description>Great initiative! I bought some books with this discount.</description>
		<content:encoded><![CDATA[<p>Great initiative! I bought some books with this discount.</p>
]]></content:encoded>
	<feedburner:origLink>http://www.devchix.com/2009/05/09/oreilly-mothers-day-discount-get-yours/comment-page-1/#comment-30872</feedburner:origLink></item>
	<item>
		<title>Comment on A Hello World for Ruby on Ragel 6.0 by afriza</title>
		<link>http://feedproxy.google.com/~r/CommentsForDevchix/~3/t9WePvGvY3M/</link>
		<dc:creator>afriza</dc:creator>
		<pubDate>Wed, 20 May 2009 08:58:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.devchix.com/2008/01/13/a-hello-world-for-ruby-on-ragel-60/#comment-30869</guid>
		<description>Hi, the images are broken as per 20th May 2009.</description>
		<content:encoded><![CDATA[<p>Hi, the images are broken as per 20th May 2009.</p>
]]></content:encoded>
	<feedburner:origLink>http://www.devchix.com/2008/01/13/a-hello-world-for-ruby-on-ragel-60/comment-page-1/#comment-30869</feedburner:origLink></item>
</channel>
</rss>
