<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Hadjloo&#039;s Daily Notes</title>
	<atom:link href="http://hajloo.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://hajloo.wordpress.com</link>
	<description>Nasser Hadjloo&#039;s notes on Unicode, Internationalization, .net and Asp.net</description>
	<lastBuildDate>Thu, 05 Jan 2012 07:23:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='hajloo.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Hadjloo&#039;s Daily Notes</title>
		<link>http://hajloo.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://hajloo.wordpress.com/osd.xml" title="Hadjloo&#039;s Daily Notes" />
	<atom:link rel='hub' href='http://hajloo.wordpress.com/?pushpress=hub'/>
		<item>
		<title>How to Use FontTools Module in Python</title>
		<link>http://hajloo.wordpress.com/2011/07/15/how-to-use-fonttools-module-in-python/</link>
		<comments>http://hajloo.wordpress.com/2011/07/15/how-to-use-fonttools-module-in-python/#comments</comments>
		<pubDate>Fri, 15 Jul 2011 08:31:56 +0000</pubDate>
		<dc:creator>Nasser Hadjloo</dc:creator>
				<category><![CDATA[English Posts]]></category>
		<category><![CDATA[Sample Application]]></category>
		<category><![CDATA[Command Prompt]]></category>
		<category><![CDATA[Font]]></category>
		<category><![CDATA[Languages]]></category>
		<category><![CDATA[Microsoft Windows]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Unicode]]></category>
		<category><![CDATA[یونی‌کد]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[برنامه نویسی]]></category>

		<guid isPermaLink="false">http://hajloo.wordpress.com/?p=1448</guid>
		<description><![CDATA[Python comes with the great modules which you can use them to improve your application functionalities. Recently I felt in love with Python and trying to implement some of my daily usages with it. I was always interested in Unicode and Fonts so that I had a glance at Python abilities in these fields and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hajloo.wordpress.com&amp;blog=3950677&amp;post=1448&amp;subd=hajloo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div style="text-align:left;direction:ltr;" dir="ltr">
<div id="attachment_1442" class="wp-caption alignleft" style="width: 221px"><a href="http://hajloo.files.wordpress.com/2011/07/python-logo.gif"><img class="size-full wp-image-1442" title="python-logo" src="http://hajloo.files.wordpress.com/2011/07/python-logo.gif?w=630" alt="Python"   /></a><p class="wp-caption-text">Python</p></div>
<p><strong><a href="http://www.python.org/">Python</a></strong> comes with the great modules which you can use them to improve your application functionalities. Recently I felt in love with <a href="http://www.python.org/">Python</a> and trying to implement some of my daily usages with it. I was always interested in <strong><a class="zem_slink" title="Unicode" href="http://en.wikipedia.org/wiki/Unicode" rel="wikipedia">Unicode</a></strong> and <strong>Fonts</strong> so that I had a glance at <a href="http://www.python.org/">Python</a> abilities in these fields and I have to say that Python has a lot to say when it comes to these areas. It is really fantastic and powerful and you have access to whatever you want just a a peace of a cake. In this Article I show you how to use python abilities to save a font as an XML document. It may be wierd for you but sometimes it is necessary to check font tables and the rest of its information.</p>
<p>To start working with <a class="zem_slink" title="Font" href="http://en.wikipedia.org/wiki/Font" rel="wikipedia">fonts</a> it’s worth to add <strong><a href="http://pypi.python.org/pypi/FontTools-TTX/2.0b1">FontTools library</a></strong> to Python; it will extend your abilities to work with fonts. You can download it from <strong><a href="http://sourceforge.net/projects/fonttools/files/2.3/fonttools-2.3.tar.gz/download">here</a></strong>.</p>
<p><strong>Each Python module has its own way for installation</strong>. Some of them only needs a <strong>simple copy</strong> to the appropriate folders and some of them should be <strong>install</strong>ed. FontTools uses the second approach so that you have to follow the following instruction to install it in your Python.</p>
<ul>
<li>Open Windows <a class="zem_slink" title="Command Prompt" href="http://en.wikipedia.org/wiki/Command_Prompt" rel="wikipedia">Command Prompt</a></li>
<li>Go to the folder you download FontTools</li>
<li>Write <strong>Setup.py build</strong> and press enter</li>
<li>Write <strong>Setup.py</strong>install and press enter</li>
</ul>
<div id="attachment_1453" class="wp-caption aligncenter" style="width: 640px"><a href="http://hajloo.files.wordpress.com/2011/07/installing_fonttools_cmd_python.png"><img class="size-full wp-image-1453" title="Installing_FontTools_CMD_Python" src="http://hajloo.files.wordpress.com/2011/07/installing_fonttools_cmd_python.png?w=630&#038;h=318" alt="Installing FontTools with Command Prompt in Python" width="630" height="318" /></a><p class="wp-caption-text">Installing FontTools with Command Prompt in Python</p></div>
<div style="background-color:#FFFFCC;border:solid 3px px black;margin:20px;padding:20px;"><strong><span style="color:red;">Important Note</span></strong>: <strong>I first Installed My FontTools and Then take the above photo from my comand prompt</strong> so that the command reply may be different for the first time and the second. You just use the mentioned commands instead of considering provided replies by Python</div>
<p>Some lines will appear in your command prompt and then <strong>installation will complete within a minute</strong>. Now, to use this module in your application you have to load ( or  import or use ) this module in your application, so write the following command <strong>in your Python application just like other commands</strong></p>
<p><pre class="brush: python;">
from fontTools.ttLib import ttfont
</pre></p>
<p>Note that <strong>commands are <a class="zem_slink" title="Case sensitivity" href="http://en.wikipedia.org/wiki/Case_sensitivity" rel="wikipedia">case sensitive</a></strong> so write it in the exact mentioned way.</p>
<p>Till now you are able to use <a href="http://sourceforge.net/projects/fonttools/">FontTools</a> abilities in your application so that to test it we <strong>create a font object</strong> and then get a simple export from it.</p>
<p>To create a font object in Python write the below command in your application; just note that you<strong> have to use for slash instead (/) of back slash (\) for addressing</strong></p>
<p><pre class="brush: python;">
font = TTFont(&quot;d:/fontname.ttf&quot;)
</pre></p>
<p>Till now you created a new object of your font in the object named font. It’s time to use it in our application so that I save the font as an <a class="zem_slink" title="XML" href="http://en.wikipedia.org/wiki/XML" rel="wikipedia">XML document</a> just like</p>
<p><pre class="brush: python;">
font.saveXML(&quot;d:/YourDesireName.xml&quot;)
</pre></p>
<div id="attachment_1449" class="wp-caption aligncenter" style="width: 640px"><a href="http://hajloo.files.wordpress.com/2011/07/python_fonttools_sample.png"><img class="size-full wp-image-1449" title="Python_FontTools_Sample" src="http://hajloo.files.wordpress.com/2011/07/python_fonttools_sample.png?w=630&#038;h=632" alt="Save a Font As XML with Python FontTools Module" width="630" height="632" /></a><p class="wp-caption-text">Save a Font As XML with Python FontTools Module</p></div>
<p>You can find the rest of the FontTools commands in the documentation. Share your experiences with me if you know another good library to work with fonts.</p>
<h6 class="zemanta-related-title" style="font-size:1em;">Related articles</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://hajloo.wordpress.com/2011/07/10/how-to-start-programming-with-python/">How to Start Programming with Python</a> (hajloo.wordpress.com)</li>
</ul>
</div>
<br />Filed under: <a href='http://hajloo.wordpress.com/category/english-posts/'>English Posts</a>, <a href='http://hajloo.wordpress.com/category/sample-application/'>Sample Application</a> Tagged: <a href='http://hajloo.wordpress.com/tag/command-prompt/'>Command Prompt</a>, <a href='http://hajloo.wordpress.com/tag/font/'>Font</a>, <a href='http://hajloo.wordpress.com/tag/languages/'>Languages</a>, <a href='http://hajloo.wordpress.com/tag/microsoft-windows/'>Microsoft Windows</a>, <a href='http://hajloo.wordpress.com/tag/programming/'>Programming</a>, <a href='http://hajloo.wordpress.com/tag/python/'>Python</a>, <a href='http://hajloo.wordpress.com/tag/unicode/'>Unicode</a>, <a href='http://hajloo.wordpress.com/tag/%db%8c%d9%88%d9%86%db%8c%e2%80%8c%da%a9%d8%af/'>یونی‌کد</a>, <a href='http://hajloo.wordpress.com/tag/xml/'>XML</a>, <a href='http://hajloo.wordpress.com/tag/%d8%a8%d8%b1%d9%86%d8%a7%d9%85%d9%87-%d9%86%d9%88%db%8c%d8%b3%db%8c/'>برنامه نویسی</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hajloo.wordpress.com/1448/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hajloo.wordpress.com/1448/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hajloo.wordpress.com/1448/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hajloo.wordpress.com/1448/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/hajloo.wordpress.com/1448/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/hajloo.wordpress.com/1448/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/hajloo.wordpress.com/1448/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/hajloo.wordpress.com/1448/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hajloo.wordpress.com/1448/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hajloo.wordpress.com/1448/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hajloo.wordpress.com/1448/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hajloo.wordpress.com/1448/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hajloo.wordpress.com/1448/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hajloo.wordpress.com/1448/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hajloo.wordpress.com&amp;blog=3950677&amp;post=1448&amp;subd=hajloo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://hajloo.wordpress.com/2011/07/15/how-to-use-fonttools-module-in-python/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5695e025dbefc34357daeedfc18c140?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">ناصر حاجلو :-: Nasser Hadjloo</media:title>
		</media:content>

		<media:content url="http://hajloo.files.wordpress.com/2011/07/python-logo.gif" medium="image">
			<media:title type="html">python-logo</media:title>
		</media:content>

		<media:content url="http://hajloo.files.wordpress.com/2011/07/installing_fonttools_cmd_python.png" medium="image">
			<media:title type="html">Installing_FontTools_CMD_Python</media:title>
		</media:content>

		<media:content url="http://hajloo.files.wordpress.com/2011/07/python_fonttools_sample.png" medium="image">
			<media:title type="html">Python_FontTools_Sample</media:title>
		</media:content>
	</item>
		<item>
		<title>How to Start Programming with Python</title>
		<link>http://hajloo.wordpress.com/2011/07/10/how-to-start-programming-with-python/</link>
		<comments>http://hajloo.wordpress.com/2011/07/10/how-to-start-programming-with-python/#comments</comments>
		<pubDate>Sun, 10 Jul 2011 06:52:35 +0000</pubDate>
		<dc:creator>Nasser Hadjloo</dc:creator>
				<category><![CDATA[English Posts]]></category>
		<category><![CDATA[Introducing Tools]]></category>
		<category><![CDATA[Articles and Reviews]]></category>
		<category><![CDATA[Debugger]]></category>
		<category><![CDATA[Development Tools]]></category>
		<category><![CDATA[FAQs Help and Tutorials]]></category>
		<category><![CDATA[Languages]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Rapid Application Development]]></category>

		<guid isPermaLink="false">http://hajloo.wordpress.com/?p=1441</guid>
		<description><![CDATA[What is Python? In the official Python website they say that Python is an interpreted, object-oriented, high-level programming language with dynamic semantics. Its high-level built in data structures, combined with dynamic typing and dynamic binding, make it very attractive for Rapid Application Development, as well as for use as a scripting or glue language to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hajloo.wordpress.com&amp;blog=3950677&amp;post=1441&amp;subd=hajloo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div style="direction:ltr;" dir="ltr">
<div id="attachment_1442" class="wp-caption alignleft" style="width: 221px"><a href="http://hajloo.files.wordpress.com/2011/07/python-logo.gif"><img class="size-full wp-image-1442" title="python-logo" src="http://hajloo.files.wordpress.com/2011/07/python-logo.gif?w=630" alt="Python"   /></a><p class="wp-caption-text">Python</p></div>
<p><strong>What is <a href="http://www.python.org/">Python</a></strong>?</p>
<p>In the <a href="http://www.python.org/doc/essays/blurb.html">official Python website they say that</a></p>
<p><strong>Python</strong> is an <strong>interpreted</strong>, <strong>object-oriented</strong>,<strong> high-level</strong> programming language with <strong><a class="zem_slink" title="Programming language" href="http://en.wikipedia.org/wiki/Programming_language" rel="wikipedia">dynamic semantics</a></strong>. Its high-level built in data structures, combined with dynamic typing and dynamic binding, make it very attractive for<strong> <a class="zem_slink" title="Rapid application development" href="http://en.wikipedia.org/wiki/Rapid_application_development" rel="wikipedia">Rapid Application Development</a></strong>, as well as for use as a <strong>scripting</strong> or <strong>glue language</strong> to connect existing components together.<strong> Python&#8217;s simple, easy to learn syntax emphasizes readability and therefore reduces the cost of program maintenance</strong>. Python supports modules and packages, which encourages program modularity and code reuse. The Python interpreter and the extensive standard library are available in source or binary form without charge for all major platforms, and can be freely distributed.</p>
<p>Often, programmers fall in love with Python because of the increased productivity it provides. Since <strong>there is no compilation step</strong>, the edit-test-debug cycle is incredibly fast.<strong> Debugging Python programs is easy</strong>: a bug or bad input will never cause a segmentation fault. Instead, when the interpreter discovers an error, it raises an <strong>exception</strong>. When the program doesn&#8217;t catch the exception, <strong>the interpreter prints a stack trace</strong>. A <a class="zem_slink" title="Debugger" href="http://en.wikipedia.org/wiki/Debugger" rel="wikipedia">source level debugger</a> allows inspection of local and global variables, evaluation of arbitrary expressions, setting breakpoints, stepping through the code a line at a time, and so on.<strong> The debugger is written in Python itself</strong>, testifying to Python&#8217;s introspective power. On the other hand, often the quickest way to debug a program is to add a few print statements to the source: <strong>the fast edit-test-debug cycle makes this simple approach very effective</strong>.</p>
<p><strong>How to install Python?</strong></p>
<p>Installing Python is as easy as drinking a coffee. Follow these instructions to install Python</p>
<ol>
<li>At first provide a coffee for yourself</li>
<li>Download the <a href="http://wiki.python.org/moin/Python2orPython3">version you like </a> from the official website (<a href="http://wiki.python.org/moin/Python2orPython3">Python 2 or 3</a>)</li>
<li><strong>Run  the setup</strong></li>
<li><strong>Install it the root drive</strong> ( for instance C:\Python )</li>
<li>Start drinking your coffee while it is installing on your computer</li>
<li>Setup will finish before your coffee finishes</li>
</ol>
<p>That’s all about Python installation but I myself rather to use it in command line wherever in windos so that I have to add its path to windows variables. To do this open the <strong>Advanced System Settings</strong> (former System Properties) and <strong>add Python path to it</strong> like the following picture</p>
<div id="attachment_1443" class="wp-caption aligncenter" style="width: 640px"><a href="http://hajloo.files.wordpress.com/2011/07/python_path.png"><img class="size-full wp-image-1443" title="Python_Path" src="http://hajloo.files.wordpress.com/2011/07/python_path.png?w=630&#038;h=363" alt="Add Python Path to windows Environment Variables" width="630" height="363" /></a><p class="wp-caption-text">Add Python Path to windows Environment Variables</p></div>
<p><strong>How to Write <a class="zem_slink" title="Hello world program" href="http://en.wikipedia.org/wiki/Hello_world_program" rel="wikipedia">Hello World</a> Application in Python</strong></p>
<p><a class="zem_slink" title="Python syntax and semantics" href="http://en.wikipedia.org/wiki/Python_syntax_and_semantics" rel="wikipedia">Python syntax</a> is ridiculously easy to learn. To write your first application in Python you have <strong>two options.</strong></p>
<p>          First : <strong>use <a class="zem_slink" title="Command Prompt" href="http://en.wikipedia.org/wiki/Command_Prompt" rel="wikipedia">Windows Command Line</a></strong></p>
<p>          Second : <strong>Use Python Editor (<a href="http://www.annedawson.net/Python_Editor_IDLE.htm">IDLE</a>)</strong></p>
<p>To code within the windows command prompt First Open Command Prompt</p>
<p>Write <strong>python</strong> and press enter</p>
<p>Python command line will appear and you can start coding. To write first command write<br />
<strong>print (“Hello World”)</strong> // write print in lower case</p>
<p>and press enter then you will see the result in the next line</p>
<div id="attachment_1444" class="wp-caption aligncenter" style="width: 640px"><a href="http://hajloo.files.wordpress.com/2011/07/python_helloworld_cmd.png"><img class="size-full wp-image-1444" title="Python_HelloWorld_CMD" src="http://hajloo.files.wordpress.com/2011/07/python_helloworld_cmd.png?w=630&#038;h=318" alt="Python Hello World with Windows Command Prompt" width="630" height="318" /></a><p class="wp-caption-text">Python Hello World with Windows Command Prompt</p></div>
<p>To write your application in IDLE you have to open the editor from <strong>Start Menu&gt;Python x.x&gt;IDLE</strong><br />
Then again write<strong> print (“hello world”)</strong> and press enter</p>
<div id="attachment_1445" class="wp-caption aligncenter" style="width: 640px"><a href="http://hajloo.files.wordpress.com/2011/07/python_helloworld_idle.png"><img class="size-full wp-image-1445" title="Python_HelloWorld_IDLE" src="http://hajloo.files.wordpress.com/2011/07/python_helloworld_idle.png?w=630&#038;h=440" alt="Python Hello World Using Python IDLE Editor" width="630" height="440" /></a><p class="wp-caption-text">Python Hello World Using Python IDLE Editor</p></div>
<p>As you can see coding in Python is a peace of cake and I strongly recommend you to start programming in Python for your daily usages if you have such a need. It helped me a lot and I learned a lot from its concept in a short time. It worth to try it even once. You can share your experiences with Python or Ruby or other similar tools here.</p>
<h6 class="zemanta-related-title" style="font-size:1em;">Related articles</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://lucumr.pocoo.org/2011/7/9/python-and-pola/">Python and the Principle of Least Astonishment</a> (lucumr.pocoo.org)</li>
<li class="zemanta-article-ul-li"><a href="http://www.blogher.com/lessons-learned-programming-workshop">Lessons Learned at a Programming Workshop</a> (blogher.com)</li>
</ul>
</div>
<br />Filed under: <a href='http://hajloo.wordpress.com/category/english-posts/'>English Posts</a>, <a href='http://hajloo.wordpress.com/category/introducing-tools/'>Introducing Tools</a> Tagged: <a href='http://hajloo.wordpress.com/tag/articles-and-reviews/'>Articles and Reviews</a>, <a href='http://hajloo.wordpress.com/tag/debugger/'>Debugger</a>, <a href='http://hajloo.wordpress.com/tag/development-tools/'>Development Tools</a>, <a href='http://hajloo.wordpress.com/tag/faqs-help-and-tutorials/'>FAQs Help and Tutorials</a>, <a href='http://hajloo.wordpress.com/tag/languages/'>Languages</a>, <a href='http://hajloo.wordpress.com/tag/programming/'>Programming</a>, <a href='http://hajloo.wordpress.com/tag/python/'>Python</a>, <a href='http://hajloo.wordpress.com/tag/rapid-application-development/'>Rapid Application Development</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hajloo.wordpress.com/1441/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hajloo.wordpress.com/1441/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hajloo.wordpress.com/1441/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hajloo.wordpress.com/1441/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/hajloo.wordpress.com/1441/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/hajloo.wordpress.com/1441/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/hajloo.wordpress.com/1441/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/hajloo.wordpress.com/1441/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hajloo.wordpress.com/1441/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hajloo.wordpress.com/1441/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hajloo.wordpress.com/1441/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hajloo.wordpress.com/1441/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hajloo.wordpress.com/1441/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hajloo.wordpress.com/1441/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hajloo.wordpress.com&amp;blog=3950677&amp;post=1441&amp;subd=hajloo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://hajloo.wordpress.com/2011/07/10/how-to-start-programming-with-python/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5695e025dbefc34357daeedfc18c140?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">ناصر حاجلو :-: Nasser Hadjloo</media:title>
		</media:content>

		<media:content url="http://hajloo.files.wordpress.com/2011/07/python-logo.gif" medium="image">
			<media:title type="html">python-logo</media:title>
		</media:content>

		<media:content url="http://hajloo.files.wordpress.com/2011/07/python_path.png" medium="image">
			<media:title type="html">Python_Path</media:title>
		</media:content>

		<media:content url="http://hajloo.files.wordpress.com/2011/07/python_helloworld_cmd.png" medium="image">
			<media:title type="html">Python_HelloWorld_CMD</media:title>
		</media:content>

		<media:content url="http://hajloo.files.wordpress.com/2011/07/python_helloworld_idle.png" medium="image">
			<media:title type="html">Python_HelloWorld_IDLE</media:title>
		</media:content>
	</item>
		<item>
		<title>Web Developer Recruitment in Faraconesh Corporation</title>
		<link>http://hajloo.wordpress.com/2011/06/11/web-developer-recruitment-in-faraconesh-corporation/</link>
		<comments>http://hajloo.wordpress.com/2011/06/11/web-developer-recruitment-in-faraconesh-corporation/#comments</comments>
		<pubDate>Sat, 11 Jun 2011 08:49:37 +0000</pubDate>
		<dc:creator>Nasser Hadjloo</dc:creator>
				<category><![CDATA[Daily Notes]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[UnRelated Articles]]></category>
		<category><![CDATA[.net Framework]]></category>
		<category><![CDATA[Asp .net]]></category>
		<category><![CDATA[Asp .net Ajax]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Iran]]></category>
		<category><![CDATA[Issue Tracker]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Microsoft SQL Server]]></category>
		<category><![CDATA[Reporting Services]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Server 2008]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[فراکنش]]></category>
		<category><![CDATA[Visual Studio 2010]]></category>
		<category><![CDATA[برنامه نویسی]]></category>
		<category><![CDATA[تغییر مکان شرکت]]></category>

		<guid isPermaLink="false">http://hajloo.wordpress.com/?p=1434</guid>
		<description><![CDATA[I hardly ever use my blog to publish unrelated subjects to programming. This is one of them. Our company Faraconesh Corporation is bound to hire new talented and professional .NET developers. If you like working with me in person in a small-growing company which offer good salary, insurance, flexitime working beside experts which are pioneers [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hajloo.wordpress.com&amp;blog=3950677&amp;post=1434&amp;subd=hajloo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div style="direction:ltr;text-align:left;" dir="ltr">
<div id="attachment_115" class="wp-caption alignleft" style="width: 160px"><a href="http://hajloo.files.wordpress.com/2008/11/faraconesh_logo.gif"><img class="size-thumbnail wp-image-115" title="faraconesh_logo" src="http://hajloo.files.wordpress.com/2008/11/faraconesh_logo.gif?w=150&#038;h=150" alt="" width="150" height="150" /></a><p class="wp-caption-text">Faraconesh Logo</p></div>
<p>I hardly ever use my blog to publish unrelated subjects to programming. This is one of them.</p>
<p>Our company <a href="http://www.faraconesh.com/">Faraconesh Corporation</a> is bound to hire new talented and professional <a class="zem_slink" title=".NET Framework" href="http://msdn.microsoft.com/netframework" rel="homepage">.NET</a> developers. If you like working with me in person in a small-growing company which offer good salary, insurance, flexitime working beside experts which are pioneers in Iran in their skills and you meet the following needs</p>
<p>At least 3 years of relevant experiences.</p>
<p>Deep knowledge of .NET, <a class="zem_slink" title="C Sharp (programming language)" href="http://msdn2.microsoft.com/en-us/vcsharp/aa336809.aspx" rel="homepage">C#</a>, <a class="zem_slink" title="Microsoft SQL Server" href="http://www.microsoft.com/sqlserver" rel="homepage">SQL Server</a> and NHibernate</p>
<p>Also ability to work in team and using issue trackers, source controls and the rest of teamwork tools</p>
<p>Ability to work with <a class="zem_slink" title="Windows Presentation Foundation" href="http://en.wikipedia.org/wiki/Windows_Presentation_Foundation" rel="wikipedia">WPF</a>, <a class="zem_slink" title="Windows Communication Foundation" href="http://en.wikipedia.org/wiki/Windows_Communication_Foundation" rel="wikipedia">WCF</a>, WF and REST count as advantages</p>
<p>You can send your resume to <a href="mailto:jobs@faraconesh.com">jobs@faraconesh.com</a> or to me at <a href="mailto:n.hajloo@gmail.com">n.hajloo@gmail.com</a>.</p>
<p><a href="http://www.faraconesh.com/">Faraconesh Corporation</a> appreciates in advance your kind request to join and will arrange a meeting with you in next few days.</p>
<p>This is the Persian text for this advertisement.</p>
</div>
<div id="attachment_530" class="wp-caption aligncenter" style="width: 555px"><a href="http://hajloo.files.wordpress.com/2009/01/faraconeshaddress.png"><img class="size-full wp-image-530" title="faraconeshaddress" src="http://hajloo.files.wordpress.com/2009/01/faraconeshaddress.png?w=630" alt=""   /></a><p class="wp-caption-text">کروکی آدرس شرکت فراکنش در نقشه تهران کتاب اول</p></div>
<div style="direction:rtl;text-align:rtl;" dir="rtl">من به ندرت در این وبلاگ مطالب غیرمرتبط با برنامه نویسی می‌نویسم. این مطلب یکی از آنهاست.شرکت ما، <a href="http://www.faraconesh.com/">فراکنش</a> قصد استخدام چند برنامه‌نویس بااستعداد و حرفه‌ای دات نت را دارد. اگر شما دوست دارید که با من از نزدیک در یک شرکت کوچک رو به رشد که حقوق کافی، بیمه، زمان کار آزاد و کار شانه به شانه با متخصصینی که در زمینه کاری خودشان از پیشروان هستند همکاری کنید و نیز درصورتی که شرایط زیر را دارید</p>
<p>حداقل سه سال سابقه کار مرتبط</p>
<p>درک و تسلط کافی و عمیق از ‫.NET, C#, SQL Server و  NHibernate</p>
<p>همچنین توانایی کار گروهی و استفاده از ابزارهای کار تیمی مانند ایشوترکر ها و سورس کنترها</p>
<p>توانایی کار با WPF, WCF, WF و REST مزیت به شمار می‌آید</p>
<p>را دارید</p>
<p>می‌توانید رزومه کاری خودتان را به آدرس <a href="mailto:jobs@faraconesh.com">jobs@faraconesh.com</a> و یا برای من به آدرس <a href="mailto:n.hajloo@gmail.com">n.hajloo@gmail.com</a> ارسال نمایید.</p>
<p><a href="http://www.faraconesh.com/">شرکت فراکنش</a> از درخواست همکاری محبت آمیز شما از قبل قدردانی کرده و در چند روز آینده یک قرار ملاقات با شما تنظیم خواهد کرد</p>
</div>
<br />Filed under: <a href='http://hajloo.wordpress.com/category/daily-notes/'>Daily Notes</a>, <a href='http://hajloo.wordpress.com/category/news/'>News</a>, <a href='http://hajloo.wordpress.com/category/unrelated-articles/'>UnRelated Articles</a> Tagged: <a href='http://hajloo.wordpress.com/tag/net-framework/'>.net Framework</a>, <a href='http://hajloo.wordpress.com/tag/asp-net/'>Asp .net</a>, <a href='http://hajloo.wordpress.com/tag/asp-net-ajax/'>Asp .net Ajax</a>, <a href='http://hajloo.wordpress.com/tag/c/'>C#</a>, <a href='http://hajloo.wordpress.com/tag/database/'>Database</a>, <a href='http://hajloo.wordpress.com/tag/iran/'>Iran</a>, <a href='http://hajloo.wordpress.com/tag/issue-tracker/'>Issue Tracker</a>, <a href='http://hajloo.wordpress.com/tag/microsoft/'>Microsoft</a>, <a href='http://hajloo.wordpress.com/tag/microsoft-sql-server/'>Microsoft SQL Server</a>, <a href='http://hajloo.wordpress.com/tag/reporting-services/'>Reporting Services</a>, <a href='http://hajloo.wordpress.com/tag/sql/'>SQL</a>, <a href='http://hajloo.wordpress.com/tag/sql-server/'>SQL Server</a>, <a href='http://hajloo.wordpress.com/tag/sql-server-2008/'>SQL Server 2008</a>, <a href='http://hajloo.wordpress.com/tag/tools/'>Tools</a>, <a href='http://hajloo.wordpress.com/tag/%d9%81%d8%b1%d8%a7%da%a9%d9%86%d8%b4/'>فراکنش</a>, <a href='http://hajloo.wordpress.com/tag/visual-studio-2010/'>Visual Studio 2010</a>, <a href='http://hajloo.wordpress.com/tag/%d8%a8%d8%b1%d9%86%d8%a7%d9%85%d9%87-%d9%86%d9%88%db%8c%d8%b3%db%8c/'>برنامه نویسی</a>, <a href='http://hajloo.wordpress.com/tag/%d8%aa%d8%ba%db%8c%db%8c%d8%b1-%d9%85%da%a9%d8%a7%d9%86-%d8%b4%d8%b1%da%a9%d8%aa/'>تغییر مکان شرکت</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hajloo.wordpress.com/1434/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hajloo.wordpress.com/1434/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hajloo.wordpress.com/1434/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hajloo.wordpress.com/1434/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/hajloo.wordpress.com/1434/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/hajloo.wordpress.com/1434/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/hajloo.wordpress.com/1434/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/hajloo.wordpress.com/1434/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hajloo.wordpress.com/1434/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hajloo.wordpress.com/1434/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hajloo.wordpress.com/1434/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hajloo.wordpress.com/1434/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hajloo.wordpress.com/1434/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hajloo.wordpress.com/1434/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hajloo.wordpress.com&amp;blog=3950677&amp;post=1434&amp;subd=hajloo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://hajloo.wordpress.com/2011/06/11/web-developer-recruitment-in-faraconesh-corporation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5695e025dbefc34357daeedfc18c140?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">ناصر حاجلو :-: Nasser Hadjloo</media:title>
		</media:content>

		<media:content url="http://hajloo.files.wordpress.com/2008/11/faraconesh_logo.gif?w=150" medium="image">
			<media:title type="html">faraconesh_logo</media:title>
		</media:content>

		<media:content url="http://hajloo.files.wordpress.com/2009/01/faraconeshaddress.png" medium="image">
			<media:title type="html">faraconeshaddress</media:title>
		</media:content>
	</item>
		<item>
		<title>A Letter to Atlassian Team</title>
		<link>http://hajloo.wordpress.com/2011/05/30/a-letter-to-atlassian-team/</link>
		<comments>http://hajloo.wordpress.com/2011/05/30/a-letter-to-atlassian-team/#comments</comments>
		<pubDate>Mon, 30 May 2011 04:32:35 +0000</pubDate>
		<dc:creator>Nasser Hadjloo</dc:creator>
				<category><![CDATA[English Posts]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[Issue Tracker]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Jira]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[مدیر پروژه]]></category>
		<category><![CDATA[چرخه تولید نرم افزار]]></category>
		<category><![CDATA[کار تیمی]]></category>
		<category><![CDATA[برنامه نویسی]]></category>
		<category><![CDATA[تولید نرم افزار]]></category>

		<guid isPermaLink="false">http://hajloo.wordpress.com/?p=1429</guid>
		<description><![CDATA[Recently I’m upgrading JIRA from 3.x to 4.x version for my company. During this upgrade procedure, I learnt a lot from Atlassian. When I was using Jira 3.x, I just using Jira as a simple (but) powerful issue tracking system. I was always content with it. I never felt that I have to upgrade to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hajloo.wordpress.com&amp;blog=3950677&amp;post=1429&amp;subd=hajloo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div dir="ltr" style="direction:ltr;text-align:left;">
<div id="attachment_677" class="wp-caption alignleft" style="width: 156px"><a href="http://hajloo.files.wordpress.com/2009/04/jira_logo.gif"><img class="size-full wp-image-677" title="Atlassian" src="http://hajloo.files.wordpress.com/2009/04/jira_logo.gif?w=630" alt=""   /></a><p class="wp-caption-text">Atlassian JIRA</p></div></p>
<p>Recently I’m upgrading <strong><a href="http://www.atlassian.com/software/jira/">JIRA</a></strong> from 3.x to 4.x version for my company. During this upgrade procedure, I learnt a lot from <a href="http://www.atlassian.com/">Atlassian</a>. When I was using <strong><a href="http://www.atlassian.com/software/jira/">Jira</a></strong> 3.x, I just using <a href="http://www.atlassian.com/software/jira/">Jira</a> as a simple (but) powerful issue tracking system. I was always content with it. I never felt that I have to upgrade to a newer version. It was good enough to ignore ordering a newer version. I used (a <strong>cracked version</strong> of) <strong><a href="http://www.atlassian.com/software/jira/">Jira</a></strong> about 3 to 4 years; because my company wasn’t able to afford it.</p>
<p><a href="http://www.atlassian.com/software/jira/">Jira</a> used a simple UI in 3.x version, honestly I should say that I never impressed by it. By the way, I changed my career and in the new company they are using a <strong>licensed <a href="http://www.atlassian.com/software/jira/">Jira</a> 4.x version</strong>. After two weeks of using new Jira, I wondered that, <strong><a href="http://www.atlassian.com/software/jira/full-features.jsp">how much changes happened on Jira</a></strong>. I couln&#8217;t believe that they redesigned UI completely, in a way that amazed me. Almost everything relocated and new menu works great. New Plug-ins, especially <strong><a href="http://www.atlassian.com/software/greenhopper/">Green Hopper</a></strong>, forced me to confess that all in all,<strong> Jira is the best web application I’ve ever used</strong>.</p>
<div id="attachment_1431" class="wp-caption aligncenter" style="width: 640px"><a href="http://hajloo.files.wordpress.com/2011/05/project-browser.png"><img class="size-full wp-image-1431" title="project-browser" src="http://hajloo.files.wordpress.com/2011/05/project-browser.png?w=630&#038;h=504" alt="Jira Project Browser" width="630" height="504" /></a><p class="wp-caption-text">Jira Project Browser</p></div>
<p>One of the things that is really special to me, is that new version has a really affordable price. <strong><a href="http://www.atlassian.com/software/jira/pricing.jsp">10$ for 10 users</a></strong>! Most of the small companies don’t have more than 10 active users (developers) so that they can easily afford it. I have to mention that Atlassian give all of these (<a href="http://www.atlassian.com/starter/">10$</a>) prices to <a href="http://www.roomtoread.org/"><strong>RoomToRead</strong> charity organization</a> and they are going to <strong><a href="http://www.atlassian.com/starter/">raise it to 1,000,000$</a></strong>.</p>
<p>Here <strong>I want to appreciate <a href="http://www.atlassian.com/">Atlassian</a> team</strong> because of their good software and their effort for education. I also <strong>obliged to ask for an excuse from <a href="http://www.atlassian.com/">Atlassian</a></strong>, because of my unfair usages at past. <strong>I write this to say that this is the first time that I really have a shame of using a cracked version of a software</strong>. I wish they forgive me for this.
</div>
<br />Filed under: <a href='http://hajloo.wordpress.com/category/english-posts/'>English Posts</a>, <a href='http://hajloo.wordpress.com/category/review/'>Review</a> Tagged: <a href='http://hajloo.wordpress.com/tag/issue-tracker/'>Issue Tracker</a>, <a href='http://hajloo.wordpress.com/tag/java/'>Java</a>, <a href='http://hajloo.wordpress.com/tag/jira/'>Jira</a>, <a href='http://hajloo.wordpress.com/tag/programming/'>Programming</a>, <a href='http://hajloo.wordpress.com/tag/%d9%85%d8%af%db%8c%d8%b1-%d9%be%d8%b1%d9%88%da%98%d9%87/'>مدیر پروژه</a>, <a href='http://hajloo.wordpress.com/tag/%da%86%d8%b1%d8%ae%d9%87-%d8%aa%d9%88%d9%84%db%8c%d8%af-%d9%86%d8%b1%d9%85-%d8%a7%d9%81%d8%b2%d8%a7%d8%b1/'>چرخه تولید نرم افزار</a>, <a href='http://hajloo.wordpress.com/tag/%da%a9%d8%a7%d8%b1-%d8%aa%db%8c%d9%85%db%8c/'>کار تیمی</a>, <a href='http://hajloo.wordpress.com/tag/%d8%a8%d8%b1%d9%86%d8%a7%d9%85%d9%87-%d9%86%d9%88%db%8c%d8%b3%db%8c/'>برنامه نویسی</a>, <a href='http://hajloo.wordpress.com/tag/%d8%aa%d9%88%d9%84%db%8c%d8%af-%d9%86%d8%b1%d9%85-%d8%a7%d9%81%d8%b2%d8%a7%d8%b1/'>تولید نرم افزار</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hajloo.wordpress.com/1429/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hajloo.wordpress.com/1429/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hajloo.wordpress.com/1429/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hajloo.wordpress.com/1429/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/hajloo.wordpress.com/1429/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/hajloo.wordpress.com/1429/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/hajloo.wordpress.com/1429/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/hajloo.wordpress.com/1429/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hajloo.wordpress.com/1429/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hajloo.wordpress.com/1429/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hajloo.wordpress.com/1429/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hajloo.wordpress.com/1429/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hajloo.wordpress.com/1429/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hajloo.wordpress.com/1429/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hajloo.wordpress.com&amp;blog=3950677&amp;post=1429&amp;subd=hajloo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://hajloo.wordpress.com/2011/05/30/a-letter-to-atlassian-team/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5695e025dbefc34357daeedfc18c140?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">ناصر حاجلو :-: Nasser Hadjloo</media:title>
		</media:content>

		<media:content url="http://hajloo.files.wordpress.com/2009/04/jira_logo.gif" medium="image">
			<media:title type="html">Atlassian</media:title>
		</media:content>

		<media:content url="http://hajloo.files.wordpress.com/2011/05/project-browser.png" medium="image">
			<media:title type="html">project-browser</media:title>
		</media:content>
	</item>
		<item>
		<title>How to Localize JDK for fa-IR</title>
		<link>http://hajloo.wordpress.com/2011/05/23/how-to-localize-jdk-for-fa-ir/</link>
		<comments>http://hajloo.wordpress.com/2011/05/23/how-to-localize-jdk-for-fa-ir/#comments</comments>
		<pubDate>Mon, 23 May 2011 04:25:34 +0000</pubDate>
		<dc:creator>Nasser Hadjloo</dc:creator>
				<category><![CDATA[English Posts]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[Atlassian]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[Free Software]]></category>
		<category><![CDATA[Issue Tracker]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Java Development Kit]]></category>
		<category><![CDATA[Java version history]]></category>
		<category><![CDATA[Java Virtual Machine]]></category>
		<category><![CDATA[JDK]]></category>
		<category><![CDATA[Jira]]></category>
		<category><![CDATA[JIRA Studio]]></category>
		<category><![CDATA[Languages]]></category>
		<category><![CDATA[Localization]]></category>
		<category><![CDATA[Open source]]></category>
		<category><![CDATA[OpenJDK]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[نرم افزار کدباز]]></category>
		<category><![CDATA[چرخه تولید نرم افزار]]></category>
		<category><![CDATA[کار تیمی]]></category>
		<category><![CDATA[تولید نرم افزار]]></category>
		<category><![CDATA[جاوا]]></category>
		<category><![CDATA[طراحی]]></category>

		<guid isPermaLink="false">http://hajloo.wordpress.com/?p=1423</guid>
		<description><![CDATA[Atlassian is an Australlian corporation which has some cool products like JIRA, Confluence, Fish Eye, Green Hopper, JIRA Studio and etc. For last 5 years I&#8217;m using Jira as an Issue Tracker and I&#8217;m really content with it. Attlasian helps Open Source and Free Software and give its software free to the open community. They [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hajloo.wordpress.com&amp;blog=3950677&amp;post=1423&amp;subd=hajloo&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div style="direction:ltr;text-align:left;" dir="ltr">
<div id="attachment_819" class="wp-caption alignleft" style="width: 88px"><a href="http://hajloo.files.wordpress.com/2009/07/java.jpg"><img class="size-full wp-image-819" title="java" src="http://hajloo.files.wordpress.com/2009/07/java.jpg?w=630" alt=""   /></a><p class="wp-caption-text">Java</p></div>
<p>Atlassian is an Australlian corporation which has some cool products like JIRA, Confluence, Fish Eye, Green Hopper, <a class="zem_slink" title="JIRA Studio" href="http://www.atlassian.com/hosted/studio" rel="homepage">JIRA Studio</a> and etc. For last 5 years I&#8217;m using Jira as an Issue Tracker and I&#8217;m really content with it. Attlasian helps <a class="zem_slink" title="Open Source" href="http://www.wikinvest.com/concept/Open_Source" rel="wikinvest">Open Source</a> and Free Software and give its software free to the open community. They also help some charities and let their customer help charities by their hand. Actually they pay total price of Standard verions of their products to charity so thatif you buy one, you help charity too. Because of all these good things and these useful application I decided to localize Jira totaly free a year ago.</p>
<p>I was trying to localize <a class="zem_slink" title="Atlassian" href="http://www.atlassian.com/" rel="homepage">Atlassian</a> JIRA because it is really a good issue tracker system. I had started translating it to Persian a year ago. After a while<a href="https://jira.atlassian.com/browse/TRANS-111"> I contacted to JIRA team to include my resource file into JIRA</a> and make it available for the next possible version. It took a month that I get a wondering answer from JIRA team.</p>
<blockquote><p>Hi Nasser,</p>
<p>There is a problem with<strong> Persian (fa_IR)</strong>, <strong>it is not supported by <a class="zem_slink" title="Java Development Kit" href="http://en.wikipedia.org/wiki/Java_Development_Kit" rel="wikipedia">JDK</a></strong>. There is no support for the fa_IR <a class="zem_slink" title="Locale" href="http://en.wikipedia.org/wiki/Locale" rel="wikipedia">locale</a>.</p>
<p>Do we have the wrong locale? It sounds like we may.</p>
<p>Alternatively, if the locale is correct we will have to postpone the implementation. <strong>There are two solutions</strong> we can explore, but neither in the short term:</p>
<p><strong> try to force java to support fa_IR</strong></p>
<p><strong> refactor TAC so having locale is optional</strong></p>
<p>Thank you Nasser, I appreciate your patience,</p>
<p>Nick</p></blockquote>
<p>I really amazed that JDK doesn’t support fa-IR locale! I’m not a Java man, but if a java geek is reading this, I kindly ask him do a favor to Iranian people. <strong>Start localizing JDK for Persian</strong>. To start you can go to <strong><a href="http://openjdk.java.net/groups/i18n/">this page</a></strong> and follow the manual to <strong>add Persian to JDK</strong>.</p>
<p><strong>I use this blog to thanks Jira team</strong>, You guys really rock. I wish you keep on your nice job.</p>
</div>
<br />Filed under: <a href='http://hajloo.wordpress.com/category/english-posts/'>English Posts</a>, <a href='http://hajloo.wordpress.com/category/review/'>Review</a> Tagged: <a href='http://hajloo.wordpress.com/tag/atlassian/'>Atlassian</a>, <a href='http://hajloo.wordpress.com/tag/eclipse/'>eclipse</a>, <a href='http://hajloo.wordpress.com/tag/free-software/'>Free Software</a>, <a href='http://hajloo.wordpress.com/tag/issue-tracker/'>Issue Tracker</a>, <a href='http://hajloo.wordpress.com/tag/java/'>Java</a>, <a href='http://hajloo.wordpress.com/tag/java-development-kit/'>Java Development Kit</a>, <a href='http://hajloo.wordpress.com/tag/java-version-history/'>Java version history</a>, <a href='http://hajloo.wordpress.com/tag/java-virtual-machine/'>Java Virtual Machine</a>, <a href='http://hajloo.wordpress.com/tag/jdk/'>JDK</a>, <a href='http://hajloo.wordpress.com/tag/jira/'>Jira</a>, <a href='http://hajloo.wordpress.com/tag/jira-studio/'>JIRA Studio</a>, <a href='http://hajloo.wordpress.com/tag/languages/'>Languages</a>, <a href='http://hajloo.wordpress.com/tag/localization/'>Localization</a>, <a href='http://hajloo.wordpress.com/tag/open-source/'>Open source</a>, <a href='http://hajloo.wordpress.com/tag/openjdk/'>OpenJDK</a>, <a href='http://hajloo.wordpress.com/tag/programming/'>Programming</a>, <a href='http://hajloo.wordpress.com/tag/%d9%86%d8%b1%d9%85-%d8%a7%d9%81%d8%b2%d8%a7%d8%b1-%da%a9%d8%af%d8%a8%d8%a7%d8%b2/'>نرم افزار کدباز</a>, <a href='http://hajloo.wordpress.com/tag/%da%86%d8%b1%d8%ae%d9%87-%d8%aa%d9%88%d9%84%db%8c%d8%af-%d9%86%d8%b1%d9%85-%d8%a7%d9%81%d8%b2%d8%a7%d8%b1/'>چرخه تولید نرم افزار</a>, <a href='http://hajloo.wordpress.com/tag/%da%a9%d8%a7%d8%b1-%d8%aa%db%8c%d9%85%db%8c/'>کار تیمی</a>, <a href='http://hajloo.wordpress.com/tag/%d8%aa%d9%88%d9%84%db%8c%d8%af-%d9%86%d8%b1%d9%85-%d8%a7%d9%81%d8%b2%d8%a7%d8%b1/'>تولید نرم افزار</a>, <a href='http://hajloo.wordpress.com/tag/%d8%ac%d8%a7%d9%88%d8%a7/'>جاوا</a>, <a href='http://hajloo.wordpress.com/tag/%d8%b7%d8%b1%d8%a7%d8%ad%db%8c/'>طراحی</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hajloo.wordpress.com/1423/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hajloo.wordpress.com/1423/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hajloo.wordpress.com/1423/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hajloo.wordpress.com/1423/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/hajloo.wordpress.com/1423/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/hajloo.wordpress.com/1423/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/hajloo.wordpress.com/1423/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/hajloo.wordpress.com/1423/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hajloo.wordpress.com/1423/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hajloo.wordpress.com/1423/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hajloo.wordpress.com/1423/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hajloo.wordpress.com/1423/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hajloo.wordpress.com/1423/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hajloo.wordpress.com/1423/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hajloo.wordpress.com&amp;blog=3950677&amp;post=1423&amp;subd=hajloo&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://hajloo.wordpress.com/2011/05/23/how-to-localize-jdk-for-fa-ir/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5695e025dbefc34357daeedfc18c140?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">ناصر حاجلو :-: Nasser Hadjloo</media:title>
		</media:content>

		<media:content url="http://hajloo.files.wordpress.com/2009/07/java.jpg" medium="image">
			<media:title type="html">java</media:title>
		</media:content>
	</item>
	</channel>
</rss>
