<?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>Guru in progress</title>
	<atom:link href="http://confiq.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://confiq.org</link>
	<description>My notepad</description>
	<lastBuildDate>Mon, 20 Feb 2012 14:39:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>SOAP server with PHP</title>
		<link>http://confiq.org/2011/05/soap-server-with-php/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=soap-server-with-php</link>
		<comments>http://confiq.org/2011/05/soap-server-with-php/#comments</comments>
		<pubDate>Sat, 28 May 2011 16:13:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[soap]]></category>

		<guid isPermaLink="false">http://ec2-50-17-105-34.compute-1.amazonaws.com/?p=85</guid>
		<description><![CDATA[I hated SOAP. I really did and I do today but less. I&#8217;m developing web about 10 years and each time when I had to confront SOAP protocol I had nightmares while coding. And to make things worst, one of &#8230;<p class="read-more"><a href="http://confiq.org/2011/05/soap-server-with-php/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://confiq.org/wp-content/uploads/2011/05/XForms-XML-XHTML-nForms_283.jpg"><img class="alignright size-medium wp-image-88" title="XForms-XML-XHTML-nForms_283" src="/wp-content/uploads/2011/05/XForms-XML-XHTML-nForms_283-228x300.jpg" alt="" width="160" height="210" /></a>I hated SOAP. I really did and I do today but less. I&#8217;m developing web about 10 years and each time when I had to confront SOAP protocol I had nightmares while coding.</p>
<p>And to make things worst, one of my last projects was to build API server that will use WSDL-SOAP protocol in PHP. At beginning I explained to the guys why JSON is much better protocol, they even agreed with me but they service is already done, so it&#8217;s just our part to integrate it.</p>
<p>On my surprise, I had less problem writing SOAP server then it&#8217;s client. All what is need in PHP is few lines in code&#8230;</p>
<pre class="brush: php">require_once 'class/soap_server.php';
try {
    $server = new SoapServer(null,array('uri'=&gt;'http://confiq.org/soap_server/'));
    $server-&gt;setClass("soap_server");
    $server-&gt;handle();
} catch (Exception $e) {
    _log($e-&gt;getMessage() . ' in '.$e-&gt;getFile().'#'.$e-&gt;getLine());
    $server-&gt;fault($e-&gt;getCode(), $e-&gt;getMessage());
}</pre>
<p>And there you go!<br />
Of course, you&#8217;ll need to have soap_server object around with methods that will exist in soap server!</p>
<p>And for client:</p>
<pre class="brush: php">$client = new SoapClient(null,array(
    "uri"            =&gt; "http://confiq.org/soap_server/",
    "location"        =&gt; "http://confiq.org/soap_server/",
    "trace"          =&gt; 1,
    "soap_version"     =&gt; SOAP_1_1,
    "exceptions"     =&gt; 1));
try {
    $demo = $client-&gt;someRandomMethod('email','email');
    fn_print_r($demo);
  } catch (SoapFault $exception) {
    fn_print_r($client-&gt;__getLastResponse());
    fn_print_die($exception);
}</pre>
<p>And that&#8217;s it! <img src='http://confiq.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Worth reading about this topic, <a href="http://devzone.zend.com/article/689">PHP SOAP Extension </a> by <a href="http://devzone.zend.com/member/86-Dmitry-Stogov">Dmitry Stogov</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://confiq.org/2011/05/soap-server-with-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>EC2 amazon rocks :)</title>
		<link>http://confiq.org/2011/03/amazon-rocks/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=amazon-rocks</link>
		<comments>http://confiq.org/2011/03/amazon-rocks/#comments</comments>
		<pubDate>Sat, 12 Mar 2011 09:06:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[ec2]]></category>

		<guid isPermaLink="false">http://ec2-50-17-105-34.compute-1.amazonaws.com/?p=1</guid>
		<description><![CDATA[This is my first post on ec2 amazon clouds. I&#8217;m still amazed that it&#8217;s serving as it should and what&#8217;s best it&#8217;s 1 year free! Configuring ec2 took me less then configuring linux/postfix, it&#8217;s even easer And what&#8217;s best it&#8217;s &#8230;<p class="read-more"><a href="http://confiq.org/2011/03/amazon-rocks/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" title="amazon ec2" src="http://awsmedia.s3.amazonaws.com/logo_aws.gif" alt="" width="164" height="60" />This is my first post on ec2 amazon clouds. I&#8217;m still amazed that it&#8217;s serving as it should and what&#8217;s best it&#8217;s 1 year free! <img src='http://confiq.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Configuring ec2 took me less then configuring linux/postfix, it&#8217;s even easer <img src='http://confiq.org/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>And what&#8217;s best it&#8217;s even cheaper than dreamhost, after one year I&#8217;ll buy simplest ec2 instance which will cast me ~80$ for 3 years. On that instance LAMP+postfix will satisfy my needs.</p>
<p>Mazal tov</p>
<p><strong>UPDATE</strong></p>
<p>So almost after the year, I&#8217;m still on amazon web services and I have nice upload. Here is the screenshot:<br />
<span id="more-1"></span><a href="http://confiq.org/wp-content/uploads/2011/03/Screenshot-root@domU-12-31-39-0B-D9-A7.png"><img class="alignright size-thumbnail wp-image-118" title="Screenshot-root@domU-12-31-39-0B-D9-A7:~" src="http://confiq.org/wp-content/uploads/2011/03/Screenshot-root@domU-12-31-39-0B-D9-A7-150x150.png" alt="" width="150" height="150" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://confiq.org/2011/03/amazon-rocks/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>facebook API &#8211; my opinion</title>
		<link>http://confiq.org/2009/06/facebook-api-my-opinion/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=facebook-api-my-opinion</link>
		<comments>http://confiq.org/2009/06/facebook-api-my-opinion/#comments</comments>
		<pubDate>Sun, 07 Jun 2009 18:58:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[facebook]]></category>

		<guid isPermaLink="false">http://blog.confiq.org/?p=35</guid>
		<description><![CDATA[Few months ago I saw an ad in agora.co.il that they are looking for facebook API programmer who can volunteer to write them a facebook app, called Agorapp. At that time i really wanted to learn FB API so i &#8230;<p class="read-more"><a href="http://confiq.org/2009/06/facebook-api-my-opinion/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>Few months ago I saw an ad in <a href="http://www.agora.co.il/">agora.co.il</a> that they are looking for facebook API programmer who can volunteer to write them a facebook app, called Agorapp. At that time i really wanted to learn FB API so i contact them and volunteer for the job. I meet they web-master (who is .net geek but very clever) , we made tiny <a href="http://en.wikipedia.org/wiki/Technology_roadmap">roadmap</a> what app should do and how it should look and then started to work. After few weeks we had beta version which worked almost without any bug. Today, this app is up and running at address: http://apps.facebook.com/agoraapp/ . They even put my name on front of app <img src='http://confiq.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>All facebook experience was kinda ok. Good sides of writing facebook api are:</p>
<ul>
<li>Very reach API</li>
<li>Easy to apply a code</li>
<li>Good PHP client</li>
</ul>
<p>On another side:</p>
<ul>
<li>Bad manual. Where is one wiki and it&#8217;s not updated</li>
<li>Restricted access to user (which is ok for user, not developer)</li>
<li>Very but very bad debugging</li>
<li>SLOW</li>
</ul>
<p>The most worst is the speed cause when you surf from apps.fb.com fb server connects to your LAMP server and then communicate back to browser.  This can be very slow when your server is not in U.S.A.<br />
Question is why don&#8217;t FB serve they own PHP application. I guess there is security involved or they want to get cheap on servers.</p>
<p>Anyhow after this task i had to write facebook connect for <a href="http://www.netanyahu.org.il/">bibi</a>. With this expiriance i wrote it after 5+ days. If i haven&#8217;t written agoraApp it could take me a weeks.</p>
]]></content:encoded>
			<wfw:commentRss>http://confiq.org/2009/06/facebook-api-my-opinion/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>vim w/ ubuntu and hebrew</title>
		<link>http://confiq.org/2008/07/vim-w-ubuntu-and-hebrew/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=vim-w-ubuntu-and-hebrew</link>
		<comments>http://confiq.org/2008/07/vim-w-ubuntu-and-hebrew/#comments</comments>
		<pubDate>Tue, 29 Jul 2008 13:26:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[hebrew]]></category>
		<category><![CDATA[vim]]></category>

		<guid isPermaLink="false">http://blog.confiq.org/?p=27</guid>
		<description><![CDATA[When real guru says to use vim please listen to them and simply use it. Vim comes from vi editor which is 32 years old program. You can call vim it&#8217;s child cause it&#8217;s younger but much more powerful. For &#8230;<p class="read-more"><a href="http://confiq.org/2008/07/vim-w-ubuntu-and-hebrew/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>When real guru says to use vim please listen to them and simply use it. <a href="http://en.wikipedia.org/wiki/Vim_(text_editor)">Vim</a> comes from <a href="http://en.wikipedia.org/wiki/Vi">vi</a> editor which is 32 years old program. You can call vim it&#8217;s child cause it&#8217;s younger but much more powerful.</p>
<p>For some weird reason ubuntu decided to use striped-down version of vim (package: <em>vim-tiny</em>) which comes by default install. Problem with vim-tiny is it&#8217;s weak and not powerful as real vim.  However you can install it by &#8220;<em>sudo apt-get install vim</em>&#8220;. After that copy default <code>vimrc</code> file from <code>/etc/vim</code> to your home directory with the name <code>.vimrc</code></p>
<p><code>cp /etc/vim/vimrc ~/.vimrc</code></p>
<p>After that edit it and turn syntax on (<a href="http://babyloncandle.blogspot.com/2007/12/ubuntu-highlight-me-vim.html">more info</a>). Here is little example of my editor: <a href="http://confiq.org/wp-content/uploads/2008/07/vim.png"><img class="alignnone size-medium wp-image-28" title="vim" src="http://confiq.org/wp-content/uploads/2008/07/vim-300x178.png" alt="" width="300" height="178" /></a></p>
<p>If you want to read/write Hebrew perhaps you should read <a href="http://he.wikipedia.org/wiki/Vim">wikipedia</a> which says to use &#8220;:set rightleft&#8221; and &#8220;:set norightleft&#8221; (or short :set lr,:set nolr). It also says it don&#8217;t support BiDi very well for it&#8217;s simplicity, but this way writing hebrew is better that lot of IDEs that i know.  Better than my favorite <a href="http://www.openkomodo.com/">komodo edit</a>.<br />
I remember at beginning when i saw Vim and when i started to read man pages i decided to stay with nano. I used nano for few years but today, no way that I&#8217;m returning to nano/pico after vim.</p>
]]></content:encoded>
			<wfw:commentRss>http://confiq.org/2008/07/vim-w-ubuntu-and-hebrew/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LPI-1 by myself</title>
		<link>http://confiq.org/2008/07/lpi-1-by-myself/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=lpi-1-by-myself</link>
		<comments>http://confiq.org/2008/07/lpi-1-by-myself/#comments</comments>
		<pubDate>Sat, 19 Jul 2008 18:00:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[certification]]></category>
		<category><![CDATA[LPIC]]></category>

		<guid isPermaLink="false">http://blog.confiq.org/?p=16</guid>
		<description><![CDATA[I decided to learn LPIC-2 and RHCE by myself. If you read previous post you&#8217;ll see how expensive courses are in Israel. Learning alone is always hard, it&#8217;s not easy as it&#8217;s in group but there are few benefits which &#8230;<p class="read-more"><a href="http://confiq.org/2008/07/lpi-1-by-myself/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>I decided to learn LPIC-2 and RHCE by myself. If you read previous post you&#8217;ll see how expensive courses are in Israel. Learning alone is always hard, it&#8217;s not easy as it&#8217;s in group but there are few benefits which i don&#8217;t know them at a moment.<br />
I wish i can find more few blogs with same target as mine, having LPIC &amp; RHCE, which could be very good practise for me.</p>
<p><strong>Material?</strong></p>
<p>Very good matterial for LPIC-1 is <a href="http://www.ibm.com/developerworks/linux/lpi/101.html?S_TACT=105AGX03&amp;S_CMP=LP" target="_blank">IBM docs</a> (registration required) but they web site is really buggy for downloading and showing updated material. For example if you go to: <a href="https://www6.software.ibm.com/developerworks/education/l-lpic1102/index.html" target="_blank">lpic-1102</a> you&#8217;ll find material for topics: 103, 104, 110 missing but if you try from <a href="http://www.ibm.com/developerworks/linux/lpi/101.html?S_TACT=105AGX03&amp;S_CMP=LP" target="_blank">index site</a> you&#8217;ll see it&#8217;s there. I also had a problem with logging into the site. Overall the web-site too buggy and hard to get used to.<br />
But if you have any good free alternative material for LPIC please contact me and I&#8217;ll update here.</p>
<p>There is also few tutorials which are not free, like <a href="http://www.cbtnuggets.com/webapp/product?id=310" target="_blank">Cbt nuggets</a> which is very good alternative if you&#8217;re lazy to read <img src='http://confiq.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  However, I&#8217;m used to read man pages so IBM docs is fine by me.</p>
<p><strong>How LPIC is build?</strong></p>
<p>LPIC is separated into two certification.</p>
<ul>
<li><a href="http://www.lpi.org/eng/certification/the_lpic_program/lpic_1" target="_blank">LPIC-1</a></li>
</ul>
<p>LPIC-1 certification is separated into two exams:</p>
<ol>
<li>exam 101</li>
<li>exam 102</li>
</ol>
<ul>
<li><a href="http://www.lpi.org/eng/certification/the_lpic_program/lpic_2" target="_blank">LPIC-2</a></li>
</ul>
<p>LPIC-2 is also separated as LPIC-1 into two exams:</p>
<ol>
<li>exam 201</li>
<li>exam 202</li>
</ol>
<p>So, bottom line is, if you want LPIC-2 you&#8217;ll need to have 4 exams which each of them costs about 100~150$. It&#8217;s little expensive so you got to learn very good before you take them.</p>
<p>I was looking for motivation for doing those certification alone so i decided to write at least once a week about the progress so maybe somebody will join me <img src='http://confiq.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  I&#8217;ll try to find material and questions to check myself and I&#8217;ll share my knowledge to the world. So next exam is 101 of LPIC-1 and expect next few posts about</p>
]]></content:encoded>
			<wfw:commentRss>http://confiq.org/2008/07/lpi-1-by-myself/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>OLPC goes XP and why</title>
		<link>http://confiq.org/2008/05/olpc-goes-xp-and-why/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=olpc-goes-xp-and-why</link>
		<comments>http://confiq.org/2008/05/olpc-goes-xp-and-why/#comments</comments>
		<pubDate>Mon, 19 May 2008 19:16:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[advocacy]]></category>
		<category><![CDATA[olpc]]></category>

		<guid isPermaLink="false">http://blog.confiq.org/?p=6</guid>
		<description><![CDATA[It&#8217;s old news. OLPC (One Laptop Per Child) will be default installed with XP. When i first hear it i was wandering why in so small hardware people would like heavy OS as XP is? One of biggest advantages with &#8230;<p class="read-more"><a href="http://confiq.org/2008/05/olpc-goes-xp-and-why/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s old news. <a href="http://laptop.org/" target="_blank">OLPC</a> (One Laptop Per Child) will be default installed with XP. When i first hear it i was wandering why in so small hardware people would like heavy OS as XP is? One of biggest advantages with Linux is that Linux can run on really low hardware (good example is <a href="http://www.damnsmalllinux.org/" target="_blank">damn small linux</a>) so why not choosing Linux? OLPC is using <a href="http://en.wikipedia.org/wiki/Sugar_(GUI)" target="_blank">sugar</a> so child won&#8217;t have any interaction with OS anyway! Even if does, why XP?</p>
<p>I started to dig in, i was really curious about this. I found thousands of articles on this issue and i was looking for conclusion. First of all I&#8217;ll write down why not XP:<br />
<a href="http://www.computerworld.com/action/article.do?command=viewArticleBasic&amp;articleId=9079798&amp;pageNumber=2">http://www.computerworld.com/action/article.do?command=viewArticleBasic<br />
&amp;articleId=9079798&amp;pageNumber=2<br />
</a></p>
<blockquote><p><a href="http://www.computerworld.com/action/article.do?command=viewArticleBasic&amp;articleId=9079798&amp;pageNumber=2"> </a>But that&#8217;s not the slimmed-down version of XP that Negroponte told the AP Microsoft had been working on for about a year, apparently with the XO in mind. Instead, for most low-cost laptops, Microsoft is licensing the full Service Pack 2 version of Windows XP Home, which gobbles up 1.1GB of disk space. Moreover, patches and updates such as <a href="http://www.computerworld.com/action/article.do?command=viewArticleBasic&amp;articleId=9079418">Service Pack 3</a> will add about 165MB to XP each year, according to Microsoft <a href="http://download.microsoft.com/download/2/0/a/20ac945c-34d0-4a60-8245-f80e80fe954f/GuidelinesForDesigningULCPCForWindowsXP-MSFT%20.pdf" target="new">(download PDF)</a>.</p>
<p>The current XO, meanwhile, comes with only 1GB of storage. That&#8217;s more than enough for the existing environment, which includes the Sugar GUI and stripped-down versions of Fedora, Firefox and other open-source software. Together, they take up <a href="http://wiki.laptop.org/go/Our_software#How_much_is_reserved_for_Content.3F" target="new">only 200MB</a>, leaving 800MB for students&#8217; files.</p>
<p>Using only stripped-down versions of open-source apps has its downsides. For instance, the XO comes with Gnash, an open-source media player, instead of Adobe&#8217;s Flash player, which is free but not open source.</p>
<p>Gnash is compatible with Flash apps only until Version 8, according to OLPC&#8217;s own online <a href="http://wiki.laptop.org/go/Adobe_Flash" target="new">documentation</a>. Many popular children&#8217;s Web sites such as <a href="http://www.webkinz.com/" target="new">Webkinz.com</a> and <a href="http://www.disney.com/" target="new">Disney.com</a> require Flash 9.0.</p></blockquote>
<p>I was laughing at this. For installing XP you&#8217;ll need more space then OLPC can have and they will recharge it <a href="http://www.theinquirer.net/gb/inquirer/news/2008/05/16/olpc-goes-xp" target="_blank">3$ per child</a>. So this is perfect, they will need to dump prices for bigger HD and for each laptop it will recharge 3$ for Microsoft! They already sold 500 000 units, if they sell more 500k it&#8217;s 1.5M for Microsoft.</p>
<p>And what&#8217;s the point of gnash? Gecko (firefox) is working perfect with adobe flash plug-in [<a href="http://wiki.laptop.org/go/Adobe_Flash">link</a>]. Why they choice gnash instead of adobe plug-in?</p>
<p>I decided to read from insiders and i found interesting blog from  Ivan Krstić. <a href="http://radian.org/" target="_blank">Ivan Krstić</a> was director of security             architecture at <a href="http://laptop.org/">One Laptop per Child</a> but he quit. He <a href="http://radian.org/notebook/sic-transit-gloria-laptopi" target="_blank">wrote</a>:</p>
<blockquote><p><strong>Sleight of hand</strong><br />
But really, I digress. The point is that OLPC was supposed to be about learning, not free software. And the most upsetting part of the Windows announcement is not that it exposed the actual agendas of a number of project participants which had nothing to do with learning, but that Nicholas&#8217; misdirection and sleight of hand were allowed to stand.</p>
<p>The whole &#8220;we&#8217;re investing into Sugar, it&#8217;ll just run on Windows&#8221; gambit is sheer nonsense. Nicholas knows quite well that Sugar won&#8217;t magically become better simply by virtue of running on Windows rather than Linux. In reality, Nicholas wants to ship plain XP desktops. He&#8217;s told me so. That he might possibly fund a Sugar effort to the side and pay lip service to the notion of its &#8220;availability&#8221; as an option to purchasing countries is at best a tepid effort to avert a PR disaster.</p>
<p>In fact, I quit when Nicholas told me — and not just me — that learning was never part of the mission. The mission was, in his mind, always getting as many laptops as possible out there; to say anything about learning would be presumptuous, and so he doesn&#8217;t want OLPC to have a software team, a hardware team, or a deployment team going forward.</p></blockquote>
<p>Do i need to add more? It&#8217;s almost one man call! Nicholas who invented OLPC like more windows then Linux so he choice windows.</p>
<p><strong>Conclusion</strong>: OLPC has nice idea but not obligation! It has nothing to do with ideology despite it has nice name (One Lap Top Per Child). Child will need to pay more $3 only for microsoft and more money for HD. Will it stay 100$? I honestly wish&#8230;<br />
Unless MS won&#8217;t pay for difference, prices will rise, less computer will be selled, no ideology to achieve&#8230;<br />
I wish I&#8217;m wrong&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://confiq.org/2008/05/olpc-goes-xp-and-why/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>upgrading to ubuntu 8.04 &amp; (sound) problems</title>
		<link>http://confiq.org/2008/05/upgrading-to-ubuntu-804-sound-problems/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=upgrading-to-ubuntu-804-sound-problems</link>
		<comments>http://confiq.org/2008/05/upgrading-to-ubuntu-804-sound-problems/#comments</comments>
		<pubDate>Sat, 10 May 2008 13:53:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[sound]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://blog.confiq.org/?p=5</guid>
		<description><![CDATA[Well, after using 7.10 i decided to upgrade to 8.04. Some people says it didn&#8217;t make any difference, all they did is installing Firefox 3.05b and nothing else. Well, that is not true! First of all, you can look at &#8230;<p class="read-more"><a href="http://confiq.org/2008/05/upgrading-to-ubuntu-804-sound-problems/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>Well, after using 7.10 i decided to upgrade to 8.04. Some people says it didn&#8217;t make any difference, all they did is installing Firefox 3.05b and nothing else.</p>
<p>Well, that is not true! First of all, you can look at they <a href="https://lists.ubuntu.com/archives/hardy-changes/">changelog</a> list. You&#8217;ll find hundreds of new lib&#8217;s. What is most important for me is they finally decided to upgrade lib&#8217;s for my favorite dictionary <a href="http://stardict.sourceforge.net/" target="_blank">stardict</a> so i finally have dictionary that is free and working <img src='http://confiq.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Then i notice i have problem with flash, i can&#8217;t listen to the music while playing music flash. I fix that problem by typing &#8220;<em>gstreamer-properties</em>&#8221; and choosing &#8220;Pulse plugin&#8221;. By doing this you&#8217;re telling all your programs to choice Pulse plugin for playing music <img src='http://confiq.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
I don&#8217;t know why they added it, ALSA plugin was working perfect with my box!<br />
If you have still have problem with your sound after upgrate you might visit: <a href="https://wiki.ubuntu.com/PulseAudio" target="_blank">https://wiki.ubuntu.com/PulseAudio</a>. it explains why you are having problems and how to fix it!</p>
<p>Generally, upgrade was smooth, it was really GUI-like installing new software. It also upgrades kernel to 2.6.24-16. I remember when i had to upgrade red hat from 6.x to 7.x. It was pain in the a**, today it was few clicks.</p>
]]></content:encoded>
			<wfw:commentRss>http://confiq.org/2008/05/upgrading-to-ubuntu-804-sound-problems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to start new blog</title>
		<link>http://confiq.org/2008/04/hello-world-2/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=hello-world-2</link>
		<comments>http://confiq.org/2008/04/hello-world-2/#comments</comments>
		<pubDate>Sat, 26 Apr 2008 08:45:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[fun]]></category>

		<guid isPermaLink="false">http://blog.confiq.org/?p=1</guid>
		<description><![CDATA[Well, i decided to open new blog! It took a while cause &#8217;till today i didn&#8217;t know in what language should i write it! i decided to write in English even my English is not mother tongue. Why English? Well &#8230;<p class="read-more"><a href="http://confiq.org/2008/04/hello-world-2/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>Well, i decided to open new blog!</p>
<p>It took a while cause &#8217;till today i didn&#8217;t know in what language should i write it! i decided to write in English even my English is not mother tongue. Why English? Well if you gonna write tech stuff you should choice English cause (thanks god) English is international language that all geeks can communicate.</p>
<p>So the question is how to open new blog so it will be popular? Is popular what you really want? The question is, why people write blogs? There is little philosophy in this topic but mean point is that people write it cause they what to share they knowledge/experience with others. So at begging you should not run fast to report it to bots (search engines). Do what i did.</p>
<p>No need to rush, for example i made blog.confiq.org domain for this purpose and after writing 5-10 articles than I&#8217;ll share it on main domain: confiq.org</p>
<p>After that I&#8217;ll report it to search engines and I&#8217;ll write my sites link wherever i can. Examples: Another blogs, Forums signature&#8230;</p>
<p>The search engines works that way. More links it founds on another domains it gives more points to your site. More point better results&#8230;</p>
<p>Well, this is my first post i had to write non-senses but next posts you can except tech info from:</p>
<p>networks, Linux, Lamp</p>
]]></content:encoded>
			<wfw:commentRss>http://confiq.org/2008/04/hello-world-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

