<?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>strife&#039;s devLog</title>
	<atom:link href="http://strife.pl/feed/" rel="self" type="application/rss+xml" />
	<link>http://strife.pl</link>
	<description></description>
	<lastBuildDate>Thu, 19 Jan 2012 12:51:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Android: How to Send Request (POST) to the Server (Full Application)</title>
		<link>http://strife.pl/2011/12/android-how-to-send-request-post-to-the-server-full-application/</link>
		<comments>http://strife.pl/2011/12/android-how-to-send-request-post-to-the-server-full-application/#comments</comments>
		<pubDate>Mon, 19 Dec 2011 16:46:58 +0000</pubDate>
		<dc:creator>strife</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[async]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[progress bar]]></category>
		<category><![CDATA[send to server]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[simple application]]></category>

		<guid isPermaLink="false">http://strife.pl/?p=123</guid>
		<description><![CDATA[Hi, Like I said before I am new to Android and I don&#8217;t hide it but I&#8217;ve started to like it so far. And now I&#8217;d like to show you an application which enables sending data to the servers remotely. Before I give you the code, just look at the screens how it looks. But [...]]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>Like I said before I am new to Android and I don&#8217;t hide it but I&#8217;ve started to like it so far. And now I&#8217;d like to show you an application which enables sending data to the servers remotely. Before I give you the code, just look at the screens how it looks.</p>
<p>But if you don&#8217;t care how it works <strong>just download the application from here:</strong></p>
<ul>
<li>Source code: <a href="https://github.com/strife/AndroidSendToServer" title="https://github.com/strife/AndroidSendToServer" target="_blank">https://github.com/strife/AndroidSendToServer</a></li>
<li>Package for android: <a href="https://github.com/strife/AndroidSendToServer/blob/master/bin/SendToServer.apk" title="https://github.com/strife/AndroidSendToServer/blob/master/bin/SendToServer.apk" target="_blank">https://github.com/strife/AndroidSendToServer/blob/master/bin/SendToServer.apk</a> (non authorized)</li>
</ul>
<p>It should be compatibile with 2.3.3 API.</p>
<h4>Preview:</h4>
<div id="attachment_130" class="wp-caption aligncenter" style="width: 810px"><a href="http://strife.pl/wp-content/uploads/2011/12/android1.jpg"><img class="size-full wp-image-130 " title="Homepage of android application" src="http://strife.pl/wp-content/uploads/2011/12/android1.jpg" alt="" width="800" height="599" /></a><p class="wp-caption-text">Here you can easly send your data to server, just like that. But first of all you have to change settings by clicking on proper link.</p></div>
<p>&nbsp;</p>
<div id="attachment_135" class="wp-caption aligncenter" style="width: 810px"><a href="http://strife.pl/wp-content/uploads/2011/12/android2.jpg"><img class="size-full wp-image-135" title="Settings page android app" src="http://strife.pl/wp-content/uploads/2011/12/android2.jpg" alt="" width="800" height="599" /></a><p class="wp-caption-text">That how looks settings page</p></div>
<div id="attachment_139" class="wp-caption aligncenter" style="width: 810px"><a href="http://strife.pl/wp-content/uploads/2011/12/android3.jpg"><img class="size-full wp-image-139" title="android3" src="http://strife.pl/wp-content/uploads/2011/12/android3.jpg" alt="" width="800" height="599" /></a><p class="wp-caption-text">View after clicking on the button</p></div>
<h3>How it works?</h3>
<p>There is too many files to show, for that reason I decided to explain only few features. </p>
<h4>How to make a progress bar?</h4>
<p>It&#8217;s simple, in your Activity class you&#8217;ve got to create a class which will extends of <a href="http://developer.android.com/reference/android/os/AsyncTask.html" title="AsynTask" target="_blank">AsyncTask</a> it should look like that: </p>
<p><pre><code>...
    
    private class postData extends AsyncTask&lt;String, Void, String&gt; {

    	private final ProgressDialog dialog = ProgressDialog.show(sendToServerActivity, &quot;&quot;, 
    			&quot;Saving data to server. Please wait...&quot;, true);

    	@Override
    	protected String doInBackground(String... params) {
    		// perform long running operation operation

    		SharedPreferences settings = context.getSharedPreferences(PREFS_FILE, 0);
    		String server = settings.getString(&quot;server&quot;, &quot;&quot;);
    		
    		HttpClient httpclient = new DefaultHttpClient();
    		HttpPost httppost = new HttpPost(server);

    		try {
    			// Add your data
    			List&lt;NameValuePair&gt; nameValuePairs = new ArrayList&lt;NameValuePair&gt;(1);
    			nameValuePairs.add(new BasicNameValuePair(&quot;android&quot;, editText1.getText().toString()));     
    			httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));

    			try {
    				httpclient.execute(httppost);
    			} catch (UnsupportedEncodingException e) {
    				e.printStackTrace();
    			}


    			// Execute HTTP Post Request
    			// ResponseHandler&lt;String&gt; responseHandler=new BasicResponseHandler();
    			// String responseBody = httpclient.execute(httppost, responseHandler);

    			// if (Boolean.parseBoolean(responseBody)) {
    			//	dialog.cancel();
    			// }


    		} catch (IOException e) {
    			// TODO Auto-generated catch block
    			Log.i(&quot;HTTP Failed&quot;, e.toString());
    		}    		
    		
    		return null;
    	}
...</code></pre></p>
<p>And then if you&#8217;ve got already that construction you can simply run it. In my example it looks: </p>
<p><pre><code>public void sendItNow(Button button1) {
    	button1.setOnClickListener(new View.OnClickListener() {
			
			public void onClick(View v) {
				// TODO Auto-generated method stub
				// check if every 
				boolean isValidate = validate(editText1.getText());
				
				if (isValidate) {
					// send to server and open progress dialog box
					new postData().execute(); // most important line
				}
			}
		});
    }</code></pre></p>
<p>As you see I execute this class using <a href="http://developer.android.com/reference/android/os/AsyncTask.html#execute%28Params...%29" title=".execute" target="_blank">.execute</a> method. </p>
<h4>PHP Script which saves data</h4>
<p><pre><code>&lt;?php



if (isset($_POST['android'])) {

    file_put_contents(&quot;android.txt&quot;, $_POST['android']);

    echo 1;

}



?&gt;</code></pre></p>
<p><strong>Note:</strong> File android.txt has to have proper chmod (777). </p>
<h4>How to manage pages?</h4>
<p>The feature which will be able to do that you can find in <a href="http://developer.android.com/guide/topics/manifest/manifest-intro.html" title="Manifest" target="_blank">Manifest</a> file. I&#8217;ve noticed it is a very important file, something similar to file which defines how to run application, I guess. In my case I wanted to get some pages (Main and Help/Configuration). So then my Manifest file looks: </p>
<p><pre><code>&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
&lt;manifest xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;
    package=&quot;sendto.server&quot;
    android:versionCode=&quot;1&quot;
    android:versionName=&quot;1.0&quot; &gt;

    &lt;uses-sdk android:minSdkVersion=&quot;10&quot; /&gt;
    &lt;uses-permission android:name=&quot;android.permission.INTERNET&quot;/&gt;

    &lt;application
        android:icon=&quot;@drawable/ic_launcher&quot;
        android:label=&quot;@string/app_name&quot; &gt;
        &lt;activity
            android:label=&quot;@string/app_name&quot;
            android:name=&quot;.SendToServerActivity&quot; &gt;
            &lt;intent-filter &gt;
                &lt;action android:name=&quot;android.intent.action.MAIN&quot; /&gt;

                &lt;category android:name=&quot;android.intent.category.LAUNCHER&quot; /&gt;
            &lt;/intent-filter&gt;
        &lt;/activity&gt;
        &lt;activity android:name=&quot;HelpActivity&quot;&gt;&lt;/activity&gt;
    &lt;/application&gt;

&lt;/manifest&gt;</code></pre></p>
<p>What exactly I mean by &#8220;Pages&#8221;, you can find out by clicking link below: </p>
<ul>
<li><a href="http://strife.pl" title="Creating new Activities in Android" target="_blank">Creating new Activities in Android (available soon)</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://strife.pl/2011/12/android-how-to-send-request-post-to-the-server-full-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to add new custom field in Prestashop</title>
		<link>http://strife.pl/2011/12/how-to-add-new-custom-field-in-prestashop/</link>
		<comments>http://strife.pl/2011/12/how-to-add-new-custom-field-in-prestashop/#comments</comments>
		<pubDate>Tue, 13 Dec 2011 09:21:51 +0000</pubDate>
		<dc:creator>strife</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[add new field]]></category>
		<category><![CDATA[custom field]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[prestashop]]></category>
		<category><![CDATA[prestashop 1.4.3]]></category>

		<guid isPermaLink="false">http://strife.pl/?p=155</guid>
		<description><![CDATA[I&#8217;ve figured out how to add new field to database using Prestashop (1.4.3, but I think for the newer versions would be the same). This solution gives you new field in database and you will be able to edit / save data to this field, for my example I needed a field which was called [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve figured out how to add new field to database using Prestashop (1.4.3, but I think for the newer versions would be the same). This solution gives you new field in database and you will be able to edit / save data to this field, for my example I needed a field which was called &#8220;number of photos&#8221;. Below you can see how it works. </p>
<p><a href="http://strife.pl/wp-content/uploads/2011/12/Zaznaczenie_074.png"><img src="http://strife.pl/wp-content/uploads/2011/12/Zaznaczenie_074.png" alt="" title="Zaznaczenie_074" width="751" height="394" class="aligncenter size-full wp-image-156" /></a></p>
<p>When you want to get it you should make some improvements. First of all just create a new field in your database it will be called &#8220;nb_photos&#8221; in my case. And then:</p>
<p>1. Open AdminProducts.php file (/[admin_panel]/tabs/AdminProducts.php) and add this line (line 2194):</p>
<p><pre><code>&lt;tr&gt; 
    &lt;td class=&quot;col-left&quot;&gt;'.$this-&gt;l('Number of photos:').'&lt;/td&gt; 
    &lt;td style=&quot;padding-bottom:5px;&quot;&gt; 
        &lt;input size=&quot;55&quot; type=&quot;text&quot; name=&quot;nb_photos&quot; value=&quot;'.htmlentities($this-&gt;getFieldValue($obj, 'nb_photos'), ENT_COMPAT, 'UTF-8').'&quot; style=&quot;width: 130px; margin-right: 44px;&quot; /&gt; 
        &lt;span class=&quot;hint&quot; name=&quot;help_box&quot;&gt;'.$this-&gt;l('Number of photos') . '&lt;/span&gt; 
    &lt;/td&gt; 
&lt;/tr&gt;</code></pre></p>
<p>2. Open Product.php (classes/Product.php) and add:</p>
<p><strong>Line 130</strong><br />
<pre><code>/** @var integer Number of photos */ 
public         $nb_photos;</code></pre></p>
<p><strong>Line 231</strong><br />
<pre><code>'ean13' =&gt; 'isEan13', 
'nb_photos' =&gt; 'isUnsignedInt', // this field
'upc' =&gt; 'isUpc',</code></pre></p>
<p><strong>Line 340</strong><br />
<pre><code>$fields['ean13'] = pSQL($this-&gt;ean13); 
$fields['nb_photos'] = pSQL($this-&gt;nb_photos); 
$fields['upc'] = pSQL($this-&gt;upc);</code></pre></p>
<p>And that&#8217;s all. If you have any questions for that let me know <img src='http://strife.pl/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://strife.pl/2011/12/how-to-add-new-custom-field-in-prestashop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Beginning working with Android</title>
		<link>http://strife.pl/2011/12/beginning-working-with-android/</link>
		<comments>http://strife.pl/2011/12/beginning-working-with-android/#comments</comments>
		<pubDate>Sat, 03 Dec 2011 16:06:43 +0000</pubDate>
		<dc:creator>strife</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://strife.pl/?p=120</guid>
		<description><![CDATA[Hi there, A couple days ago I decided to improve my programming skills by learning something new. And that thing is android. It&#8217;s a very powerful tool and I can say it for using it only for couple days. For me as a programmer beginning was easy. All variables, classes, constructions etc. are almost the [...]]]></description>
			<content:encoded><![CDATA[<p>Hi there,</p>
<p>A couple days ago I decided to improve my programming skills by learning something new. And that thing is android. It&#8217;s a very powerful tool and I can say it for using it only for couple days. For me as a programmer beginning was easy. All variables, classes, constructions etc. are almost the same, of course Java is more powerful than PHP is but even though I can handle it : )</p>
<p>In next note I will put some code which may be interested for you. See you!</p>
]]></content:encoded>
			<wfw:commentRss>http://strife.pl/2011/12/beginning-working-with-android/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Prestashop, paypal module message limit 1600</title>
		<link>http://strife.pl/2011/11/prestashop-paypal-module-message-limit-1600/</link>
		<comments>http://strife.pl/2011/11/prestashop-paypal-module-message-limit-1600/#comments</comments>
		<pubDate>Thu, 17 Nov 2011 09:54:59 +0000</pubDate>
		<dc:creator>strife</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[message length]]></category>
		<category><![CDATA[prestashop]]></category>
		<category><![CDATA[quick fix]]></category>

		<guid isPermaLink="false">http://strife.pl/?p=117</guid>
		<description><![CDATA[When you have a problem with paypal module in Prestashop. I mean that kind of problem when user come back from paypal.com: Fatal error (Message =&#62; message Length 1600) You should edit Message.php (in classes) and change the limit of field. It&#8217;s line 54 and it should be look that: // line 54 protected $fieldsSize [...]]]></description>
			<content:encoded><![CDATA[<p>When you have a problem with paypal module in Prestashop. I mean that kind of problem when user come back from paypal.com:<br />
<pre><code>Fatal error (Message =&gt; message Length 1600)</code></pre><br />
You should edit Message.php (in classes) and change the limit of field. It&#8217;s line 54 and it should be look that:<br />
<pre><code>// line 54
protected	$fieldsSize = array('message' =&gt; 16000); // just change to 16000</code></pre><br />
And then you won&#8217;t have any problem with limits when user come back to your internet store.</p>
]]></content:encoded>
			<wfw:commentRss>http://strife.pl/2011/11/prestashop-paypal-module-message-limit-1600/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubercart API &#8211; add to cart with attributes</title>
		<link>http://strife.pl/2011/10/ubercart-api-add-to-cart-with-attributes/</link>
		<comments>http://strife.pl/2011/10/ubercart-api-add-to-cart-with-attributes/#comments</comments>
		<pubDate>Mon, 10 Oct 2011 07:23:45 +0000</pubDate>
		<dc:creator>strife</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[add]]></category>
		<category><![CDATA[attributes]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[to cart]]></category>
		<category><![CDATA[ubertcart]]></category>
		<category><![CDATA[with]]></category>

		<guid isPermaLink="false">http://strife.pl/?p=97</guid>
		<description><![CDATA[I had a problem with that and finally I have found solution for that &#8211; it is very simple. $product_id = 100; // this is your product id, in drupal it is node with product type $quantity = 1; // amount of product uc_cart_add_item($product_id, $quantity, array('attributes' =&#62; array(1 =&#62; 500)), NULL, NULL, $check_redirect = FALSE); [...]]]></description>
			<content:encoded><![CDATA[<p>I had a problem with that and finally I have found solution for that &#8211; it is very simple.<br />
<pre><code>$product_id = 100; // this is your product id, in drupal it is node with product type
$quantity = 1; // amount of product
uc_cart_add_item($product_id, $quantity, array('attributes' =&gt; array(1 =&gt; 500)), NULL, NULL, $check_redirect = FALSE);
?&gt;</code></pre><br />
And the third parameter concerns attributes, the key of that array it is the first attribute on list of attributes in UbertCart control panel.</p>
]]></content:encoded>
			<wfw:commentRss>http://strife.pl/2011/10/ubercart-api-add-to-cart-with-attributes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to modify sth after submit in Drupal 6</title>
		<link>http://strife.pl/2011/10/how-to-modify-sth-after-submit-in-drupal-6/</link>
		<comments>http://strife.pl/2011/10/how-to-modify-sth-after-submit-in-drupal-6/#comments</comments>
		<pubDate>Sun, 09 Oct 2011 15:58:28 +0000</pubDate>
		<dc:creator>strife</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[alter]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[drupal6]]></category>
		<category><![CDATA[form]]></category>
		<category><![CDATA[hooks]]></category>
		<category><![CDATA[node]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[submit]]></category>

		<guid isPermaLink="false">http://strife.pl/?p=89</guid>
		<description><![CDATA[In Drupal 6 we have some constructions which are very helpful. You want to modify sth after node has been submited? No problem you can easly do it by using hooks. In some module create some functions which will called: function my_module_form_alter(&#38;$form, $form_state, $form_id) { if($form_id == 'name_of_your_form') { $form['#after_build'][] = '_my_module_after_build'; } } function [...]]]></description>
			<content:encoded><![CDATA[<p>In Drupal 6 we have some constructions which are very helpful. You want to modify sth after node has been submited? No problem you can easly do it by using <strong>hooks</strong>. In some module create some functions which will called:</p>
<p><pre><code>function my_module_form_alter(&amp;$form, $form_state, $form_id) {
  if($form_id == 'name_of_your_form') {
    $form['#after_build'][] = '_my_module_after_build';
  }
}
function _my_module_after_build(&amp;$form, $form_state) {
    // here you should add that piece of code
    // 	$form['#redirect'] = 'your-page-after-submit'; 
  	$form['#submit'][] = 'my_module_action_after_submit';
    
}
function my_module_action_after_submit($form, &amp;$form_state) {
 // and here you have all you want, you can modify $form_state variable
 // to change status or other variables in node
 // $form_state['values']['status'] = false;
   return $form_state;
}</code></pre></p>
<p>And that&#8217;s all you should know about it. Now you can simply modify whatever you want to modify. </p>
<p>See you!</p>
]]></content:encoded>
			<wfw:commentRss>http://strife.pl/2011/10/how-to-modify-sth-after-submit-in-drupal-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting cart from Prestashop</title>
		<link>http://strife.pl/2011/09/getting-cart-from-prestashop/</link>
		<comments>http://strife.pl/2011/09/getting-cart-from-prestashop/#comments</comments>
		<pubDate>Fri, 30 Sep 2011 12:27:40 +0000</pubDate>
		<dc:creator>strife</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[basket]]></category>
		<category><![CDATA[cart]]></category>
		<category><![CDATA[prestashop]]></category>
		<category><![CDATA[prestashop 1.4.3]]></category>

		<guid isPermaLink="false">http://strife.pl/?p=13</guid>
		<description><![CDATA[If you have a problem with getting cart from prestashop that would be interesting for you. I had a huge problem with Prestashop (version 1.4.3) because I didn&#8217;t know how exactly I should get cart from Prestashop to the WordPress or somewhere else. However I spent some time to resolve that issue and I wrote [...]]]></description>
			<content:encoded><![CDATA[<p>If you have a problem with getting cart from prestashop that would be interesting for you.</p>
<p>I had a huge problem with Prestashop (version 1.4.3) because I didn&#8217;t know how exactly I should get cart from Prestashop to the WordPress or somewhere else. However I spent some time to resolve that issue and I wrote that:</p>
<p>First of all we should get session data from Pretashop:</p>
<p><pre><code>require_once dirname(__FILE__) . '/config/config.inc.php' ;
require_once(dirname(__FILE__) . '/config/settings.inc.php');
require_once dirname(__FILE__) . '/init.php' ; // this initializes the Cookie singleton, which is available in any script

function getAllCookies(){
global $cookie ;

// var_dump($cookie);

return $cookie;

}

$cookie = getAllCookies();</code></pre></p>
<p>As you see you should add some lines from Prestashop configuration and then you should create a function in which you have <strong>cart ID</strong>. And then you can easily get all data from the cart:</p>
<p><pre><code>$query = &quot;SELECT p.id_product, pl.name, p.quantity, pp.price, p.id_product_attribute, pp.price * cu.conversion_rate AS orderprice, cu.sign, cu.format FROM ps_cart c
LEFT JOIN ps_cart_product p ON (p.id_cart = c.id_cart)
LEFT JOIN ps_product pp ON (pp.id_product = p.id_product)
LEFT JOIN ps_product_lang pl ON (pl.id_product = p.id_product)
LEFT JOIN ps_currency cu ON (cu.id_currency = c.id_currency)

WHERE c.id_cart = &quot; . (int) $cookie-&gt;id_cart . &quot; AND pl.id_lang = 1
ORDER BY p.date_add ASC&quot;;


$link1 = mysql_connect(_DB_SERVER_, _DB_USER_, _DB_PASSWD_);

if ($link1) {
$db_selected = @mysql_select_db(_DB_NAME_, $link1);
$res = mysql_query($query);
$arrProducts = array();
while ($row = mysql_fetch_assoc($res)) {
$arrProducts[] = $row;
}

var_dump($arrProducts); // all products from session cart
}

mysql_close($link1);</code></pre></p>
<p>(Sorry for quality of code but I had to wrote this as  quick as possible)</p>
<p>And that&#8217;s all <img src='http://strife.pl/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://strife.pl/2011/09/getting-cart-from-prestashop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello world in 2011!</title>
		<link>http://strife.pl/2011/09/hello-world/</link>
		<comments>http://strife.pl/2011/09/hello-world/#comments</comments>
		<pubDate>Fri, 16 Sep 2011 20:21:34 +0000</pubDate>
		<dc:creator>strife</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://strife.pl/?p=1</guid>
		<description><![CDATA[Finally I decided to start blogging. I will be creating posts about making software and in the first order I will be writing about creating software by using PHP. But in the future a want to learn something more about JAVA for mobile and I think it will be a great subject to writing and [...]]]></description>
			<content:encoded><![CDATA[<p>Finally I decided to start blogging. I will be creating posts about making software and in the first order I will be writing about creating software by using PHP. But in the future a want to learn something more about JAVA for mobile and I think it will be a great subject to writing and I suppose it may be interested.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://strife.pl/2011/09/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

