<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	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/"
	>
<channel>
	<title>Comments for Tess Barnes</title>
	<atom:link href="http://crataegusdesign.co.uk/tjfolder/?feed=comments-rss2" rel="self" type="application/rss+xml" />
	<link>http://crataegusdesign.co.uk/tjfolder</link>
	<description>Freelance developer and female geek</description>
	<pubDate>Fri, 10 Sep 2010 05:08:52 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Three things I wish I&#8217;d known before … by Cyberspice</title>
		<link>http://crataegusdesign.co.uk/tjfolder/?p=274&#038;cpage=1#comment-237</link>
		<dc:creator>Cyberspice</dc:creator>
		<pubDate>Mon, 01 Jun 2009 11:40:38 +0000</pubDate>
		<guid isPermaLink="false">http://crataegusdesign.co.uk/tjfolder/?p=274#comment-237</guid>
		<description>An alternative to the CLASSPATH environment variable is providing the path on the command line.  I.e.

java -cp d:\myclasses MyClass 

(-cp can also be written as -classpath)

This is more useful when you have multiple Java applications and may have name classes between classes.  I tend to use a shell script to lauch apps.

Another gotcha to look out for on case insensitive file systems is the source/class file naming.  A class such as MyHelloWorldClass has to exist in files called MyHelloWorldClass.java and MyHelloWorldClass.class otherwise you will get errors *except* on case insensitive file systems.  So, on Windows say, you may not realise the problem until someone else tries to run it on UNIX.

