<?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>Tech Volta &#187; development</title>
	<atom:link href="http://www.cyroot.com/blog/category/development/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cyroot.com/blog</link>
	<description>Recent college grad, .NET developer, and web enthusiast</description>
	<lastBuildDate>Thu, 02 Jul 2009 02:23:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Adding Tooltips to Checkboxlist Items</title>
		<link>http://www.cyroot.com/blog/2009/03/09/adding-tooltips-to-checkboxlist-items/</link>
		<comments>http://www.cyroot.com/blog/2009/03/09/adding-tooltips-to-checkboxlist-items/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 22:00:53 +0000</pubDate>
		<dc:creator>brent</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[asp .net]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[snippet]]></category>
		<category><![CDATA[vb]]></category>

		<guid isPermaLink="false">http://www.cyroot.com/blog/?p=124</guid>
		<description><![CDATA[The CheckBoxList control in Microsoft ASP .NET 2.0 can be quite limiting in features.  You can set a tooltip for the overall control; we can say &#8220;HEY THIS IS A CHECKBOXLIST&#8221;, which is great if that somehow helps you.  The true power would be in adding a tooltip to each individual item in the checkboxlist.  [...]]]></description>
			<content:encoded><![CDATA[<p><a class="lightview" title="checkbox-1" href="http://www.flickr.com/photos/10116741@N08/3310894979/"><img src="http://static.flickr.com/3606/3310894979_e346f5a34b_m.jpg" alt="checkbox-1" width="62" height="57" /></a> The CheckBoxList control in Microsoft ASP .NET 2.0 can be quite limiting in features.  You can set a tooltip for the overall control; we can say &#8220;HEY THIS IS A CHECKBOXLIST&#8221;, which is great if that somehow helps you.  The true power would be in adding a tooltip to each individual item in the checkboxlist.  It would be nice to databind the field like other ASP .NET 2.0 Controls, but again no such luck.</p>
<p>To add a Tooltip to each individual item you are going to have to loop through the control.  By setting the title attribute to whatever you want will give you the individual control to name each checkbox in the checkboxlist.  This can done be done when pulling items in or on the case of a control firing.  Whatever works for you.</p>
<pre class="brush: vb">
&#039; Loop through CheckBoxList and set tooltip to checked if selected
For Each item As ListItem In CheckBoxList1.Items
If item.Selected Then
item.Attributes(&quot;title&quot;) = &quot;CHECKED&quot;
End If
Next
</pre>
<p>This is really just a quick and dirty way to add tooltips to checkboxlist items.  If you are already pulling in <a href="http://jquery.com/" target="_blank">jQuery</a> or some other library I would say use one of the many Tooltip plugins out there.  If you are not using any Javascript libraries this can be a quick way to help achieve a goal.  I&#8217;m not sure if this will work in Firefox, but if you are going for crossbrowser definitely check out a Javascript library.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cyroot.com/blog/2009/03/09/adding-tooltips-to-checkboxlist-items/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Learning is Lifelong</title>
		<link>http://www.cyroot.com/blog/2008/10/04/learning-is-lifelong/</link>
		<comments>http://www.cyroot.com/blog/2008/10/04/learning-is-lifelong/#comments</comments>
		<pubDate>Sat, 04 Oct 2008 12:15:37 +0000</pubDate>
		<dc:creator>brent</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://www.cyroot.com/blog/?p=77</guid>
		<description><![CDATA[After many years in school and working lowly, but rewarding, jobs in IT, I truly feel learning is one of the best attributes that I possess.  It is an attribute that everyone should strive for and keep close to them no matter what. As I have stated many times before&#8230; I am an avid listener [...]]]></description>
			<content:encoded><![CDATA[<p>After many years in school and working lowly, but rewarding, jobs in IT, I truly feel learning is one of the best attributes that I possess.  It is an attribute that everyone should strive for and keep close to them no matter what.</p>
<p>As I have stated many times before&#8230; I am an avid listener of podcasts and video podcasts.  I love them because they help me stay up-to-date in this frequently changing world of IT.  I would have to say my newest vidcast that I have been enjoying lately has been <a href="http://www.hak5.org" target="_blank">HAK5</a>.  They are just a bunch of real down to earth people talking about technology!  They are a bit goofy but that&#8217;s okay with me.  I believe they were recently added to revision3, and I&#8217;m quite glad they were.</p>
<p>I really enjoyed the piece by <a href="http://www.chrisgerling.com" target="_blank">Chris Gerling</a> on reverse engineering on .NET applications (and more).  This is a very handy skill to have especially since I work with .NET.  As I watched the podcast I didn&#8217;t think much about it.  I found it to be very cool and engrossing; tres geek.  I like how they broke the segment down onto multiple episodes (inside of being deluged).</p>
<p style="text-align: center;"><a title="processcode" href="http://www.flickr.com/photos/36323884@N00/2909750897/"><img class="aligncenter" src="http://static.flickr.com/3145/2909750897_e7d52e476e_m.jpg" alt="processcode" /></a></p>
<p>Come a few weeks later (now), a couple of the network guys came to my cube and asked me if I could help them with an application a previous developer wrote.  I politely said &#8220;Sure! Not a problem&#8221;, which they responded with &#8220;Great one catch though, all we have is the EXEcutable and we need it ASAP&#8221;.  I think that was actually two catches, but anyhow.</p>
<p>I said calm and coolly, &#8220;all we need to do is decompile the application get the source code and we&#8217;ll be ready to go&#8221;.  I suspect it was not the answer they were expecting.  I was calm and cool because I just watched the great <a href="http://www.hak5.org" target="_blank">hak5</a> episodes that involved reverse engineering!  Hot dog.  I earned major cred points for my attitude and how quickly I was able to reproduce the code for the problem.</p>
<p>After inspecting the code we found the problem to be a configuration code; not a development bug.  This was such a critical step the problem solving process.  This also proves that learning is a lifelong process that needs to continue beyond school and become apart of your life.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cyroot.com/blog/2008/10/04/learning-is-lifelong/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Microsoft Developers User Group Stevenson University</title>
		<link>http://www.cyroot.com/blog/2008/07/23/mdug-stevenson_university/</link>
		<comments>http://www.cyroot.com/blog/2008/07/23/mdug-stevenson_university/#comments</comments>
		<pubDate>Thu, 24 Jul 2008 02:35:59 +0000</pubDate>
		<dc:creator>brent</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.cyroot.com/blog/?p=76</guid>
		<description><![CDATA[I attended the Maryland and Pennsylvania Microsoft Developers User Group on July 22, 2008. It was at Stevenson University (formerly Villa Julie). It&#8217;s a beautiful campus located in the woods off of I-695! It was my first time going to a user group like that. It was okay probably going to try the Harrisburg Developers [...]]]></description>
			<content:encoded><![CDATA[<p>I attended the <a href="http://www.mapamdug.com/" target="_blank">Maryland and Pennsylvania Microsoft Developers User Group</a> on July 22, 2008.  It was at Stevenson University (formerly Villa Julie).  It&#8217;s a beautiful campus located in the woods off of I-695!  It was my first time going to a user group like that.  It was okay probably going to try the <a href="http://www.central-penn.net" target="_blank">Harrisburg Developers User Group</a> and see how that goes.  I&#8217;m more interested in talking about software development and programming techniques.</p>
<p style="text-align: center;"><a title="00001.jpg" href="http://www.flickr.com/photos/36323884@N00/2697565776/"><img src="http://static.flickr.com/3034/2697565776_2b87ff6145_m.jpg" alt="00001.jpg" /></a></p>
<p>There was a speaker, Advanced IT student, who gave a rousing speak on Project Management Software.  It was an okay intro to that Software, but seemed to miss a lot of what&#8217;s happening right now.  He gave some examples, but none with software development.  I think software development is a totally different ballpark then for example winery.  I think Agile Development is really changing what software we use and how we use it.  <a href="http://studios.thoughtworks.com/mingle-project-intelligence" target="_blank">Mingle</a> is probably the &#8220;best&#8221; for Agile Development.  I&#8217;ve used Agile Track to have management on an Agile project.</p>
<p>There was a web seminar on some new features of Visual Studio 2008.  I&#8217;m quite excited about some of the cool new features.  The one feature I am most excited about is Javascript Debugging!  Debugging Javascript is so annoying&#8230; to be able to step through Javascript will save so much time.  The split screen mode in 2008 also looks very promising.</p>
<p style="text-align: center;"><a title="00003.jpg" href="http://www.flickr.com/photos/36323884@N00/2697565188/"><img class="alignnone" src="http://static.flickr.com/3122/2697565188_c7954d8b31_m.jpg" alt="00003.jpg" /></a></p>
<p>I also won the main door prize!  I got a wireless keyboard and some software (Visual Studio 2008, Windows Server 2008, and SQL Server 2008).  Visual Studio and SQL Server are both developers version while Windows Server is a year free trial.  I&#8217;m going to try them out and see what they are all about.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cyroot.com/blog/2008/07/23/mdug-stevenson_university/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>My Affinity for Programming</title>
		<link>http://www.cyroot.com/blog/2008/07/16/my-affinity-for-programming/</link>
		<comments>http://www.cyroot.com/blog/2008/07/16/my-affinity-for-programming/#comments</comments>
		<pubDate>Wed, 16 Jul 2008 17:44:42 +0000</pubDate>
		<dc:creator>brent</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://www.cyroot.com/blog/?p=71</guid>
		<description><![CDATA[I started programming in what most programmers do.Â  BASIC, it is the beginning, the building blocks, the genesis, etc etc.Â  After learning about the wonderful nuances of BASIC I was quickly thrown into the hard cold world of Turbo Pascal.Â  I don&#8217;t remember much of Turbo Pascal, but I remember it was not kind.Â  After [...]]]></description>
			<content:encoded><![CDATA[<p>I started programming in what most programmers do.Â  BASIC, it is the beginning, the building blocks, the genesis, etc etc.Â  After learning about the wonderful nuances of BASIC I was quickly thrown into the hard cold world of Turbo Pascal.Â  I don&#8217;t remember much of Turbo Pascal, but I remember it was not kind.Â  After using many printfs and so forth I moved to C and C++.Â  C and C++ were not too bad.Â  Pointers were kind of interesting at an early age, but I could not see myself working with them forever.</p>
<p>So I went to college to pursue the wonderful career of System Administrator.Â  This was pre 9/11, end of web 1.0, and the landscape was kind of shakey.Â  The web always interested me and I wanted to do some projects in the web space.Â  I started with PHP 3/4 and made my own CMS.Â  It wasn&#8217;t anything fancy&#8230; basically it was a web interface to edit txt files, which was basically a pseudo database.Â  I found myself dedicating a lot of time to programming and really enjoyed it.</p>
<p>I got my degree in System Administration, but had a great desire to continue programming.Â  Thus I went to Penn State to continue my education and learn how to become a Software Developer.Â  I learned a lot at Penn State.Â  About hard work, listening, understanding concepts&#8230; I learned that being a Software Developer isn&#8217;t so much about coding, but understanding the needs of people.Â  Coding is very important, but that is the easy stuff, the fun stuff!Â  To interpret the wants and demands of people that really have no idea what a database is.Â  It is a challenge, but it is something Penn State has prepared me for.</p>
<p>It has been a long challenging road, but it has all been worth it in the end.Â  The ends do justify the means in this case I dare say.Â  This was a quick narrative of my rise to Software Developerdum.Â  To say I have an affinity for programming is an under statement.Â  It is apart of me.Â  It is at the core of what I do.Â  I don&#8217;t really have a job or career, because I enjoy every single second of it.Â  It is a challenge that I love.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cyroot.com/blog/2008/07/16/my-affinity-for-programming/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Code Integration</title>
		<link>http://www.cyroot.com/blog/2008/07/14/code-integration/</link>
		<comments>http://www.cyroot.com/blog/2008/07/14/code-integration/#comments</comments>
		<pubDate>Mon, 14 Jul 2008 15:23:08 +0000</pubDate>
		<dc:creator>brent</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://www.cyroot.com/blog/?p=70</guid>
		<description><![CDATA[No doubtedly I think everyone is going to have to integrate new code with &#8220;old code&#8221;.Â  Unless you are working for a start-up with no coding baggage; I digress.Â  I think this goes beyond development into other areas.Â  Where one will have to infuse their style with an older order.Â  This discussion will only be [...]]]></description>
			<content:encoded><![CDATA[<p>No doubtedly I think everyone is going to have to integrate new code with &#8220;old code&#8221;.Â  Unless you are working for a start-up with no coding baggage; I digress.Â  I think this goes beyond development into other areas.Â  Where one will have to infuse their style with an older order.Â  This discussion will only be software development related.</p>
<p>More times than not you are going to have to dig through old crappy code with no documentation.Â  In the realm of .NET there will be times when you have to integrate classic ASP, .NET 1.1, and .NET 2.0.Â  What a fun time!Â  PHP will have to be migrated with PHP 3/4 and PHP 5.Â  Oh our functions are now reserved words.Â  Good times.Â  The trick to doing this is to use the code and see how it works.Â  Whatever the previous coder thought does not matter; it is about code execution.Â  It&#8217;s the ones and zeros that you need to care about.</p>
<p>I feel integration is the most overlooked part of any job; be it Network Admin or Developer.Â  It&#8217;s fairly easy to troubleshoot and develop something brand new.Â  You have a clean slate, which gives you a lot of flexibility to make changes on the fly.Â  With &#8220;old code&#8221; it is supporting unknown features or bugs that could cause potential downtime or corruption.Â  To integrate with something of the past and to enhance is like a work of art.Â  It is breathing life back into an application or hardware.Â  I&#8217;m not trying to make this sound like some kind of miracle, but integrating new code with &#8220;old code&#8221; is very overlooked.</p>
<p>I am referring to old code as &#8220;old code&#8221;, it is not a derogatory statement, but a loose hand reference.Â  Just because code is aged does not mean it is of no value or doesn&#8217;t work that well.Â  Some of the best code is &#8220;old code&#8221; do you think COBOL is dead?Â  It is an old language, but the applications work like a beast.</p>
<p>Some of the newer languages make things easier and obsolete older more lengthy code blocks, but it doesn&#8217;t make it run better (okay sometimes).Â  It may be a bit sexier, but such is life.Â  The code will still achieve core functionality just not all the bells and whistles.Â  toot toot.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cyroot.com/blog/2008/07/14/code-integration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

