<?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/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
>

<channel>
	<title>Mark DuBois Weblog &#187; Technology</title>
	<atom:link href="http://www.markdubois.info/weblog/category/technology/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.markdubois.info/weblog</link>
	<description>Fall, 2010 - To Inform, Educate, and Inspire Students</description>
	<lastBuildDate>Tue, 29 Jun 2010 21:20:34 +0000</lastBuildDate>
	<language> </language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<!-- podcast_generator="podPress/8.8" - maintenance_release="8.8.4" -->
		<copyright>2005-2009 </copyright>
		<managingEditor>mdubois@markdubois.info (Mark DuBois Weblog)</managingEditor>
		<webMaster>mdubois@markdubois.info (Mark DuBois Weblog)</webMaster>
		<category>posts</category>
		<ttl>1440</ttl>
		<itunes:keywords></itunes:keywords>
		<itunes:subtitle></itunes:subtitle>
		<itunes:summary>Fall, 2010 - To Inform, Educate, and Inspire Students</itunes:summary>
		<itunes:author>Mark DuBois Weblog</itunes:author>
		<itunes:category text="Society &amp; Culture"/>
		<itunes:owner>
			<itunes:name>Mark DuBois Weblog</itunes:name>
			<itunes:email>mdubois@markdubois.info</itunes:email>
		</itunes:owner>
		<itunes:block>No</itunes:block>
		<itunes:explicit>no</itunes:explicit>
		<itunes:image href="http://markdubois.info/weblog/wp-content/plugins/podpress/images/powered_by_podpress_large.jpg" />
		<image>
			<url> </url>
			<title>Mark DuBois Weblog</title>
			<link>http://www.markdubois.info/weblog</link>
			<width>144</width>
			<height>144</height>
		</image>
		<item>
		<title>CSS structure</title>
		<link>http://www.markdubois.info/weblog/2010/06/css-structure/</link>
		<comments>http://www.markdubois.info/weblog/2010/06/css-structure/#comments</comments>
		<pubDate>Sat, 19 Jun 2010 14:32:51 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[WOW]]></category>

		<guid isPermaLink="false">http://www.markdubois.info/weblog/?p=603</guid>
		<description><![CDATA[As I think about the national web design contest WOW is sponsoring next week in Kansas City, Missouri and have been reviewing some tutorials on Lynda.com, I decided this might be an appropriate time to post some ideas concerning the structure of CSS files (to make them easier to maintain). When we develop CSS files [...]]]></description>
			<content:encoded><![CDATA[<p>As I think about the <a title="WOW Web Design Contest" href="http://www.webdesigncontest.org/" target="_blank">national web design contest</a> <a title="World Organization of Webmasters" href="http://webprofessionals.org/" target="_blank">WOW</a> is sponsoring next week in Kansas City, Missouri and have been reviewing some tutorials on <a title="Lynda.com training" href="http://www.lynda.com/" target="_blank">Lynda.com</a>, I decided this might be an appropriate time to post some ideas concerning the structure of CSS files (to make them easier to maintain). When we develop CSS files for use on web sites, it is important they be easy to maintain. At a minimum, it is a good idea to include some structure and consistency within the file. For example, we might want to make certain all the properties are listed on separate lines and that the opening and closing curly braces are on separate lines (as below). We might also want to alphabetize the properties to make them easier to find in any selector (simple example below).<strong><br />
</strong></p>
<p><strong>body<br />
{</strong></p>
<p><strong>background-color: #ffc;<br />
font: arial, tahoma, sans serif;<br />
}</strong></p>
<p>However, one can do a lot more in the overall structure of the CSS file. For example, assuming the CSS may contain special characters, one should consider it a best practice to include a character set declaration at the beginning of the CSS file.</p>
<p><strong>@charset &#8220;UTF-8&#8243;;</strong></p>
<p>This must occur before any comments or other information in the file. More details can be found at the <a title="Details about @charset" href="http://www.w3.org/International/questions/qa-css-charset" target="_blank">W3C site</a>.</p>
<p>One should then have copyright (possibly creator) and version information to identify the CSS file. There should also be some sort of table of contents (especially as the file grows in size to hundreds of lines). To expedite searching for information, one might preface each entry with a unique character string which will not directly be used anywhere else in the document (for example, a tilde).</p>
<p>So, a template CSS stylesheet should have the  following characteristics;</p>
<p><strong>@charset &#8220;UTF-8&#8243;;<br />
/*<br />
copyright 2010. Mark DuBois. Some rights reserved.<br />
version 1.0<br />
modified:<br />
date:<br />
changes:</strong></p>
<p><strong>Table of contents (to jump to a specific part of this document, just search for the unique characters at the start of each line).</strong></p>
<p><strong>~1 Color guide<br />
~2 Reset values<br />
~3 Global constants (identifiers)<br />
~4 Global classes<br />
~5 Home page (items unique to the home page)<br />
~6 Other pages throughout site<br />
~7 Sidebar<br />
~8 Footer<br />
*/</strong></p>
<p>Within the CSS, one would then place specific comments so the individual sections can be easily located, for example:</p>
<p><strong>/* ~1 Color guide<br />
#ffc &#8211; light yellow &#8211; used for background<br />
*/</strong></p>
<p>Obvously, your mileage will vary with a specific site. It is not as important to have a specific section (such as footer) as it is to be consistent throughout the sites you create. This should vastly improve maintenance of the sites. I recall a quote from an individual at Howest University (Belgium) during a webinar I recently attended &#8211; &#8220;develop your code as if it will be maintained by a violent psychopath who knows where you live.&#8221; While most of us will likely never have this specific problem, it is always a good idea to make your code as maintainable as possible. As a minimum, following the above suggestions should make it much easier to locate specific items.</p>
<p>I know tools like Dreamweaver CS5 make it much easier to work with CSS, but even with those tools, well structured and well documented  CSS should be encouraged. Your comments are most appreciated (due to the vast number of spam attempts, I have to moderate all comments &#8211; sad, but this is the world we inhabit). If you post a legitimate comment or insight I will approve it (regardless whether you agree with these thoughts above or not)?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markdubois.info/weblog/2010/06/css-structure/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Photos of WOW/ SkillsUSA web design contest</title>
		<link>http://www.markdubois.info/weblog/2010/04/photos-of-wow-skillsusa-web-design-contest/</link>
		<comments>http://www.markdubois.info/weblog/2010/04/photos-of-wow-skillsusa-web-design-contest/#comments</comments>
		<pubDate>Sun, 18 Apr 2010 00:12:03 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[WOW]]></category>

		<guid isPermaLink="false">http://www.markdubois.info/weblog/?p=570</guid>
		<description><![CDATA[Here are a few photos from the Illinois, WOW/ SkillsUSA web design contest. Thanks again to Lynda.com for the prizes. The winners were thrilled. Thanks again to Jonathan Worent and Shari Tripp for their help with this contest. www.flickr.com]]></description>
			<content:encoded><![CDATA[<p>Here are a few photos from the Illinois, WOW/ SkillsUSA web design contest. Thanks again to <a href="http://www.lynda.com/" target="_blank">Lynda.com</a> for the prizes. The winners were thrilled. Thanks again to <a href="http://inspiredbytes.net/" target="_blank">Jonathan Worent</a> and Shari Tripp for their help with this contest.</p>
<p><!-- Start of Flickr Badge --><br />
<!--<br />
#flickr_badge_source_txt {padding:0; font: 11px Arial, Helvetica, Sans serif; color:#666666;}<br />
#flickr_badge_icon {display:block !important; margin:0 !important; border: 1px solid rgb(0, 0, 0) !important;}<br />
#flickr_icon_td {padding:0 5px 0 0 !important;}<br />
.flickr_badge_image {text-align:center !important;}<br />
.flickr_badge_image img {border: 1px solid black !important;}<br />
#flickr_www {display:block; padding:0 10px 0 10px !important; font: 11px Arial, Helvetica, Sans serif !important; color:#3993ff !important;}<br />
#flickr_badge_uber_wrapper a:hover,<br />
#flickr_badge_uber_wrapper a:link,<br />
#flickr_badge_uber_wrapper a:active,<br />
#flickr_badge_uber_wrapper a:visited {text-decoration:none !important; background:inherit !important;color:#3993ff;}<br />
#flickr_badge_wrapper {background-color:#ffffff;border: solid 1px #000000}<br />
#flickr_badge_source {padding:0 !important; font: 11px Arial, Helvetica, Sans serif !important; color:#666666 !important;}<br />
--></p>
<table id="flickr_badge_uber_wrapper" border="0" cellspacing="10" cellpadding="0">
<tbody>
<tr>
<td><a id="flickr_www" href="http://www.flickr.com">www.<strong style="color: #3993ff;">flick<span style="color: #ff1c92;">r</span></strong>.com</a></p>
<table id="flickr_badge_wrapper" border="0" cellspacing="10" cellpadding="0">
<tbody>
<tr><script src="http://www.flickr.com/badge_code_v2.gne?count=3&amp;display=random&amp;size=t&amp;layout=h&amp;source=user_set&amp;user=30468591%40N00&amp;set=72157623877951016&amp;context=in%2Fset-72157623877951016%2F" type="text/javascript"></script></tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<p><!-- End of Flickr Badge --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.markdubois.info/weblog/2010/04/photos-of-wow-skillsusa-web-design-contest/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Illinois WOW Web Design contest reflections</title>
		<link>http://www.markdubois.info/weblog/2010/04/illinois-wow-web-design-contest-reflections/</link>
		<comments>http://www.markdubois.info/weblog/2010/04/illinois-wow-web-design-contest-reflections/#comments</comments>
		<pubDate>Fri, 16 Apr 2010 16:11:21 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[WOW]]></category>

		<guid isPermaLink="false">http://www.markdubois.info/weblog/?p=552</guid>
		<description><![CDATA[I supervised the Illinois WOW/ SkillsUSA web design contest in Springfield on April 16. Many, many thanks to Jonathan Worent for his help with this contest. Jonathan &#8211; it would be much more difficult without you. I am most appreciative of you taking time from your day job as owner of Inspired Bytes to judge [...]]]></description>
			<content:encoded><![CDATA[<p>I supervised the Illinois WOW/ SkillsUSA web design contest in Springfield on April 16. Many, many thanks to <a href="http://inspiredbytes.net/" target="_blank">Jonathan Worent</a> for his help with this contest. Jonathan &#8211; it would be much more difficult without you. I am most appreciative of you taking time from your day job as owner of <a href="http://inspiredbytes.net/" target="_blank">Inspired Bytes</a> to judge the contest today.. Also, thanks to Shari Tripp for her help in reviewing the contest materials. Both Shari and Jonathan offered a number of improvements to this contest. Although the contest is still underway, here are a few observations (both what has been observed this year as well as insights from previous years).</p>
<p>First and foremost, everyone should follow instructions. The contest is designed with a very specific set of challenges and those are the challenges which should be addressed. Ask questions. Think of the contest supervisor and judge as the client. They can provide insights into the challenges. Some of the questions posed were excellent. However, I would have expected more. Also make certain you document the scaffolding process. Take notes on the printed version of the contest that was provided. This helps the judges see that you are actively and critically thinking about the contest and deciding how to break it into smaller chunks which can be addressed individually.</p>
<p>From a technical perspective, make certain to save your work. <strong>Save often.</strong> We called teams for interviews and noted that many did not save their work when they were interviewed. It is also a good idea to make certain to not have any &#8220;untitled document&#8221; titles and to include necessary meta information to help with search engine spiders. Lastly, don&#8217;t forget to include comments in your HTML and CSS.</p>
<p>As everyone saw, we emphasized HTML and CSS knowledge this year. Adherence to web standards and a good understanding of accessibility issues will go a long way to generating successful pages for each of the challenges.</p>
<p>I hope to be able to post a few more comments after the competition has ended. From our perspective, it looks like everyone enjoyed the competition and is rising to the challenges. Congratulations to all who competed. You are a model for your peers. You stepped up and took a risk to improve your knowledge and test your skills. Well done. Although there can only be one first place winner in each contest (secondary and post-secondary), you all should be proud of your accomplishments today.</p>
<p>Lastly, many, many thanks to the sponsors of our contest &#8211; <a href="http://www.lynda.com/" target="_blank">Lynda.com</a> and the <a href="http://webprofessionals.org/" target="_blank">World Organization of Webmasters</a>. You rock.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markdubois.info/weblog/2010/04/illinois-wow-web-design-contest-reflections/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Special post for today</title>
		<link>http://www.markdubois.info/weblog/2010/04/special-post-for-today/</link>
		<comments>http://www.markdubois.info/weblog/2010/04/special-post-for-today/#comments</comments>
		<pubDate>Thu, 01 Apr 2010 13:30:29 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Huh?]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.markdubois.info/weblog/?p=538</guid>
		<description><![CDATA[In honor of today, April 1, 2010, I thought it appropriate to include a few words of sage advice. First of all, be carefujl what you ask for &#8211; you might get it. Next, make certain you fully understand the implications of the day. I do hope everyone has a wonderful April 1 today. If [...]]]></description>
			<content:encoded><![CDATA[<p style="direction:rtl;unicode-bidi:bidi-override;">In honor of today, April 1, 2010, I thought it appropriate to include a few words of sage advice. First of all, be carefujl what you ask for &#8211; you might get it. Next, make certain you fully understand the implications of the day. I do hope everyone has a wonderful April 1 today. If you get the chance, don&#8217;t forget to visit Google (<a href="http://www.google.com" target="_blank">http://www.google.com</a>) today &#8211; they have a new logo and a new corporate name. I can finally break my non-disclosure agreement about this. It has been way too long in the making, but they finally agreed to my suggestion they needed  to improve upon their image. And, of course, take everything you read with a grain of salt.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markdubois.info/weblog/2010/04/special-post-for-today/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lynda.com 1 Year of training</title>
		<link>http://www.markdubois.info/weblog/2010/03/lynda-com-1-year-of-training/</link>
		<comments>http://www.markdubois.info/weblog/2010/03/lynda-com-1-year-of-training/#comments</comments>
		<pubDate>Sat, 06 Mar 2010 17:28:50 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.markdubois.info/weblog/?p=515</guid>
		<description><![CDATA[For those who are curious, I obtained a Lynda.com account one year ago tomorrow. I just finished viewing some training this morning and have therefore finished one year of training. I have found this to be an invaluable resource. The fact that it is available to meet my schedule is most appreciated. The fact that [...]]]></description>
			<content:encoded><![CDATA[<p>For those who are curious, I obtained a <a title="Lynda.com training" href="http://www.lynda.com/" target="_blank">Lynda.com</a> account one year ago tomorrow. I just finished viewing some training this morning and have therefore finished one year of training. I have found this to be an invaluable resource. The fact that it is available to meet my schedule is most appreciated. The fact that there is a wealth of information available at my fingertips is also greatly appreciated. Those who are interested in some numbers &#8211; here are the statistics.</p>
<ul>
<li><strong>82 courses </strong>completed (3 more in progress at the moment)</li>
<li><strong>3,945</strong> individual <strong>movies </strong>viewed (equates to 10.8 movies per day on average for the entire year)</li>
<li><strong>291.41</strong> <strong>hours </strong>of video viewed (<strong>36.4</strong> <strong>days </strong>at 8 hours per day, but who works just 8 hours anymore &#8211; which translates to an average of 47 minutes per day)</li>
</ul>
<p>Although a number of courses focused on Adobe technologies, many also focused on other areas. What I found most helpful was not only reviewing and honing my skills as I reviewed and worked through various examples, but also seeing how others teach these technologies. I have tried to employ some of these concepts into the classes I teach as well as some of the approaches to covering these technologies.</p>
<p>It is hard work keeping up with technologies and this is one resource that I plan to continue utilizing. As I mention to students from time to time, it is important to keep learning. Technologies employed with web systems continue to change rapidly. While nearly 4,000 individual movies may seem like a mountain, it was done one small step at a time (only 10 movies per day at a cost of less than an hour per day on average).</p>
<p>Full disclosure &#8211; I am a member of the Lynda.com advisory board (and have been since October, 2009). I would have used these resources regardless of my affiliation.</p>
<p>If you are curious about the courses I have completed, you can follow the link below (will open in a new window/ tab).</p>
<p><div style="background-image:url(http://www.lynda.com/images/CertificateOfCompletion/300x250_cert_banner.gif); width: 300px; height: 250px; float: left;"><a href="http://www.lynda.com/home/CertificateOfCompletion/AllCertificates.aspx?lpk5=436441&#038;utm_source=LDC&#038;utm_medium=partner&#038;utm_content=300x250&#038;utm_campaign=cert_of_comp" style="width: 300px; height: 250px; float: left; text-decoration: none;" target="_blank">
<div style="margin: 120px 0 0 85px;"><font style="font-family: Century Gothic, Helvetica, Arial, Sans-Serif; color: black; font-size: 18px; font-weight: bold;">Mark DuBois</font></div>
<p></a></div>
</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markdubois.info/weblog/2010/03/lynda-com-1-year-of-training/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spring, 2010 semester begins tomorrow</title>
		<link>http://www.markdubois.info/weblog/2010/01/spring-2010-semester-begins-tomorrow/</link>
		<comments>http://www.markdubois.info/weblog/2010/01/spring-2010-semester-begins-tomorrow/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 19:26:40 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.markdubois.info/weblog/?p=494</guid>
		<description><![CDATA[As we begin the spring, 2010 semester, I wanted to share a few thoughts with students taking my classes in the web curriculum. First – welcome to class. I am here to help you better understand the material and apply it to real life situations. If you ever have a question about the material, contact [...]]]></description>
			<content:encoded><![CDATA[<p>As we begin the spring, 2010 semester, I wanted to share a few thoughts with students  taking my classes in the web curriculum.</p>
<p>First – <strong>welcome to class</strong>. I am here to help you better  understand the material and apply it to real life situations. If you ever have a  question about the material, contact me and I will do my best to help. I have a number of tools which I can employ to help you better understand the concepts and tools we will be using.</p>
<p>Second – <strong>you are responsible for your future</strong>. Since you are  taking these classes, I make the assumption you aspire to be a web professional.  You are encouraged to develop and enhance your professionalism as part of these  classes. For example, do the absolute best you can on each assignment. Do not  settle for second best. You may someday wish to include some of these as part of  a portfolio of your work. Also, take responsibility for your actions. If you  know you will miss a deadline, notify me in advance. As a general rule, I will  provide you with extra time. However, if you do not notify me beforehand, you  will receive a grade of “unsatisfactory” or a 0 for that assignment.</p>
<p>Third &#8211; <strong>take time to enjoy the class experience</strong>. You have the opportunity to interact with your peers. In some courses, we will be working on group projects. In others,  you will be working alone, but will still need to interact with others via the discussion forum. Everyone bring a different and unique experience to class. Learn from what others have to offer.</p>
<p>I hope you are looking forward to this semester as much as I am. For those  who are in the East Peoria area, we do have an optional open lab for all CMWEB  students on Wednesday and Thursday nights (from 6:00 – 8:30 p.m. in TC 210 – ICC  East Peoria campus). If you are able to make it – great. for those outside of the area (or who can not make it on the above nights, I also offer an online office hour (Tuesday from 6 &#8211; 6:50 p.m. Central Time zone). I use the ConnectPro software to allow us to share desktop applications.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markdubois.info/weblog/2010/01/spring-2010-semester-begins-tomorrow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Congratulations</title>
		<link>http://www.markdubois.info/weblog/2009/12/congratulations-3/</link>
		<comments>http://www.markdubois.info/weblog/2009/12/congratulations-3/#comments</comments>
		<pubDate>Sat, 19 Dec 2009 19:13:25 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.markdubois.info/weblog/?p=461</guid>
		<description><![CDATA[The Fall, 2009 semester is now officially concluded. I hope students had as much fun in the courses as I did. We covered some great topics and had  lots of interesting discussions during the semester. I wanted to take a moment and acknowledge a select group of students. In the interest of student confidentiality, I [...]]]></description>
			<content:encoded><![CDATA[<p>The Fall, 2009 semester is now officially concluded. I hope students had as much fun in the courses as I did. We covered some great topics and had  lots of interesting discussions during the semester.</p>
<p>I wanted to take a moment and acknowledge a select group of students. In the interest of student confidentiality, I really can&#8217;t mention your names publicly. You know who you are because you received a note from me attached to your final grade for the semester in your chosen class. You small group of students achieved a significant milestone but may not realize how few have met that milestone. Specifically, you scored 100% on every assignment, quiz, project, and final exam. Yes, there were several students this semester in various classes I taught. I went back through my notes for the past decade that I have been teaching and have done a quick tally. Frankly, more people have walked on the surface of the moon than have achieved this milestone of a perfect score in one of my classes. If you are curious, I understand there are 12 astronauts who have walked on the moon. Yes, many students have gotten a grade of &#8220;A&#8221; in my classes, but most elect to take the final with minimal effort and get the course grade they have already earned. Only a very few pursue a perfect score on the final. So, congratulations to each of you. You know who you are. Keep up the great work.</p>
<p>I look forward to working with everyone in the spring semester. Enjoy the winter break and Happy Holidays to all.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markdubois.info/weblog/2009/12/congratulations-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Happy 15th Birthday Commercial Browsers</title>
		<link>http://www.markdubois.info/weblog/2009/12/happy-15th-birthday-commercial-browsers/</link>
		<comments>http://www.markdubois.info/weblog/2009/12/happy-15th-birthday-commercial-browsers/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 12:59:24 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.markdubois.info/weblog/?p=417</guid>
		<description><![CDATA[Today (December 15), 1994 marked the release of the first commercial web browser (which became Netscape Navigator). Although a beta version had been released in October (Oct. 13, I believe), this was the official launch date. Although AOL dropped support for this in 2007, this marked a milestone. Prior to this I used VoilaWWW and [...]]]></description>
			<content:encoded><![CDATA[<p>Today (December 15), 1994 marked the release of the <a title="One of many sites with history" href="http://www.livinginternet.com/w/wi_netscape.htm" target="_blank">first commercial web browser</a> (which became Netscape Navigator).</p>
<p><img class="alignleft size-full wp-image-418" style="padding:10 px;" title="Netscape_classic_logo" src="http://www.markdubois.info/weblog/wp-content/uploads/2009/10/Netscape_classic_logo.png" alt="Netscape logo" /> Although a beta version had been released in October (Oct. 13, I believe), this was the official launch date. Although AOL dropped support for this in 2007, this marked a milestone. Prior to this I used VoilaWWW and a smattering of other browsers (I later obtained a copy of Internet in a Box &#8211; big deal at the time). Hard to believe how far we have come in such a short time.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markdubois.info/weblog/2009/12/happy-15th-birthday-commercial-browsers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Office Hours and Open Lab</title>
		<link>http://www.markdubois.info/weblog/2009/12/office-hours-and-open-lab/</link>
		<comments>http://www.markdubois.info/weblog/2009/12/office-hours-and-open-lab/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 15:13:56 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.markdubois.info/weblog/?p=456</guid>
		<description><![CDATA[During the Fall, 2009 semester, I used Adobe ConnectPro for my online office hours in addition to the open lab we hold on Wednesday and Thursday nights for students in the ICC Web program. I did some tracking to determine how frequently students took advantage of these opportunities to learn more and obtain additional help. [...]]]></description>
			<content:encoded><![CDATA[<p>During the Fall, 2009 semester, I used Adobe ConnectPro for my online office hours in addition to the open lab we hold on Wednesday and Thursday nights for students in the ICC Web program. I did some tracking to determine how frequently students took advantage of these opportunities to learn more and obtain additional help. A quick analysis is below.</p>
<ul>
<li>Online office hours using ConnectPro &#8211; <strong>42</strong> student visits during the semester (average of <strong>2.2</strong> students per session).</li>
<li>Open lab &#8211; <strong>304</strong> student visits (average of <strong>9.8</strong> students per open lab)</li>
</ul>
<p>While the online office hours may not seem like many students, this is a vast improvement over previous semesters. Every online session (with one exception) this semester had at least one student stop by for online assistance. During most previous semesters, online (and in person) office hours were a complete waste of my time. Many semesters, not a single student stopped by during the allocated time. To answer the question you likely have &#8211; the reason for this is that I tend to respond very quickly to email and online messages throughout the entire semester (and average many messages per day). Therefore, in the past office hours were pointless as I handled the questions as they arose (and did not wait for a specific time to meet with students). However, we are required to hold office hours so I waited patiently (and worked on other lessons) while no one ever stopped by. However, using ConnectPro meant that I could actually share my applications and desktop with students visiting and we could quickly solve problems that students had encountered. I also set up a few additional sessions for students who needed help at a given time (rather than waiting for the required office hour time). Was it a perfect solution, no. Sometimes, there were voice problems with various microphones (and not all students had microphones). However, this was a vast improvement over previous semesters. It is likely I will continue to use this tool and hold online office hours in this manner for some time to come. This also meant that I was able to communicate much more clearly with students in other states and countries who are taking our classes. Personally, I am sold on the use of ConnectPro. I would be interested in comments from students regarding their experiences with the ConnectPro environment.</p>
<p>I also included a note about the open lab (which both Shari and I make available to students who are in the area). Part of the reason for this is that I have heard comments from some who question whether anyone actually shows up for these open lab sessions. Obviously the answer is yes. Since we had an average of almost 10 students per session throughout the semester, these seem to be a good use of an otherwise empty room on campus (empty at that time of the night).</p>
<p>As an aside, I believe that the above numbers also demonstrate that students prefer to have actual personal interactions (rather than virtual) for help with specific problems as they learn web technologies. And to answer the obvious question asked by many students &#8211; we have to do the classes in online fashion only because of the number of students we have from other states and regions. In this manner we can serve the greatest number of students who want to learn web systems. Yes, it is harder to take online only classes (it is also harder to teach them). However, I believe that tools like ConnectPro help us get closer to the physical in-class experience desired by most.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markdubois.info/weblog/2009/12/office-hours-and-open-lab/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New Laptop Configuration</title>
		<link>http://www.markdubois.info/weblog/2009/12/new-laptop-configuration/</link>
		<comments>http://www.markdubois.info/weblog/2009/12/new-laptop-configuration/#comments</comments>
		<pubDate>Fri, 04 Dec 2009 16:00:25 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.markdubois.info/weblog/?p=449</guid>
		<description><![CDATA[I recently obtained a new laptop and have been spending a fair amount of time  this week configuring it for various activities. Understand that I teach both web systems classes and security classes so I have to meet multiple needs. I thought readers might find this interesting/ humorous. It does have 640 GB of disk [...]]]></description>
			<content:encoded><![CDATA[<p>I recently obtained a new laptop and have been spending a fair amount of time  this week configuring it for various activities. Understand that I teach both web systems classes and security classes so I have to meet multiple needs. I thought readers might find this interesting/ humorous. It does have 640 GB of disk storage (7,200 rpm) and 6 GB of RAM[yes, 64-bit version of Windows 7] (otherwise this would not be possible).</p>
<p>I am running Windows 7 Professional as the base system on the laptop. Of course, to run some older programs I have installed the Windows XP Mode virtual environment. Since I had to install Virtual PC for the XP virtual environment, I decided to also create a separate virtual machine running XP Pro. Then, since I teach security classes, I also created a Windows Server 2008 SP2 virtual machine and a Windows Server 2008 Core machine. So, if you are counting, that is now 5 versions of various Windows Operating Systems on this laptop. I then also installed Sun&#8217;s Virtual Box environment and both Ubuntu Desktop and Ubuntu Server. The tally now stands at <strong>7 separate operating systems on one laptop</strong>.</p>
<p>Here is a brief overview of the development environments I have created. Yes, I am able to share the disk space across all environments so I can read a downloaded file from any of the operating systems.</p>
<ul>
<li>Ubuntu Desktop
<ul>
<li>Apache 2</li>
<li>PHP</li>
<li>MySQL</li>
<li>Ruby on Rails</li>
<li>Network admin and hacking tools (I do teach security)</li>
<li>The environment can be accessed from from Windows 7 via a non-standard port so I can develop in Ubuntu and test in browsers on both Windows and Linux &#8211; this is a test region</li>
</ul>
</li>
<li>Ubuntu Server
<ul>
<li>Apache 2</li>
<li>PHP</li>
<li>MySQL</li>
<li>Ruby on Rails</li>
<li>SSH access</li>
<li>This is a quality assurance region (which can also be accessed from windows 7 for additional testing of developed applications). After confirming all works, I can then move applications to production servers on the WWW.</li>
</ul>
</li>
<li>Windows XP Professional
<ul>
<li>Ruby on Rails</li>
<li>XAMPP
<ul>
<li>Apache 2</li>
<li>MySQL</li>
<li>PHP</li>
</ul>
</li>
<li>This is a test environment for developing in the Windows world.</li>
</ul>
</li>
<li>Windows Server 2008
<ul>
<li>Application Server (IIS)</li>
<li>SQL Server 2008 Express</li>
<li>This is a development environment for testing Windows based web applications</li>
<li>This environment will also be used for developing and testing items for the security classes I teach.</li>
</ul>
</li>
<li>Windows Server 2008 core
<ul>
<li>This is a command shell only version of Server 2008 and I am still getting used to doing everything at the command shell (I know one can remote, but I am stubborn on this point &#8211; grin)</li>
</ul>
</li>
<li>Windows XP Virtual Mode
<ul>
<li>I only plan to use this environment for older applications which can not run in Windows 7</li>
</ul>
</li>
<li>Windows 7
<ul>
<li>I plan to use this as the main platform for developing tutorials and documentation, for example Camtasia and Captivate can be used to capture screens in the other environments (at least that is my plan).</li>
</ul>
</li>
</ul>
<p>So, there you have it. And it only took 3 days to set up (remember I also had to install anti-virus on these systems as well as firewalls and various web browsers). As you may suspect, I will be installing other applications and moving data from other systems for weeks to come. I hope to report back in a few months as to how this approach is working out.</p>
<p>To complete the insanity, I am somewhat considering running virtualization within one of the Windows Server 2008 instances. This would give me the ability to try out a virtual environment within a virtual environment. Perhaps that is going a bit over the edge *grin*.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markdubois.info/weblog/2009/12/new-laptop-configuration/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
