<?xml version="1.0" encoding="UTF-8" ?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
			<title>Techlicity Ventures RSS Feed</title>
			<link>http://www.techlicity.com/feed.rss.html</link>
			<description></description>
			<language>en</language>
			<copyright>Techlicity Ventures Corporation 2006</copyright>
			<ttl>120</ttl>
			<item>
				<title>4 Functions for Textarea inputs</title>
				<link>http://www.techlicity.com/blog/4-functions-for-textarea-inputs.html</link>
				<description><![CDATA[ The first two functions were solutions to a requirement where I had to convert the text within a textarea box to render within a div or span element. At first I thought it would be easy, a simple div.innerHTML = textarea.value but then another problem showed up. All text were rendered by the browser as one paragraph. Thus I needed a new line to <br /> converter. The last two function automatically grows a textarea box vertically as a user inputs content larger than the original size, it also takes a second argument that limits the amount of characters, good for client side validation. ]]></description>
				<pubDate>Thu, 14 Jan 2010 15:58:48 -0500</pubDate>
				<guid isPermaLink="false">http://www.techlicity.com/blog/4-functions-for-textarea-inputs.html</guid>
				<dc:creator>Subhas Fagu</dc:creator>
				
			</item>
		
			<item>
				<title>Monitor progress bar update via taskbar on Windows 7</title>
				<link>http://www.techlicity.com/blog/monitor-progress-bar-update-via-taskbar-on-windows-7.html</link>
				<description><![CDATA[ I've just noticed that Windows 7 displays a progress bar update within the taskbar ]]></description>
				<pubDate>Wed, 02 Dec 2009 23:03:29 -0500</pubDate>
				<guid isPermaLink="false">http://www.techlicity.com/blog/monitor-progress-bar-update-via-taskbar-on-windows-7.html</guid>
				<dc:creator>Subhas Fagu</dc:creator>
				
			</item>
		
			<item>
				<title>Change SVN repository in Eclipse</title>
				<link>http://www.techlicity.com/blog/change-svn-repository-in-eclipse.html</link>
				<description><![CDATA[ We recently moved our SVN repositories to a bigger and better server. Long story short, we were not able to keep the same address, which didn't seem like such a big deal. One would think that a simple right click on the project->properties would be the simple fix, however it wasn't. After spending some time on it, I finally figured it out and decided to share. While I found several solutions on the net, I think this is the easiest of them all.   ]]></description>
				<pubDate>Sat, 28 Nov 2009 12:26:16 -0500</pubDate>
				<guid isPermaLink="false">http://www.techlicity.com/blog/change-svn-repository-in-eclipse.html</guid>
				<dc:creator>Subhas Fagu</dc:creator>
				
			</item>
		
			<item>
				<title>Static page in CakePHP</title>
				<link>http://www.techlicity.com/blog/static-page-in-cakephp.html</link>
				<description><![CDATA[ In every dynamicly driving project there must exist some static content. While there are dozens of ways of doing this, we here at Techlicity do it in one of 2 ways. If your looking to serve up strictly static html pages such as privacy policy, AUP or just simple static description pages then you might want to skip all of CakePHP preprocessing to realize that your content is static. ]]></description>
				<pubDate>Mon, 21 Sep 2009 09:39:49 -0400</pubDate>
				<guid isPermaLink="false">http://www.techlicity.com/blog/static-page-in-cakephp.html</guid>
				<dc:creator>Subhas Fagu</dc:creator>
				
			</item>
		
			<item>
				<title>CakePHP: controller without model</title>
				<link>http://www.techlicity.com/blog/cakephp-controller-without-model.html</link>
				<description><![CDATA[ Sometimes you just want to make a simple controller without an associated model or table. CakePHP makes this very easy while showing it's flexibility. CakePHP uses the variable $uses to associate a controller to a model, by default it uses the singular name of the controller or the $name variable.  ]]></description>
				<pubDate>Mon, 21 Sep 2009 09:16:29 -0400</pubDate>
				<guid isPermaLink="false">http://www.techlicity.com/blog/cakephp-controller-without-model.html</guid>
				<dc:creator>Subhas Fagu</dc:creator>
				
			</item>
		
			<item>
				<title>Internet Explorer Crashes When Oracle Forms Is Launched</title>
				<link>http://www.techlicity.com/blog/oracle-forms-crashes-internet-explorer.html</link>
				<description><![CDATA[ When running oracle form modules using Internet Explorer and JInitiator 1.3.1.x, the browser window opens and crashes before the applet starts. When using Firefox, there’s no problem at all. ]]></description>
				<pubDate>Wed, 19 Aug 2009 11:16:40 -0400</pubDate>
				<guid isPermaLink="false">http://www.techlicity.com/blog/oracle-forms-crashes-internet-explorer.html</guid>
				<dc:creator>Utkarsh Patel</dc:creator>
				
			</item>
		
			<item>
				<title>Ignore files or folders on svn update</title>
				<link>http://www.techlicity.com/blog/ignore-files-or-folders-on-svn-update.html</link>
				<description><![CDATA[ This article covers the simple task of ignoring files on svn update. In our case, we needed to exclude our applications config files. This way we can have a DEV, QA and LIVE environment, all easily updated with svn while maintaining there respective config files. ]]></description>
				<pubDate>Sat, 30 May 2009 15:01:17 -0400</pubDate>
				<guid isPermaLink="false">http://www.techlicity.com/blog/ignore-files-or-folders-on-svn-update.html</guid>
				<dc:creator>Subhas Fagu</dc:creator>
				
			</item>
		
			<item>
				<title>C# .NET - Hash Algorithms - MD5, SHA1, SHA256, SHA512</title>
				<link>http://www.techlicity.com/blog/dotnet-hash-algorithms.html</link>
				<description><![CDATA[ One of the great problems I have had with OO languages such as .NET and Java is that some tasks, that are as simple as calling a function in other languages, are complicated to no end. One such problem is with the different hash functions in .NET available via System.Security.Cryptography. In PHP if I need to get the MD5 of a string I simply call the built in MD5 function. In .NET I need to build my own MD5 function using System.Security.Cryptography and that, even though I understand why it is the way it is, can get a little annoying after a while. I have taken the liberty of simplifying this process by creating a HASH class that can be plugged into your programs as either a new class or by creating a hash.dll of out of it. The code lets you call MD5, SHA1, SHA256 and SHA512 functions and takes care of the process for you. ]]></description>
				<pubDate>Mon, 11 May 2009 23:42:46 -0400</pubDate>
				<guid isPermaLink="false">http://www.techlicity.com/blog/dotnet-hash-algorithms.html</guid>
				<dc:creator>Utkarsh Patel</dc:creator>
				
			</item>
		
			<item>
				<title>Always stay in sync with NTP </title>
				<link>http://www.techlicity.com/blog/always-stay-in-sync-with-ntp.html</link>
				<description><![CDATA[ NTP is the Network Time Protocol. It is a standard way to keep system clocks synced. This post will go through the easy steps of getting you linux box configured to always follow the correct time based on NTP servers.  ]]></description>
				<pubDate>Sat, 09 May 2009 12:08:06 -0400</pubDate>
				<guid isPermaLink="false">http://www.techlicity.com/blog/always-stay-in-sync-with-ntp.html</guid>
				<dc:creator>Subhas Fagu</dc:creator>
				
			</item>
		
			<item>
				<title>Preserving Line Breaks in &lt;textarea&gt;</title>
				<link>http://www.techlicity.com/blog/preserving-line-breaks-in-textarea.html</link>
				<description><![CDATA[ A common problem many first time developers come across is preserving line breaks in a textarea after a form is submitted. This article will show you how to fix this problem in PHP and JavaScript. The code can also be easily converted to any other server side language you maybe using. ]]></description>
				<pubDate>Wed, 06 May 2009 14:28:34 -0400</pubDate>
				<guid isPermaLink="false">http://www.techlicity.com/blog/preserving-line-breaks-in-textarea.html</guid>
				<dc:creator>Utkarsh Patel</dc:creator>
				
			</item>
		
			<item>
				<title>Disable IE Just In Time Debugger</title>
				<link>http://www.techlicity.com/blog/disable-ie-just-in-time-debugger.html</link>
				<description><![CDATA[ While working on a corporate client machine, I enabled the just in time debugger on Internet Explorer 6. I was able to quickly locate and fix my js code. However when time came to disable it back....IT WOULDN'T GO! I searched furiously on the internet for a quick fix but they all involved a registry edit, which due to group policy I could not open.  ]]></description>
				<pubDate>Tue, 05 May 2009 12:05:26 -0400</pubDate>
				<guid isPermaLink="false">http://www.techlicity.com/blog/disable-ie-just-in-time-debugger.html</guid>
				<dc:creator>Subhas Fagu</dc:creator>
				
			</item>
		
			<item>
				<title>Perspectives of Social Change</title>
				<link>http://www.techlicity.com/blog/perspectives-of-social-change.html</link>
				<description><![CDATA[ Amazing Video!. Here is a video that addresses the many perspectives of how we go about social change. ]]></description>
				<pubDate>Mon, 27 Apr 2009 22:15:06 -0400</pubDate>
				<guid isPermaLink="false">http://www.techlicity.com/blog/perspectives-of-social-change.html</guid>
				<dc:creator>Subhas Fagu</dc:creator>
				
			</item>
		
			<item>
				<title>CakePHP - Allow Direct Access to Files and Directories</title>
				<link>http://www.techlicity.com/blog/simple-way-to-get-cakephp-to-allow-direct-access-to-files-and-directories.html</link>
				<description><![CDATA[ The CakePHP framework as you know rewrites the browser URL to a friendly CakePHP implemented URL. This friendly URL reflects the policies that CakePHP follows which is the Model, View, and Controller (MVC).  ]]></description>
				<pubDate>Sun, 26 Apr 2009 14:54:59 -0400</pubDate>
				<guid isPermaLink="false">http://www.techlicity.com/blog/simple-way-to-get-cakephp-to-allow-direct-access-to-files-and-directories.html</guid>
				<dc:creator>Walid Abdelaty</dc:creator>
				
			</item>
		
			<item>
				<title>The Importance of CSS !important</title>
				<link>http://www.techlicity.com/blog/the-importance-of-css-important.html</link>
				<description><![CDATA[ This article is to bring light to the !important rule within CSS. CSS by default uses the last specified rule to style a document. However with the use of the !important rule, you can quickly override all subsequent modifications to the same property.  ]]></description>
				<pubDate>Sun, 26 Apr 2009 14:22:25 -0400</pubDate>
				<guid isPermaLink="false">http://www.techlicity.com/blog/the-importance-of-css-important.html</guid>
				<dc:creator>Subhas Fagu</dc:creator>
				
			</item>
		
			<item>
				<title>PHP Sessions: Quick Reference</title>
				<link>http://www.techlicity.com/blog/php-sessions-quick-reference.html</link>
				<description><![CDATA[ Simply put a session is a variable that lasts through-out the period of a http session. It is similar to a cookie however once the browser is closed the variable is lost. If you would like variables that that last days and months then a cookie is what you are interested in.  ]]></description>
				<pubDate>Sun, 26 Apr 2009 01:08:04 -0400</pubDate>
				<guid isPermaLink="false">http://www.techlicity.com/blog/php-sessions-quick-reference.html</guid>
				<dc:creator>Subhas Fagu</dc:creator>
				
			</item>
		
			<item>
				<title>Linux Server Authentication against Active Directory</title>
				<link>http://www.techlicity.com/blog/linux-server-authentication-against-windows-server-2003-active-directory.html</link>
				<description><![CDATA[ This article is something I pieced together along time ago with Ubuntu Dapper. It covers from start to finish how to setup a linux server to participate within a Windows Server 2003 Active Directory environment. At the end of the article you would have setup a linux server with SAMBA that will authenticate users against Active Directory.  ]]></description>
				<pubDate>Sun, 26 Apr 2009 00:13:15 -0400</pubDate>
				<guid isPermaLink="false">http://www.techlicity.com/blog/linux-server-authentication-against-windows-server-2003-active-directory.html</guid>
				<dc:creator>Subhas Fagu</dc:creator>
				
			</item>
		
			<item>
				<title>How to change PHP max upload file size</title>
				<link>http://www.techlicity.com/blog/how-to-change-php-max-upload-file-size1.html</link>
				<description><![CDATA[ With all the new web apps popping up, the demand for the exchange of media such as high res photos and music clips are becoming more prominent. To accomplish this, we need to tell our webserver/PHP to allow larger than conventional upload file sizes. Traditionally, the max upload size is around 2mb, anything more will yield an error 500 due to a timeout. There are two ways (that I know of) to change the php upload limit.   ]]></description>
				<pubDate>Sat, 25 Apr 2009 23:56:21 -0400</pubDate>
				<guid isPermaLink="false">http://www.techlicity.com/blog/how-to-change-php-max-upload-file-size1.html</guid>
				<dc:creator>Subhas Fagu</dc:creator>
				
			</item>
		
			<item>
				<title>How to log PHP Errors with .htaccess?</title>
				<link>http://www.techlicity.com/blog/want-to-log-php-errors-with-.htaccess-in-production-and-development-env.html</link>
				<description><![CDATA[ This is another article of the great .htaccess file. In this article you will find two scripts with appropriate comments to help you easily customize your PHP error log file. There is a production edition which silences all errors and then there is a development edition which shows all errors in real time as thy occur in addition to the log file. ]]></description>
				<pubDate>Sat, 25 Apr 2009 22:56:23 -0400</pubDate>
				<guid isPermaLink="false">http://www.techlicity.com/blog/want-to-log-php-errors-with-.htaccess-in-production-and-development-env.html</guid>
				<dc:creator>Subhas Fagu</dc:creator>
				
			</item>
		
			<item>
				<title>Typography layout inspiration</title>
				<link>http://www.techlicity.com/blog/typography-inspiration.html</link>
				<description><![CDATA[ I found this music video to be a great inspiration regarding typography layouts. Great for finding ideas on creating designs for both print or web ]]></description>
				<pubDate>Sat, 25 Apr 2009 11:53:43 -0400</pubDate>
				<guid isPermaLink="false">http://www.techlicity.com/blog/typography-inspiration.html</guid>
				<dc:creator>Subhas Fagu</dc:creator>
				
			</item>
		
			<item>
				<title>C# .NET - Creating a Custom MessageBox Dialog</title>
				<link>http://www.techlicity.com/blog/dotnet-creating-a-custom-messagebox.html</link>
				<description><![CDATA[ MessageBox.Show() is a great way get user confirmation before performing certain tasks in .NET. However what if your requirements are more complex then simply getting a YES or NO response? What if you want to get the user to enter in a password? Or you just want to change the design of the existing MessageBox to go with the design of your application. Creating a custom MessageBox will solve this problem and bring greater functionality to your application. ]]></description>
				<pubDate>Sun, 19 Apr 2009 05:57:00 -0400</pubDate>
				<guid isPermaLink="false">http://www.techlicity.com/blog/dotnet-creating-a-custom-messagebox.html</guid>
				<dc:creator>Utkarsh Patel</dc:creator>
				
			</item>
			</channel>
</rss>
