<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.9.2" -->
<rss version="0.92">
<channel>
	<title>open source project, linux, java, php tips ,design</title>
	<link>http://www.alonon.net</link>
	<description></description>
	<lastBuildDate>Thu, 04 Mar 2010 22:16:20 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
   <image>
    <title>open source project, linux, java, php tips ,design</title>
    <url>alt="Anonymous&#8217;s avatar" src="http://www.gravatar.com/avatar/01c4a88a61aac0480b798249e1d39205?s=48&amp;d=http%3A%2F%2Fwww.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D48&amp;r=G" class="avatar avatar-48 photo</url>
    <link>http://www.alonon.net</link>
   </image>

	<item>
		<title>Sending e-mail in ssh</title>
		<description><![CDATA[While i was trying to configure postfix, i learnt to sending e-mail in ssh. There are some script to do this and i choose sendEmail to install
sendemail type:
sudo apt-get intstall sendemail
then you can type
sendemail -f {from} -t (emailto}
sendEmail -f ADDRESS [options]
Required:
-f ADDRESS                from (sender) email address
* At least one recipient required via -t, -cc, or [...]]]></description>
		<link>http://www.alonon.net/sending-email-in-ssh/</link>
			</item>
	<item>
		<title>This is my music !</title>
		<description><![CDATA[I have to share this  !
Let&#8217;s dance &#38; drink   : ))

But first drink to dance.
The Rocky Road To Dublin (Sherlock Holmes Movie)

No tags for this post.
	Related posts
	
	No related posts.
	

]]></description>
		<link>http://www.alonon.net/this-is-my-music/</link>
			</item>
	<item>
		<title>How to get page url with php</title>
		<description><![CDATA[I needed a function to get  (learn) url with php.
Here are the codes.
&#60;?php
function curPageURL() {
$pageURL = &#8216;http&#8217;;
if ($_SERVER["HTTPS"] == &#8220;on&#8221;) {$pageURL .= &#8220;s&#8221;;}
$pageURL .= &#8220;://&#8221;;
if ($_SERVER["SERVER_PORT"] != &#8220;80&#8243;) {
$pageURL .= $_SERVER["SERVER_NAME"].&#8221;:&#8221;.$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"];
} else {
$pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
}
return $pageURL;
}
?&#62;
To use this function write
&#60;? echo curPageURL(); ?&#62;

	Tags: current page url, get, page url, Php

	Related posts
	
	Unlimited Subcategory with Adjacency List [...]]]></description>
		<link>http://www.alonon.net/how-to-get-page-url-with-php/</link>
			</item>
	<item>
		<title>The best text editor: Vim</title>
		<description><![CDATA[Vim is the best text editor, i have ever used.  I&#8217;m using vim while coding with pyton,html and css.
How to install vim
sudo apt-get install vim vim-common vim-gnome
Usage and some features
You can open a file with using: vi open_me.txt

Command mode: letters or sequence of letters            [...]]]></description>
		<link>http://www.alonon.net/the-best-text-editor-vim/</link>
			</item>
	<item>
		<title>Google Go !</title>
		<description><![CDATA[Google Go !
Yeni ürün ve hizmet duyuruları ile adını sık sık duyduğumuz, büyük firmaları kendi bünyesine katarak hızla büyüyen Google; Android, Chrome derken şimdi de yeni bir programlama dili ile karşımızda. Robert Griesemer, Ken Thompson ve Rob Pike&#8217;ın 2007&#8242;nin sonlarına doğru geliştirmeye başladıkları Go dili 2008&#8242;in ortalarına doğru bir şekil almaya başlamış. Bu yazıda Go [...]]]></description>
		<link>http://www.alonon.net/google-go/</link>
			</item>
	<item>
		<title>Ubuntu install GD support for apache</title>
		<description><![CDATA[command:
sudo apt-get install php5-gd
Don&#8217;t forget to restart apache
service apache2 restart

	Tags: apache, gd, Php

	Related posts
	
	installing apache php and mysql on Pardus (0)
	install php apache mysql phpmyadmin (1)
	Unlimited Subcategory with Adjacency List Model (6)
	mysql_insert_id (0)
	How to get page url with php (0)


]]></description>
		<link>http://www.alonon.net/ubuntu-install-gd-support-for-apach/</link>
			</item>
	<item>
		<title>python hex to dec and dec to hex converter</title>
		<description><![CDATA[# change a hexadecimal string to decimal number and reverse
# check two different representations of the hexadecimal string
# negative values and zero are accepted
# tested with Python24        vegaseat     11oct2005
def dec2hex(n):
&#8220;&#8221;"return the hexadecimal string representation of integer n&#8221;"&#8221;
return &#8220;%X&#8221; % n
def hex2dec(s):
&#8220;&#8221;"return the integer value of a hexadecimal string s&#8221;"&#8221;
return int(s, 16)
print &#8220;dec2hex(255)  =&#8221;, dec2hex(255)    # [...]]]></description>
		<link>http://www.alonon.net/python-hex-to-dec-and-dec-to-he/</link>
			</item>
	<item>
		<title>Ubuntu 9.10, Karmic Koala, released‎</title>
		<description><![CDATA[Ubuntu 9.10 has released, it has some new faetures, i shared a few of them. For more
Store, sync and share

Integrated &#8220;Ubuntu One&#8221; technology gives you 2 GB of online storage for free. Easily share files between your own and your friends&#8217; computers. Upgrade at low cost for more storage if you need it.

Software Center
Instant access [...]]]></description>
		<link>http://www.alonon.net/ubuntu-9-10-karmic-koala-released%e2%80%8e/</link>
			</item>
	<item>
		<title>Design Patterns</title>
		<description><![CDATA[Design patterns is used in software to solve common problem. They can be grouped into 3 category (Creational patterns, Structural patterns, and Behavioral patterns)
You can find some information about design patterns here

Creational Patterns

Abstract Factory (87) 
Provide an interface for creating families of related or dependent objects without specifying their concrete classes. 
Builder (97) 
Separate the [...]]]></description>
		<link>http://www.alonon.net/design-patterns/</link>
			</item>
	<item>
		<title>Dns Cache with dnsmasq</title>
		<description><![CDATA[To make a faster browsing , you can use dns cache.
To understand why you should use dns cache, you should learn how dns works.

With the each client request, dns try to find ip address for domain. Forexample for each you type www.google.com, your browser try to find google.com ips again. Dns cache is hold this [...]]]></description>
		<link>http://www.alonon.net/dns-cache-with-dnsmasq/</link>
			</item>
</channel>
</rss>
