<?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>Wacdesigns &#187; Work</title>
	<atom:link href="http://www.wacdesigns.com/category/work/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.wacdesigns.com</link>
	<description>What about Creativity ?</description>
	<lastBuildDate>Fri, 02 Dec 2011 11:50:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Simple Resx Editor</title>
		<link>http://www.wacdesigns.com/2011/01/04/simple-resx-editor/</link>
		<comments>http://www.wacdesigns.com/2011/01/04/simple-resx-editor/#comments</comments>
		<pubDate>Tue, 04 Jan 2011 08:59:58 +0000</pubDate>
		<dc:creator>jf</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.wacdesigns.com/?p=302</guid>
		<description><![CDATA[I recently came to a nice Resx Editor alternative. It&#8217;s simple to use and the learning curve is very low. It&#8217;s perfect for your staff that you don&#8217;t want to train in Visual Studio to edit Resx file to text translation. Take a look at it: http://simpleresxeditor.blogspot.com/2010/12/simple-resx-editor-0660-is-now.html There is also a video tutorial available: http://www.youtube.com/watch?v=7hUdkqVXmWc&#38;feature=player_embedded [...]]]></description>
			<content:encoded><![CDATA[<p>I recently came to a nice Resx Editor alternative. It&#8217;s simple to use and the learning curve is very low. It&#8217;s perfect for your staff that you don&#8217;t want to train in Visual Studio to edit Resx file to text translation.</p>
<p>Take a look at it: <a href="http://simpleresxeditor.blogspot.com/2010/12/simple-resx-editor-0660-is-now.html" rel="nofollow" target="_blank">http://simpleresxeditor.blogspot.com/2010/12/simple-resx-editor-0660-is-now.html</a></p>
<p>There is also a video tutorial available: <a href="http://www.youtube.com/watch?v=7hUdkqVXmWc&amp;feature=player_embedded" target="_blank" rel="nofollow">http://www.youtube.com/watch?v=7hUdkqVXmWc&amp;feature=player_embedded</a></p>
<p>It features:</p>
<p>* Highlight differences and coincidences (1)</p>
<p>* Highlight keys containing text</p>
<p>* Show/Hide keys</p>
<p>* Filter text-only rows</p>
<p>* Drag and drop support</p>
<p>* Multi-language UI</p>
<p>(1) With multiple resx files loaded</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wacdesigns.com/2011/01/04/simple-resx-editor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CodeIgniter &#8211; Pagination SEO Issue</title>
		<link>http://www.wacdesigns.com/2010/10/15/codeigniter-pagination-seo-issue/</link>
		<comments>http://www.wacdesigns.com/2010/10/15/codeigniter-pagination-seo-issue/#comments</comments>
		<pubDate>Fri, 15 Oct 2010 13:00:47 +0000</pubDate>
		<dc:creator>jf</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.wacdesigns.com/?p=287</guid>
		<description><![CDATA[I have recently been working with a PHP MVC Framework called CodeIgniter on a complete web application solution.  I have been trying some major framework like CakePHP, Zen and Symphony which where all very powerful framework for MVC and RAD development, the only thing they lack was a bit more of flexibility like CodeIgniter propose. [...]]]></description>
			<content:encoded><![CDATA[<p>I have recently been working with a PHP MVC Framework called <a title="CodeIgniter Website" href="http://codeigniter.com/" target="_blank">CodeIgniter </a>on a complete web application solution.  I have been trying some major framework like CakePHP, Zen and Symphony which where all very powerful framework for MVC and RAD development, the only thing they lack was a bit more of flexibility like CodeIgniter propose. Anyway may not have taken enought time to get to know all of the specifics of the other Frameworks, but while benchmarking i got aquainted to CodeIgniter much faster.</p>
<p>Even though CodeIgniter is a very flexible framework, it&#8217;s very lightweight and some feature for Web application have not been taken into account, that in mind, the people behind <a href="http://ellislab.com/" target="_blank">EllisLab, Inc</a> made sure that these small twigs were easily bypassed by allowing complete customization of their libraries.</p>
<p>Here is my original issue:</p>
<p>I have a item listing page with pagination activated and I wanted the first page to be the the root URL of the item page.<br />
e.g. http://www.mysite.com/items</p>
<p>But what CodeIgniter Pagination Library generated for the first page was: http://www.mysite.com/result/1</p>
<p>That is pretty inconvenient for SEO, because the crawler will find two pages with the same content while crawling the pages.</p>
<p>Thus i modified the CI_Pagination library an created MY_Pagination.</p>
<p>First of all i have added a new variable called first_page_url as class variable in MY_Pagination class</p>
<pre>

class MY_Pagination extends CI_Pagination {

var $first_page_url        = ''; // The first page will have this URL
</pre>
<p>I have changed the original Pagination Library First page rendering from</p>
<pre>

// Render the "First" link
if  ($this-&gt;cur_page &gt; ($this-&gt;num_links + 1))
{
$output .= $this-&gt;first_tag_open.'&lt;a href="'.$this-&gt;base_url.'"&gt;'.$this-&gt;first_link.'&lt;/a&gt;'.$this-&gt;first_tag_close;
}
</pre>
<p>to</p>
<pre>

// Render the "First" link
if  ($this-&gt;cur_page &gt; ($this-&gt;num_links + 1))
{
$output .= $this-&gt;first_tag_open.'&lt;a href="'.$this-&gt;first_page_url == '' ? $this-&gt;base_url : $this-&gt;first_page_url.'"&gt;'.$this-&gt;first_link.'&lt;/a&gt;'.$this-&gt;first_tag_close;
}
</pre>
<p>This way if during the initialization of the Pagination class the configuration setting first_page_url was passed it will be used instead of the base_url.</p>
<p>Some modification were also made to the pagination digit generation from</p>
<pre>

// Write the digit links
for ($loop = $start -1; $loop &lt;= $end; $loop++)
{
$i = ($loop * $this-&gt;per_page) - $this-&gt;per_page;

if ($i &gt;= 0)
{
if ($this-&gt;cur_page == $loop)
{
$output .= $this-&gt;cur_tag_open.$loop.$this-&gt;cur_tag_close; // Current page
}
else
{
$n = ($i == 0) ? '' : $i;
$output .= $this-&gt;num_tag_open.'&lt;a href="'.$this-&gt;base_url.$n.'"&gt;'.$loop.'&lt;/a&gt;'.$this-&gt;num_tag_close;
}
}
}
</pre>
<p>to</p>
<pre>

// Write the digit links
for ($loop = $start -1; $loop &lt;= $end; $loop++)
{
$i = ($loop * $this-&gt;per_page) - $this-&gt;per_page;

if ($i &gt;= 0)
{
if ($this-&gt;cur_page == $loop)
{
$output .= $this-&gt;cur_tag_open.$loop.$this-&gt;cur_tag_close; // Current page
}
else if($loop == 1 &amp;&amp; $this-&gt;first_page_url != '')
{
$output .= $this-&gt;num_tag_open.'&lt;a href="'.$this-&gt;first_page_url.'"&gt;'.$loop.'&lt;/a&gt;'.$this-&gt;num_tag_close;
}
else
{
$n = ($i == 0) ? '' : $i;
$output .= $this-&gt;num_tag_open.'&lt;a href="'.$this-&gt;base_url.$n.'"&gt;'.$loop.'&lt;/a&gt;'.$this-&gt;num_tag_close;
}
}
}
</pre>
<p>which will make sure that the page numbered 1 takes has the first_page_url has href when  first_page_url is available.</p>
<p>The complete file can be found here: <a href="http://www.wacdesigns.com/wp-content/uploads/2010/10/MY_Pagination.zip">MY_Pagination</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wacdesigns.com/2010/10/15/codeigniter-pagination-seo-issue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IIS Log Archiving</title>
		<link>http://www.wacdesigns.com/2008/06/24/iis-log-archiving/</link>
		<comments>http://www.wacdesigns.com/2008/06/24/iis-log-archiving/#comments</comments>
		<pubDate>Tue, 24 Jun 2008 05:58:09 +0000</pubDate>
		<dc:creator>jf</dc:creator>
				<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[IIS]]></category>

		<guid isPermaLink="false">http://www.wacdesigns.com/?p=145</guid>
		<description><![CDATA[You need to archive your IIS Log often so as not to get your log folder full with HTTP Logs. I have been searching for some quick implemented solutions for performing this IIS Log archiving task and found some quiet nice discussions and article about it. Here are the links to the different post and [...]]]></description>
			<content:encoded><![CDATA[<p>You need to archive your IIS Log often so as not to get your log folder full with HTTP Logs.</p>
<p>I have been searching for some quick implemented solutions for performing this IIS Log archiving task and found some quiet nice discussions and article about it. Here are the links to the different post and forums that talk about a solution to solve this issue:</p>
<p><a href="http://blogs.thesitedoctor.co.uk/tim/2007/02/10/Automatically+Delete+Old+IIS+Log+Files.aspx" target="_blank">http://blogs.thesitedoctor.co.uk/tim/2007/02/10/Automatically+Delete+Old+IIS+Log+Files.aspx</a></p>
<p><a href="http://www.iislogs.com/" target="_blank">http://www.iislogs.com/</a> (Tool to automate maintenance of IIS Log)<a href="http://www.iislogs.com/" target="_blank"><br />
</a></p>
<p><a href="http://forums.webhostautomation.com/showthread.php?t=5053" target="_blank">http://forums.webhostautomation.com/showthread.php?t=5053</a></p>
<p><a href="http://forums.iis.net/p/1022450/1388469.aspx" target="_blank">http://forums.iis.net/p/1022450/1388469.aspx</a></p>
<p>On my side i need something with a bit more functionality so, i modified some of the scripts that i could find on the different article related above and came up with a solution that can.</p>
<ul>
<li>Compress each log file found in your websites folder</li>
<li>FTP the compressed files on a foreign server ( Keeping historic of your IIS log ) Uses <a title="Chillkat Free FTP ActiveX" href="http://www.chilkatsoft.com/chilkatftp.asp" target="_blank">Chillkat Free FTP ActiveX</a></li>
<li>Delete them from your disk afterward</li>
</ul>
<p>You can launch this process everyday and there will be no log that is older than a specified number of days on your server.</p>
<p>Requirement for this solution to work:</p>
<ul>
<li><a title="FTP ActiveX Download" href="http://www.chillkatsoft.com/download/FtpActiveX.msi" target="_blank">Chillkatsoft FTP.1 ActiveX</a></li>
<li><a title="Gzip" href="http://www.gzip.org/" target="_blank">gzip archiver</a></li>
</ul>
<p>You can download the script <a title="IIS Log Archiver" href="http://www.wacdesigns.com/wp-content/uploads/2008/06/IISLogarchiver.zip" target="_blank">here</a>.</p>
<p>See the entire script in the <a title="IIS Log Archiving" href="http://www.wacdesigns.com/2008/06/24/iis-log-archiving/" target="_self">full post</a>.</p>
<p><span id="more-86"></span><br />
[sourcecode language='vb']Option Explicit</p>
<p>Const ftpSite = &#8220;yourftpsite&#8221;<br />
Const ftpUsername = &#8220;ftpusername&#8221;<br />
Const ftpPassword = &#8220;ftppassword&#8221;<br />
Const bDEBUG = True<br />
Const zipProgram = &#8220;C:\gzip\gzip.exe&#8221; &#8216; Path to your gzip utility<br />
Const zipExtension = &#8220;.gz&#8221;</p>
<p>Dim objFSO, objFolder, objF, objWS<br />
Dim strYear, strDay, strMonth, strDate<br />
Dim strBaseFTPPath<br />
Dim bFTPUpload</p>
<p>bFTPUpload = False</p>
<p>&#8216;If no arguments passed quit the script<br />
If WScript.Arguments.Count = 0 Then<br />
WScript.Echo &#8220;weblogs.vbs startdirectory [ftppath]&#8221;<br />
WScript.Quit (1)<br />
End If</p>
<p>&#8216;Check if there is the FTP path Argument sent<br />
If WScript.Arguments.Count > 1 Then<br />
bFTPUpload = True<br />
strBaseFTPPath = wscript.arguments (1)<br />
End If</p>
<p>strDate</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wacdesigns.com/2008/06/24/iis-log-archiving/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Virtualization using VirtualBox</title>
		<link>http://www.wacdesigns.com/2008/06/06/virtualization-using-virtualbox/</link>
		<comments>http://www.wacdesigns.com/2008/06/06/virtualization-using-virtualbox/#comments</comments>
		<pubDate>Fri, 06 Jun 2008 02:00:28 +0000</pubDate>
		<dc:creator>jf</dc:creator>
				<category><![CDATA[Cool Stuff]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[VirtualBox]]></category>
		<category><![CDATA[Virtualization]]></category>

		<guid isPermaLink="false">http://www.wacdesigns.com/?p=134</guid>
		<description><![CDATA[Microsoft Virtual PC, which is a quiet efficient tool but needs licences to work with. Today while browsing the web i came to get accross a free open source alternative: VirtualBox I installed it, had a copy of Linux Ubuntu and created it new virtual guest OS, it took me about 1 hour to set [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft Virtual PC, which is a quiet efficient tool but needs licences to work with. Today while browsing the web i came to get accross a free open source alternative: <a href="http://www.virtualbox.org/" target="_blank">VirtualBox</a></p>
<p>I installed it, had a copy of Linux Ubuntu and created it new virtual guest OS, it took me about 1 hour to set everything up.<br />
From VirtualBox website:</p>
<blockquote><p><span class="searchword0">VirtualBox</span> is a family of powerful x86 <a class="wiki" href="http://www.virtualbox.org/wiki/Virtualization">virtualization</a> products for enterprise as well as home use. Not only is <span class="searchword0">VirtualBox</span> an extremely feature rich, high performance product for enterprise customers, it is also the only professional solution that is freely available as Open Source Software under the terms of the GNU General Public License (GPL). See &#8220;<a class="wiki" href="http://www.virtualbox.org/wiki/VirtualBox">About <span class="searchword0">VirtualBox</span></a>&#8221; for an introduction.</p>
<p>Presently, <span class="searchword0">VirtualBox</span> runs on Windows, Linux, Macintosh and OpenSolaris hosts and supports a large number of <a class="wiki" href="http://www.virtualbox.org/wiki/Guest_OSes">guest operating systems</a> including but not limited to Windows (NT 4.0, 2000, XP, Server 2003, Vista), DOS/Windows 3.x, Linux (2.4 and 2.6), and OpenBSD.</p>
<p><span class="searchword0">VirtualBox</span> is being actively developed with frequent releases and has an ever growing list of features, supported guest operating systems and platforms it runs on. <span class="searchword0">VirtualBox</span> is a community effort backed by a dedicated company: everyone is encouraged to contribute while Sun ensures the product always meets professional quality criteria.</p></blockquote>
<p>That said, I seriously encourage any developer, who needs Virtual OS to run, to either to make a development platform or doing test.</p>
<p>Here are some screen shots of running Windows XP and Ubuntu Linux.<br />
<a href="http://www.wacdesigns.com/wp-content/uploads/2008/06/starting_virtualbox.jpg"><img class="alignleft size-medium wp-image-138" title="starting_virtualbox" src="http://www.wacdesigns.com/wp-content/uploads/2008/06/starting_virtualbox-300x187.jpg" alt="" width="300" height="187" /></a><a href="http://www.wacdesigns.com/wp-content/uploads/2008/06/running_ubuntu.jpg"><img class="alignnone size-medium wp-image-137" title="running_ubuntu" src="http://www.wacdesigns.com/wp-content/uploads/2008/06/running_ubuntu-300x187.jpg" alt="" width="300" height="187" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wacdesigns.com/2008/06/06/virtualization-using-virtualbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The 30 skills every IT person should have</title>
		<link>http://www.wacdesigns.com/2008/06/04/the-30-skills-every-it-person-should-have/</link>
		<comments>http://www.wacdesigns.com/2008/06/04/the-30-skills-every-it-person-should-have/#comments</comments>
		<pubDate>Wed, 04 Jun 2008 02:00:15 +0000</pubDate>
		<dc:creator>jf</dc:creator>
				<category><![CDATA[Internet Articles]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Skills]]></category>

		<guid isPermaLink="false">http://www.wacdesigns.com/?p=135</guid>
		<description><![CDATA[I found this article on infoworld.com it was written by Richard Casselberry. Here are some of them you can read the rest of the article here. 1. Be able to fix basic PC issues. These can be how to map a printer, back up files, or add a network card. You don&#8217;t need to be [...]]]></description>
			<content:encoded><![CDATA[<p>I found this article on infoworld.com it was written by Richard Casselberry. Here are some of them you can read the rest of the article <a href="http://www.infoworld.com/archives/emailPrint.jsp?R=printThis&amp;A=/article/08/06/02/23FE-how-to-fire-IT-staff-skills-list_1.html" target="_blank">here</a>.</p>
<p><span class="artText"></p>
<blockquote>
<p class="ArticleBody"><strong>1. Be able to fix basic PC issues.</strong> These can be how to map a printer, back up files, or add a network card. You don&#8217;t need to be an expert and understand how to overclock a CPU or hack the registry, but if you work in IT, people expect you to be able to do some things.</p>
<p class="ArticleBody"><strong>[ If</strong> <strong>you have IT staffers who aren't up to snuff, fire them. <a class="regularArticleU" href="http://www.infoworld.com/article/08/06/02/23FE-how-to-fire-it-staff_1.html">Learn how to do it right.</a> ]</strong></p>
<p class="ArticleBody"><strong>2. Work the help desk.</strong> Everyone, from the CIO to the senior architect, should be able to sit down at the help desk and answer the phones. Not only will you gain a new appreciation for the folks on the phones, but you will also teach them more about your process and avoid escalations in the future.</p>
<p class="ArticleBody"><strong>3. Do public speaking.</strong> At least once, you should present a topic to your peers. It can be as simple as a five-minute tutorial on how IM works, but being able to explain something and being comfortable enough to talk in front of a crowd is a skill you need to have. If you are nervous, partner with someone who is good at it, or do a roundtable. This way, if you get flustered, someone is there to cover for you.</p>
<p class="ArticleBody"><strong>4. Train someone.</strong> The best way to learn is to teach.</p>
<p class="ArticleBody"><strong>5. Listen more than you speak.</strong> I very rarely say something I didn&#8217;t already know, but I often hear other people say things and think, &#8220;Darn, I wish I knew that last week.&#8221;</p>
</blockquote>
<p class="ArticleBody"><a href="http://www.infoworld.com/archives/emailPrint.jsp?R=printThis&amp;A=/article/08/06/02/23FE-how-to-fire-IT-staff-skills-list_1.html" target="_blank">Read more&#8230;</a></p>
<p></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wacdesigns.com/2008/06/04/the-30-skills-every-it-person-should-have/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Freelancing, Online jobs for professionals</title>
		<link>http://www.wacdesigns.com/2008/06/02/freelancing-online-jobs-for-professionals/</link>
		<comments>http://www.wacdesigns.com/2008/06/02/freelancing-online-jobs-for-professionals/#comments</comments>
		<pubDate>Mon, 02 Jun 2008 02:00:00 +0000</pubDate>
		<dc:creator>jf</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[Freelance]]></category>
		<category><![CDATA[Freelancing]]></category>
		<category><![CDATA[Online Job]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.wacdesigns.com/?p=113</guid>
		<description><![CDATA[Nowadays many professionals in different activity sector offers their services and expertise through freelance portals. These portals are websites were you can post job offerings and register as a freelance to take job offerings. In terms of business, you can bargain and get the work done at an affordable price with expert professionals. So where [...]]]></description>
			<content:encoded><![CDATA[<p>Nowadays many professionals in different activity sector offers their services and expertise through freelance portals. These portals are websites were you can post job offerings and register as a freelance to take job offerings. In terms of business, you can bargain and get the work done at an affordable price with expert professionals.</p>
<p>So where is the catch ? Why doesn&#8217;t everyone go online and work as a freelancer ?</p>
<p>It&#8217;s quiet simple, before getting a Job online it can take quiet a while you must register to several websites either paid or non paid, then apply for job positions that fits your expertise, wait for an answer and if you are accepted start working. When working as a freelancer you are not bound by any long term contract many a time, you get to work on a module for 1 month and when the job is done, you simply have to get to the entire process again, which can sometimes take several weeks before you get another job. So being a freelance is a tedious and long process, but it is quiet a remunerative process, since you get to work on different project and gain much more experience.</p>
<p>Since I have expertise in Web Technology and Programming here are some websites that i am registered to.</p>
<p><img src="file:///C:/DOCUME~1/JEAN-F~1/LOCALS~1/Temp/moz-screenshot-3.jpg" alt="" /></p>
<h3>Guru.com</h3>
<p><img class="alignleft size-medium wp-image-117" title="Guru.com Logo" src="http://www.wacdesigns.com/wp-content/uploads/2008/05/guru_logo.jpg" alt="Guru.com Logo" width="76" height="77" /><a title="Guru.com" href="http://www.guru.com" target="_blank"> Guru.com</a> was launched August 2000 (as A2Zmoonlighter.com)<br />
<strong>It&#8217;s Mission:</strong> To provide the most efficient platform to connect and perform transactions with freelance professionals locally, nationally, and globally.</p>
<p><img class="aligncenter size-full wp-image-116" title="Guru.com Baseline" src="http://www.wacdesigns.com/wp-content/uploads/2008/05/guru_exp.jpg" alt="Guru.com Baseline" width="499" height="93" /></p>
<h3>Odesk.com</h3>
<p><a href="http://www.wacdesigns.com/wp-content/uploads/2008/05/odesk_logo.gif"><img class="alignleft size-medium wp-image-118" title="odesk logo" src="http://www.wacdesigns.com/wp-content/uploads/2008/05/odesk_logo.gif" alt="odesk logo" width="147" height="60" /></a> <a title="Odesk" href="http://www.odesk.com" target="_blank">Odesk.com</a> was created in 2003<br />
<strong>It&#8217;s Mission:</strong> Build the world&#8217;s best network of technology service providers through screening, testing, and feedback<br />
Offer the platform that lets buyers successfully hire, manage, and pay service providers from around the world</p>
<p><a href="http://www.wacdesigns.com/wp-content/uploads/2008/05/odesk_exp.jpg"><img class="aligncenter size-full wp-image-119" title="odesk platform" src="http://www.wacdesigns.com/wp-content/uploads/2008/05/odesk_exp.jpg" alt="odesk platform" width="500" height="147" /></a></p>
<h3>thecodingmachine.com</h3>
<p><a href="http://www.wacdesigns.com/wp-content/uploads/2008/05/tcm_logo.jpg"><img class="alignleft size-medium wp-image-120" title="tcm_logo" src="http://www.wacdesigns.com/wp-content/uploads/2008/05/tcm_logo-300x35.jpg" alt="The Coding Machine Logo" width="300" height="35" /></a> <a title="The Coding Machine" href="http://www.thecodingmachine.com" target="_blank">thecodingmachine.com</a> was launched in late 2006<br />
<strong>It&#8217;s Mission:</strong> offers you IT services. Thanks to a new approach, your projects can be delivered quicker and at lower cost.<br />
Has created a web platform and linked together coders from all over the world.<br />
<a href="http://www.wacdesigns.com/wp-content/uploads/2008/05/tcm_exp.jpg"><img class="aligncenter size-medium wp-image-121" title="tcm_exp" src="http://www.wacdesigns.com/wp-content/uploads/2008/05/tcm_exp-300x39.jpg" alt="" width="300" height="39" /></a></p>
<p>There are many for website offering job posting and freelance work but, there are a the one i experienced with and i find them pretty good tools to deal with when you are searching for a job online to share your expertise.</p>
<p>Leave your comment on other sites that might be good, I&#8217;ll review them and update this post.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wacdesigns.com/2008/06/02/freelancing-online-jobs-for-professionals/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exception: Collection was modified; enumeration operation may not execute.</title>
		<link>http://www.wacdesigns.com/2008/05/28/collection-was-modified-enumeration-operation-may-not-execute/</link>
		<comments>http://www.wacdesigns.com/2008/05/28/collection-was-modified-enumeration-operation-may-not-execute/#comments</comments>
		<pubDate>Wed, 28 May 2008 03:00:37 +0000</pubDate>
		<dc:creator>jf</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[Exception]]></category>

		<guid isPermaLink="false">http://www.wacdesigns.com/?p=80</guid>
		<description><![CDATA[It&#8217;s been a while that i didn&#8217;t get this Exception, while working, and yesterday, while I was performing some test on a new module that I implemented i got this exception. I knew i did get it sometimes back last year, and managed to solve it. So here is one solution when you are dealing [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a while that i didn&#8217;t get this Exception, while working, and yesterday, while I was performing some test on  a new module that I implemented i got this exception. I knew i did get it sometimes back last year, and managed to solve it. So here is one solution when you are dealing with this kind of issue:</p>
<pre>

IList&lt;Product&gt; productList = new List&lt;Product&gt;();
productList.Add(new Product("Some product 1");
productList.Add(new Product("Some product 2");
productList.Add(new Product("Some product 3");
productList.Add(new Product("Some product 4");
</pre>
<pre>

for(int i=(productList.Count -1); i &gt;= 0; i--)
{
//Perform Edit, Update, Delete Operation using for .. i loop in reverse order
}
</pre>
<p>There is a list of other solutions that can be found on the following websites:<br />
<a href="http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=372532&amp;SiteID=1" target="_blank">http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=372532&amp;SiteID=1</a><br />
<a href="http://forums.asp.net/p/1147145/1861164.aspx" target="_self">http://forums.asp.net/p/1147145/1861164.aspx</a><br />
<a href="http://www.experts-exchange.com/Programming/Programming_Languages/Dot_Net/ASP_DOT_NET/Q_21585534.html" target="_blank">http://www.experts-exchange.com/Programming/Programming_Languages/Dot_Net/ASP_DOT_NET/Q_21585534.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wacdesigns.com/2008/05/28/collection-was-modified-enumeration-operation-may-not-execute/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IT Workers gaining weigh and possible health problem</title>
		<link>http://www.wacdesigns.com/2008/05/23/it-workers-gaining-weigh-and-possible-health-problem/</link>
		<comments>http://www.wacdesigns.com/2008/05/23/it-workers-gaining-weigh-and-possible-health-problem/#comments</comments>
		<pubDate>Fri, 23 May 2008 02:00:34 +0000</pubDate>
		<dc:creator>jf</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[Health]]></category>
		<category><![CDATA[IT]]></category>

		<guid isPermaLink="false">http://www.wacdesigns.com/?p=77</guid>
		<description><![CDATA[I&#8217;ve just found a nice article that talks of a study performed by CareerBuilder.com, it talks about how IT workers have begun to gain weigh just by sitting all day in front of their computers . Let&#8217;s just hear what they have to say. Here is a little intro: Feeling a little, shall we say, [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just found a nice article that talks of a study performed by <strong><a title="careerbuilder.com" href="http://careerbuilder.com/" target="_blank">CareerBuilder.com</a></strong>, it talks about how IT workers have begun to gain weigh just by sitting all day in front of their computers <img src='http://www.wacdesigns.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . Let&#8217;s just hear what they have to say.</p>
<p>Here is a little intro:</p>
<blockquote><p>Feeling a little, shall we say, sluggish lately? You might be among the vast ranks of IT workers who have put on some extra heft while sitting at their desks.</p>
<p>A study by <a title="careerbuilder.com" href="http://careerbuilder.com" target="_blank"><strong>CareerBuilder.com</strong></a> found that half of U.S. IT workers have gained weight at their current jobs.</p>
<p>The study, which polled nearly 7,700 participants from Feb. 11 through March 13, found that 34 percent of IT workers report they have gained more than 10 pounds in their current positions. Even more alarming, 17 percent say they have put on more than 20 pounds!&#8230;</p></blockquote>
<p>Read the full article on: <a title="IT Workers Weigh In on Health Habits" href="http://blog.channelinsider.com/content001/channel_chatter/it_workers_weigh_in_on_health_habits.html" target="_blank">IT Workers Weigh In on Health Habits</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wacdesigns.com/2008/05/23/it-workers-gaining-weigh-and-possible-health-problem/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Padding is invalid and cannot be removed.</title>
		<link>http://www.wacdesigns.com/2008/01/18/google-crawling-webresourceaxd-scriptresourceaxd-padding-is-invalid-and-cannot-be-removed/</link>
		<comments>http://www.wacdesigns.com/2008/01/18/google-crawling-webresourceaxd-scriptresourceaxd-padding-is-invalid-and-cannot-be-removed/#comments</comments>
		<pubDate>Fri, 18 Jan 2008 12:32:38 +0000</pubDate>
		<dc:creator>jf</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Search Engine]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.wacdesigns.com/2008/01/18/google-crawling-webresourceaxd-scriptresourceaxd-padding-is-invalid-and-cannot-be-removed/</guid>
		<description><![CDATA[Stop Google crawling WebResource.axd &#38; ScriptResource.axd As an ASP.NET developer i often get error message: &#8220;Padding is invalid and cannot be removed&#8221;. It&#8217;s a pretty annoying message that i have been trying to get rid of for days. It was caused by Google trying to index, crawl my WebResource.axd and session. But when the session [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Stop Google crawling WebResource.axd &amp; ScriptResource.axd</strong><br />
As an ASP.NET developer i often get error message: &#8220;Padding is invalid and cannot be removed&#8221;. It&#8217;s a pretty annoying message that i have been trying to get rid of for days. It was caused by Google trying to index, crawl my WebResource.axd and  session. But when the session expires you get this error message. Since Google caches the pages it visits the session on this page has already expired after it is crawled, when it tries to crawl the page again and request the WebResource.axd or ScriptResource.axd with an old key, an exception is raised.</p>
<p>Therefore to solve this problem the simple solution for that is to modify your robots.txt file in your root directory</p>
<p>and add the following at the end</p>
<p>Disallow: /ScriptResource.axd<br />
Disallow:/WebResource.axd</p>
<p>With this no more issues regarding invalid padding.</p>
<p>If this does not solve your issue you can take a look at what other users propose <a title="Google Search Result" href="http://www.google.mu/search?hl=en&amp;q=Padding+is+invalid+and+cannot+be+removed&amp;btnG=Search" target="_blank">here</a>.</p>
<p>Some update on this issue, i found out while googling some days back:</p>
<p>On this post you can find  out  how to compress the webresource.axd and also somewhere in between prevent this error to occur.<br />
<a href="http://mironabramson.com/blog/post/2007/10/New--Shiny--WebResourceaxd-compression-Module.aspx" target="_blank"> http://mironabramson.com/blog/post/2007/10/New&#8211;Shiny&#8211;WebResourceaxd-compression-Module.aspx</a></p>
<p>Use the tool found at the website below to generate a machine key and a  decryption key:<br />
<a href="http://www.orcsweb.com/articles/aspnetmachinekey.aspx" target="_blank"> http://www.orcsweb.com/articles/aspnetmachinekey.aspx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wacdesigns.com/2008/01/18/google-crawling-webresourceaxd-scriptresourceaxd-padding-is-invalid-and-cannot-be-removed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vinivi, the Team</title>
		<link>http://www.wacdesigns.com/2007/10/27/vinivi-the-team/</link>
		<comments>http://www.wacdesigns.com/2007/10/27/vinivi-the-team/#comments</comments>
		<pubDate>Sat, 27 Oct 2007 05:20:50 +0000</pubDate>
		<dc:creator>jf</dc:creator>
				<category><![CDATA[My Life]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[Vinivi]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[Team]]></category>

		<guid isPermaLink="false">http://www.wacdesigns.com/2007/10/27/vinivi-the-team/</guid>
		<description><![CDATA[Goodbye are always sad, but last week we made a little party for the departure of Noelette from the Vinivi Team. here is a small video introducing all the members of the team. [kml_flashembed movie="Vinvi the Team" width="425" height="335" wmode="transparent" /]]]></description>
			<content:encoded><![CDATA[<p>Goodbye are always sad, but last week we made a little party for the departure of Noelette from the <a title="Vinivi" href="http://www.vinivi.com" target="_blank">Vinivi </a>Team. here is a small video introducing all the members of the team.</p>
<p><code>[kml_flashembed movie="</code><a href="http://www.dailymotion.com/swf/797FZNxK1fvsbnkBb">Vinvi the Team</a><code>" width="425" height="335" wmode="transparent" /]</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wacdesigns.com/2007/10/27/vinivi-the-team/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  www.wacdesigns.com/category/work/feed/ ) in 1.17839 seconds, on Feb 4th, 2012 at 8:45 am UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on Feb 11th, 2012 at 8:45 am UTC -->
