<?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"
	>

<channel>
	<title>Programmers Community</title>
	<atom:link href="http://pcommunity.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://pcommunity.net</link>
	<description>C#, ASP.NET, PHP, AJAX, MS SQL, MySQL</description>
	<pubDate>Wed, 08 Oct 2008 17:39:01 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>en</language>
			<item>
		<title>I began to use Zend Framework</title>
		<link>http://pcommunity.net/programming/php/i-began-to-use-zend-framework/</link>
		<comments>http://pcommunity.net/programming/php/i-began-to-use-zend-framework/#comments</comments>
		<pubDate>Wed, 08 Oct 2008 17:39:01 +0000</pubDate>
		<dc:creator>DeVoid</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Programming]]></category>

		<category><![CDATA[Zend Framework]]></category>

		<category><![CDATA[ZF]]></category>

		<guid isPermaLink="false">http://pcommunity.net/?p=46</guid>
		<description><![CDATA[At work develop a project with the use of Zend Framework. To it with wramework&#8217;s i did not work, but enough quickly studied basis and beginnings actively to use him.  Today I want talk about feelings and considering which arose up in latter days.
First that it should be noted -  Zend Framework lays on serious [...]]]></description>
		<wfw:commentRss>http://pcommunity.net/programming/php/i-began-to-use-zend-framework/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Enums in C# - use sbyte</title>
		<link>http://pcommunity.net/programming/csharp/enums-in-c-use-sbyte/</link>
		<comments>http://pcommunity.net/programming/csharp/enums-in-c-use-sbyte/#comments</comments>
		<pubDate>Thu, 14 Aug 2008 08:25:33 +0000</pubDate>
		<dc:creator>DeVoid</dc:creator>
		
		<category><![CDATA[C#]]></category>

		<category><![CDATA[Enumeration]]></category>

		<category><![CDATA[Enums]]></category>

		<category><![CDATA[sbyte]]></category>

		<guid isPermaLink="false">http://pcommunity.net/?p=44</guid>
		<description><![CDATA[C# Code Specification:

The following example declares an enum type named Alignment with an underlying type of sbyte.
enum Alignment: sbyte
{
Left = -1,
Center = 0,
Right = 1
}

When you use enumerations in C# - you easy can declare new values as sbyte. Standart type of variable is int, but you can use and sbyte type.
]]></description>
		<wfw:commentRss>http://pcommunity.net/programming/csharp/enums-in-c-use-sbyte/feed/</wfw:commentRss>
		</item>
		<item>
		<title>C# - start only one copy of the program</title>
		<link>http://pcommunity.net/programming/csharp/c-start-only-one-copy-of-the-program/</link>
		<comments>http://pcommunity.net/programming/csharp/c-start-only-one-copy-of-the-program/#comments</comments>
		<pubDate>Sun, 10 Aug 2008 13:09:32 +0000</pubDate>
		<dc:creator>DeVoid</dc:creator>
		
		<category><![CDATA[C#]]></category>

		<category><![CDATA[Mutex]]></category>

		<category><![CDATA[Vista]]></category>

		<guid isPermaLink="false">http://pcommunity.net/?p=41</guid>
		<description><![CDATA[If you need that  the program was started an only to one copy - can take advantage of such simple and useful class:

public class SingleInstance
{
private bool firstInstance = false;
public bool FirstInstance
{
get { return firstInstance; }
}
public SingleInstance()
{
Mutex mutex=null;
try
{
mutex = Mutex.OpenExisting("ProgramName");
}
catch (WaitHandleCannotBeOpenedException e)
{
firstInstance = true;
}
if (mutex == null)
{
mutex = new Mutex(false, "ProgramName");
GC.KeepAlive(mutex);
}
}
}

Now, we need edit Program.cs [...]]]></description>
		<wfw:commentRss>http://pcommunity.net/programming/csharp/c-start-only-one-copy-of-the-program/feed/</wfw:commentRss>
		</item>
		<item>
		<title>PHP - array_map and callback functions</title>
		<link>http://pcommunity.net/programming/php/php-array_map-and-callback-functions/</link>
		<comments>http://pcommunity.net/programming/php/php-array_map-and-callback-functions/#comments</comments>
		<pubDate>Wed, 30 Jul 2008 12:37:23 +0000</pubDate>
		<dc:creator>DeVoid</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[arrays]]></category>

		<category><![CDATA[array_map]]></category>

		<category><![CDATA[callback functions]]></category>

		<guid isPermaLink="false">http://pcommunity.net/?p=38</guid>
		<description><![CDATA[callback functions of arrays are a very powerful instrument, using which, a programmer can obtain flexibility and simplicity of work with arrays. The callback functions of arrays are created for modification of content of arrays a method &#8220;value after a value&#8221;.
We will consider the function of array_map(), which in a general view looks so:

array array_map [...]]]></description>
		<wfw:commentRss>http://pcommunity.net/programming/php/php-array_map-and-callback-functions/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Resize Jpeg image using PHP</title>
		<link>http://pcommunity.net/programming/php/resize-jpeg-image-using-php/</link>
		<comments>http://pcommunity.net/programming/php/resize-jpeg-image-using-php/#comments</comments>
		<pubDate>Tue, 29 Jul 2008 08:47:25 +0000</pubDate>
		<dc:creator>DeVoid</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Images]]></category>

		<category><![CDATA[Jpeg]]></category>

		<guid isPermaLink="false">http://pcommunity.net/?p=36</guid>
		<description><![CDATA[If you created galleries once - you know how important create the small preview images. In PHP we easy can do it. Now we write small function which will change the size of image. If you need show the image preview do it:
&#60;img ALT="preview" SRC="resize.php?url=image.jpg" /&#62;
Here file resize.php:
 &#60;? 
function resize($img_src)
{
header('Content-type: image/jpeg'); list($width, $height) = [...]]]></description>
		<wfw:commentRss>http://pcommunity.net/programming/php/resize-jpeg-image-using-php/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to do redirect by web.config in ASP.NET</title>
		<link>http://pcommunity.net/programming/aspnet/how-to-do-redirekt-by-webconfig-in-aspnet/</link>
		<comments>http://pcommunity.net/programming/aspnet/how-to-do-redirekt-by-webconfig-in-aspnet/#comments</comments>
		<pubDate>Tue, 29 Jul 2008 08:32:41 +0000</pubDate>
		<dc:creator>DeVoid</dc:creator>
		
		<category><![CDATA[ASP.NET]]></category>

		<category><![CDATA[C#]]></category>

		<category><![CDATA[mod_rewrite]]></category>

		<guid isPermaLink="false">http://pcommunity.net/?p=33</guid>
		<description><![CDATA[If you want create the mod_rewrite analogue and use links as mysite/user/DeVoid or send an user on other page - use web.config option urlMappings in ASP.NET:
&#60;configuration&#62;
&#60;system.web&#62;
&#60;urlMappings enabled="true"&#62;
&#60;add
url="~/Article28.aspx"
mappedUrl="~/MyNewBestArtile.aspx"/
&#62;
&#60;urlMappings&#62;
&#60;/system.web&#62;
&#60;/configuration&#62;
Using urlMappings you will be able to do your site on ASP.NET more attractive for an user
]]></description>
		<wfw:commentRss>http://pcommunity.net/programming/aspnet/how-to-do-redirekt-by-webconfig-in-aspnet/feed/</wfw:commentRss>
		</item>
		<item>
		<title>phpDoc in Eclipse - when the comments become more clear</title>
		<link>http://pcommunity.net/programming/php/phpdoc-in-eclipse-when-the-comments-become-more-clear/</link>
		<comments>http://pcommunity.net/programming/php/phpdoc-in-eclipse-when-the-comments-become-more-clear/#comments</comments>
		<pubDate>Sun, 27 Jul 2008 14:51:36 +0000</pubDate>
		<dc:creator>DeVoid</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Comments]]></category>

		<category><![CDATA[Eclipse]]></category>

		<category><![CDATA[phpDoc]]></category>

		<guid isPermaLink="false">http://pcommunity.net/?p=31</guid>
		<description><![CDATA[About importance of commenting of a code was spoken already many times. About importance of commenting of a code was spoken already many times.
If you would want that each class written by you was clear to you and your colleagues - can use the simple standard of record of the comments:

/ **
* Short description - [...]]]></description>
		<wfw:commentRss>http://pcommunity.net/programming/php/phpdoc-in-eclipse-when-the-comments-become-more-clear/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How-to: Comments in ASP.NET</title>
		<link>http://pcommunity.net/programming/how-to-comments-in-aspnet/</link>
		<comments>http://pcommunity.net/programming/how-to-comments-in-aspnet/#comments</comments>
		<pubDate>Wed, 23 Jul 2008 13:44:10 +0000</pubDate>
		<dc:creator>K_Den</dc:creator>
		
		<category><![CDATA[ASP.NET]]></category>

		<category><![CDATA[Programming]]></category>

		<category><![CDATA[Comments]]></category>

		<guid isPermaLink="false">http://pcommunity.net/?p=27</guid>
		<description><![CDATA[When you create pages in ASP.NET - you must understand what you write. Comments help you write clean and clear code. Comments are the very important instrument of programmer. At the correct use of comments - his code is always clear a programmer and he can change him not reflecting.
Distinguish comments on the server-side and [...]]]></description>
		<wfw:commentRss>http://pcommunity.net/programming/how-to-comments-in-aspnet/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How-to: create page &#8220;Site offline&#8221; in ASP.NET</title>
		<link>http://pcommunity.net/programming/aspnet/how-to-create-page-site-offline-in-aspnet/</link>
		<comments>http://pcommunity.net/programming/aspnet/how-to-create-page-site-offline-in-aspnet/#comments</comments>
		<pubDate>Tue, 22 Jul 2008 07:53:43 +0000</pubDate>
		<dc:creator>K_Den</dc:creator>
		
		<category><![CDATA[ASP.NET]]></category>

		<category><![CDATA[Development]]></category>

		<category><![CDATA[Site]]></category>

		<guid isPermaLink="false">http://pcommunity.net/?p=24</guid>
		<description><![CDATA[Today I want to write about the some tricks of ASP.NET, which are very useful.
Sometimes, when you load new files into server or site temporary not work - you must notify users about it. If you use ASP.NET - you can do it easy! Create static html page with message about it and save as [...]]]></description>
		<wfw:commentRss>http://pcommunity.net/programming/aspnet/how-to-create-page-site-offline-in-aspnet/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Welcome to Community!</title>
		<link>http://pcommunity.net/community/hello-world/</link>
		<comments>http://pcommunity.net/community/hello-world/#comments</comments>
		<pubDate>Sat, 19 Jul 2008 14:45:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Community]]></category>

		<category><![CDATA[AJAX]]></category>

		<category><![CDATA[ASP.NET]]></category>

		<category><![CDATA[C#]]></category>

		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://pcommunity.net/?p=1</guid>
		<description><![CDATA[I created this site for programmers, my colleagues, could publish here the ideas, divided experience, to communicate between itself, help novices. Every visitor which will be registered - can write in blog, leave a comment, see the users profiles. I hope you will find here much interesting.
]]></description>
		<wfw:commentRss>http://pcommunity.net/community/hello-world/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