Finally look at Eclipse.  Its a damn good Java development environment and removes all the needs for class paths and what not.</description>
		<content:encoded><![CDATA[<p>An alternative to the CLASSPATH environment variable is providing the path on the command line.  I.e.</p>
<p>java -cp d:\myclasses MyClass </p>
<p>(-cp can also be written as -classpath)</p>
<p>This is more useful when you have multiple Java applications and may have name classes between classes.  I tend to use a shell script to lauch apps.</p>
<p>Another gotcha to look out for on case insensitive file systems is the source/class file naming.  A class such as MyHelloWorldClass has to exist in files called MyHelloWorldClass.java and MyHelloWorldClass.class otherwise you will get errors *except* on case insensitive file systems.  So, on Windows say, you may not realise the problem until someone else tries to run it on UNIX.</p>
<p>Finally look at Eclipse.  Its a damn good Java development environment and removes all the needs for class paths and what not.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Navigation revisited and freeing your thinking by BinaryKitten</title>
		<link>http://crataegusdesign.co.uk/tjfolder/?p=253&#038;cpage=1#comment-180</link>
		<dc:creator>BinaryKitten</dc:creator>
		<pubDate>Sun, 05 Apr 2009 12:03:14 +0000</pubDate>
		<guid isPermaLink="false">http://crataegusdesign.co.uk/tjfolder/?p=253#comment-180</guid>
		<description>there are sooo many bandwagons out there that it's easy to get swept up and into one of them, be it the "This framework is better than the rest" or "Javascript is a big bad no no". Another common assumption is "All optimisations are good" .. I would go as far as saying optimising stuff can be good, but over thinking and premature optimising can lead to bigger problems later. This is the one thing that i've recently had to get out of doing..

Anyway, as usual, a nice articel .. keep up the good work Tess!</description>
		<content:encoded><![CDATA[<p>there are sooo many bandwagons out there that it&#8217;s easy to get swept up and into one of them, be it the &#8220;This framework is better than the rest&#8221; or &#8220;Javascript is a big bad no no&#8221;. Another common assumption is &#8220;All optimisations are good&#8221; .. I would go as far as saying optimising stuff can be good, but over thinking and premature optimising can lead to bigger problems later. This is the one thing that i&#8217;ve recently had to get out of doing..</p>
<p>Anyway, as usual, a nice articel .. keep up the good work Tess!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on html markup for navigation by Tess Barnes &#187; Blog Archive &#187; Navigation revisited and freeing your thinking</title>
		<link>http://crataegusdesign.co.uk/tjfolder/?p=235&#038;cpage=1#comment-179</link>
		<dc:creator>Tess Barnes &#187; Blog Archive &#187; Navigation revisited and freeing your thinking</dc:creator>
		<pubDate>Sun, 05 Apr 2009 11:35:20 +0000</pubDate>
		<guid isPermaLink="false">http://crataegusdesign.co.uk/tjfolder/?p=235#comment-179</guid>
		<description>[...] month I set out my view of using &lt;nav&gt; and &lt;ul&gt;s for navigation purposes. This was as a reaction to feelings in the [...]</description>
		<content:encoded><![CDATA[<p>[...] month I set out my view of using &lt;nav&gt; and &lt;ul&gt;s for navigation purposes. This was as a reaction to feelings in the [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on html markup for navigation by Cal Evans</title>
		<link>http://crataegusdesign.co.uk/tjfolder/?p=235&#038;cpage=1#comment-167</link>
		<dc:creator>Cal Evans</dc:creator>
		<pubDate>Fri, 13 Mar 2009 13:04:54 +0000</pubDate>
		<guid isPermaLink="false">http://crataegusdesign.co.uk/tjfolder/?p=235#comment-167</guid>
		<description>Hi Tess!

Thanks for making it very simple.  My problem is only with designers (and I've worked with more than one) that alter the default behavior of the UL instead of putting it in the DIV. If you are doing it for your own site and you know there will never be a need for a list of items, hey go for it. However, if you've got to work with others (especially hard-headed programmers) then wrapping it in a DIV is the way to go.

Thanks!
=C=</description>
		<content:encoded><![CDATA[<p>Hi Tess!</p>
<p>Thanks for making it very simple.  My problem is only with designers (and I&#8217;ve worked with more than one) that alter the default behavior of the UL instead of putting it in the DIV. If you are doing it for your own site and you know there will never be a need for a list of items, hey go for it. However, if you&#8217;ve got to work with others (especially hard-headed programmers) then wrapping it in a DIV is the way to go.</p>
<p>Thanks!<br />
=C=</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHPUK Part 3: Comedy, Chris and Closing by Chris Shiflett</title>
		<link>http://crataegusdesign.co.uk/tjfolder/?p=145&#038;cpage=1#comment-166</link>
		<dc:creator>Chris Shiflett</dc:creator>
		<pubDate>Wed, 11 Mar 2009 20:46:18 +0000</pubDate>
		<guid isPermaLink="false">http://crataegusdesign.co.uk/tjfolder/?p=145#comment-166</guid>
		<description>Glad you enjoyed the talk. Thanks for the review. :-)

My slides are online now, although this sort of talk doesn't translate to PDF very well:

http://shiflett.org/security-centered-design.pdf</description>
		<content:encoded><![CDATA[<p>Glad you enjoyed the talk. Thanks for the review. <img src='http://crataegusdesign.co.uk/tjfolder/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>My slides are online now, although this sort of talk doesn&#8217;t translate to PDF very well:</p>
<p><a href="http://shiflett.org/security-centered-design.pdf" rel="nofollow">http://shiflett.org/security-centered-design.pdf</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHPUK Part 3: Comedy, Chris and Closing by juneih</title>
		<link>http://crataegusdesign.co.uk/tjfolder/?p=145&#038;cpage=1#comment-165</link>
		<dc:creator>juneih</dc:creator>
		<pubDate>Sun, 08 Mar 2009 20:25:28 +0000</pubDate>
		<guid isPermaLink="false">http://crataegusdesign.co.uk/tjfolder/?p=145#comment-165</guid>
		<description>Thanks for this, such a great summary:) - it's always interesting to see how other's perceive events!</description>
		<content:encoded><![CDATA[<p>Thanks for this, such a great summary:) - it&#8217;s always interesting to see how other&#8217;s perceive events!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Bitwise or bit stupid? by Brofun</title>
		<link>http://crataegusdesign.co.uk/tjfolder/?p=196&#038;cpage=1#comment-164</link>
		<dc:creator>Brofun</dc:creator>
		<pubDate>Sun, 08 Mar 2009 18:51:02 +0000</pubDate>
		<guid isPermaLink="false">http://crataegusdesign.co.uk/tjfolder/?p=196#comment-164</guid>
		<description>Excellent Explanation of Bitwise Operators...
it gets in to my mind very easily..
Thk u....

for finding the no even or odd u can aso use this 

if($num &amp; 1) {
echo 'The number is odd';
} else {
echo 'The number is even'; }

check this really simple....</description>
		<content:encoded><![CDATA[<p>Excellent Explanation of Bitwise Operators&#8230;<br />
it gets in to my mind very easily..<br />
Thk u&#8230;.</p>
<p>for finding the no even or odd u can aso use this </p>
<p>if($num &amp; 1) {<br />
echo &#8216;The number is odd&#8217;;<br />
} else {<br />
echo &#8216;The number is even&#8217;; }</p>
<p>check this really simple&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Bitwise or bit stupid? by Rob...</title>
		<link>http://crataegusdesign.co.uk/tjfolder/?p=196&#038;cpage=1#comment-163</link>
		<dc:creator>Rob...</dc:creator>
		<pubDate>Sun, 08 Mar 2009 13:36:56 +0000</pubDate>
		<guid isPermaLink="false">http://crataegusdesign.co.uk/tjfolder/?p=196#comment-163</guid>
		<description>When it comes to testing if something is odd/even I would use the modulo operator so that the test is:

if ($i %2)  {
    // even
} else {
    // odd
}

As for bitwise operators, I use it for flags in a single integer. Flag1 = 1, flag2 = 2, flag=4, flag4=8 etc. you can then use If(($var &amp; Flag1 == flag1) to test for the existance of the flag within $var.

Regards,

Rob...</description>
		<content:encoded><![CDATA[<p>When it comes to testing if something is odd/even I would use the modulo operator so that the test is:</p>
<p>if ($i %2)  {<br />
    // even<br />
} else {<br />
    // odd<br />
}</p>
<p>As for bitwise operators, I use it for flags in a single integer. Flag1 = 1, flag2 = 2, flag=4, flag4=8 etc. you can then use If(($var &amp; Flag1 == flag1) to test for the existance of the flag within $var.</p>
<p>Regards,</p>
<p>Rob&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHPUK Part 3: Comedy, Chris and Closing by Tess</title>
		<link>http://crataegusdesign.co.uk/tjfolder/?p=145&#038;cpage=1#comment-161</link>
		<dc:creator>Tess</dc:creator>
		<pubDate>Wed, 04 Mar 2009 10:11:25 +0000</pubDate>
		<guid isPermaLink="false">http://crataegusdesign.co.uk/tjfolder/?p=145#comment-161</guid>
		<description>Thanks Rob :)
I think Zend might be so flexible I'll end up getting very lost in trying to get my head around it. Once I know my way around one framework, I'll find it easier to take on others (I hope)

Tess</description>
		<content:encoded><![CDATA[<p>Thanks Rob <img src='http://crataegusdesign.co.uk/tjfolder/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
I think Zend might be so flexible I&#8217;ll end up getting very lost in trying to get my head around it. Once I know my way around one framework, I&#8217;ll find it easier to take on others (I hope)</p>
<p>Tess</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHPUK Part 3: Comedy, Chris and Closing by Rob...</title>
		<link>http://crataegusdesign.co.uk/tjfolder/?p=145&#038;cpage=1#comment-160</link>
		<dc:creator>Rob...</dc:creator>
		<pubDate>Tue, 03 Mar 2009 20:52:48 +0000</pubDate>
		<guid isPermaLink="false">http://crataegusdesign.co.uk/tjfolder/?p=145#comment-160</guid>
		<description>You should also check out Zend Framework!  I can recommend a book if you need one! *grin*


Regards,

Rob...</description>
		<content:encoded><![CDATA[<p>You should also check out Zend Framework!  I can recommend a book if you need one! *grin*</p>
<p>Regards,</p>
<p>Rob&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
