<?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>Communities, open web and technologies by Bogomil Shopov &#187; Uncategorized</title>
	<atom:link href="http://talkweb.eu/c/uncategorized/feed" rel="self" type="application/rss+xml" />
	<link>http://talkweb.eu</link>
	<description></description>
	<lastBuildDate>Sun, 05 Feb 2012 13:10:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Community &#8230; #fosdem #mozilla</title>
		<link>http://talkweb.eu/openweb/1134</link>
		<comments>http://talkweb.eu/openweb/1134#comments</comments>
		<pubDate>Sun, 05 Feb 2012 13:10:55 +0000</pubDate>
		<dc:creator>Bogo</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://talkweb.eu/?p=1134</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><img title="" class="alignnone" alt="image" src="http://talkweb.eu/wp-content/uploads/2012/02/wpid-IMG074.jpg" /></p>
]]></content:encoded>
			<wfw:commentRss>http://talkweb.eu/openweb/1134/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Community session #fosdem and mozilla</title>
		<link>http://talkweb.eu/openweb/1131</link>
		<comments>http://talkweb.eu/openweb/1131#comments</comments>
		<pubDate>Sun, 05 Feb 2012 13:07:19 +0000</pubDate>
		<dc:creator>Bogo</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://talkweb.eu/?p=1131</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><img title="" class="alignnone" alt="image" src="http://talkweb.eu/wp-content/uploads/2012/02/wpid-IMG073.jpg" /></p>
]]></content:encoded>
			<wfw:commentRss>http://talkweb.eu/openweb/1131/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rust Language &#8211; Hello World</title>
		<link>http://talkweb.eu/openweb/1087</link>
		<comments>http://talkweb.eu/openweb/1087#comments</comments>
		<pubDate>Wed, 25 Jan 2012 09:05:55 +0000</pubDate>
		<dc:creator>Bogo</dc:creator>
				<category><![CDATA[Kindle]]></category>
		<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[Open Technologies]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://talkweb.eu/?p=1087</guid>
		<description><![CDATA[What is RUST? Rust is an experimental, concurrent, multi-paradigm, compiled programming language developed by Mozilla Labs. It is designed to be practical, supporting pure-functional, concurrent-actor, imperative-procedural, and object-oriented styles. /wikipedia/ How to install it on your Gnu/Linux box? Pre-requirements: g++ 4.4 or clang++ 3.x python 2.6 or later perl 5.0 or later gnu make 3.81 [...]]]></description>
			<content:encoded><![CDATA[<p>What is RUST?</p>
<p>Rust is an experimental, concurrent, multi-paradigm, compiled programming language developed by Mozilla Labs. It is designed to be practical, supporting pure-functional, concurrent-actor, imperative-procedural, and object-oriented styles. /wikipedia/ </p>
<p><strong>How to install it on your Gnu/Linux box?</strong><br />
Pre-requirements:</p>
<ul>
<li>g++ 4.4 or clang++ 3.x</li>
<li>python 2.6 or later</li>
<li>perl 5.0 or later</li>
<li>gnu make 3.81 or later</li>
<li>curl</li>
</ul>
<p><span id="more-1087"></span><br />
<strong>Download latest version</strong> (0.2 pre at the moment)</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">git clone https:<span style="color: #000000; font-weight: bold;">//</span>github.com<span style="color: #000000; font-weight: bold;">/</span>mozilla<span style="color: #000000; font-weight: bold;">/</span>rust.git</pre></div></div>

<p><strong>Make it</strong></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #007800;">$cd</span> rust
$.<span style="color: #000000; font-weight: bold;">/</span>configure
$ <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #000000; font-weight: bold;">&amp;</span> <span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #c20cb9; font-weight: bold;">install</span></pre></div></div>

<p>Note:</p>
<blockquote><p>It takes a lot of time and you do need an active internet connection during the compiling process.</p></blockquote>
<p><strong>Hack</strong><br />
Open your Geany or your favourite IDE and write this:</p>

<div class="wp_syntax"><div class="code"><pre class="c" style="font-family:monospace;">use std<span style="color: #339933;">;</span>
&nbsp;
fn hello_world<span style="color: #009900;">&#40;</span>name<span style="color: #339933;">:</span> str<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>  
	let greetings<span style="color: #339933;">:</span> str <span style="color: #339933;">=</span> <span style="color: #ff0000;">&quot;Hello World, &quot;</span><span style="color: #339933;">+</span> name <span style="color: #339933;">+</span><span style="color: #ff0000;">&quot;! and Здравей свят! and 您好，世界！&quot;</span><span style="color: #339933;">;</span>
	std<span style="color: #339933;">::</span><span style="color: #202020;">io</span><span style="color: #339933;">::</span><span style="color: #202020;">println</span><span style="color: #009900;">&#40;</span>greetings<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
&nbsp;
fn main<span style="color: #009900;">&#40;</span>args<span style="color: #339933;">:</span> <span style="color: #009900;">&#91;</span>str<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	hello_world<span style="color: #009900;">&#40;</span>args<span style="color: #009900;">&#91;</span><span style="color: #0000dd;">1</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<blockquote><p>Save it as helloworld.rs</p></blockquote>
<p><strong>Compile it</strong></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #007800;">$rustc</span> helloworld.rs</pre></div></div>

<p><strong>Execute</strong></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$.<span style="color: #000000; font-weight: bold;">/</span>helloworld.rs Bogo <span style="color: #000000; font-weight: bold;">//</span>put here your name</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://talkweb.eu/openweb/1087/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fosdem protocol for Mozilla Firefox (fosdem:about)</title>
		<link>http://talkweb.eu/openweb/1069</link>
		<comments>http://talkweb.eu/openweb/1069#comments</comments>
		<pubDate>Fri, 20 Jan 2012 13:40:50 +0000</pubDate>
		<dc:creator>Bogo</dc:creator>
				<category><![CDATA[FLOSS Events]]></category>
		<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[Open Technologies]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[add-on]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[fosdem]]></category>

		<guid isPermaLink="false">http://talkweb.eu/?p=1069</guid>
		<description><![CDATA[I just uploaded for approval an Add-on that defines FOSDEM protocol. What is FOSDEM? FOSDEM is a two-day event organized by volunteers to promote the widespread use of Free and Open Source software. Protocol? This Add-on: defines FOSDEM protocol  (see bellow) it&#8217;s showcase how to create your own protocol for Mozilla Firefox Supported commands: fosdem:about [...]]]></description>
			<content:encoded><![CDATA[<p>I just uploaded for approval an <a href="https://addons.mozilla.org/en-US/firefox/addon/fosdem-basic-protocol-handl/">Add-on that defines FOSDEM protocol</a>.</p>
<h1>What is FOSDEM?</h1>
<p>FOSDEM is a two-day event organized by volunteers to promote the widespread use of Free and Open Source software.</p>
<h1>Protocol?</h1>
<p>This Add-on:</p>
<ul>
<li>defines FOSDEM protocol  (see bellow)</li>
<li>it&#8217;s showcase how to <strong>create your own protocol</strong> for Mozilla Firefox</li>
</ul>
<h2>Supported commands:</h2>
<p><strong>fosdem:about</strong> &#8211; learn more about the event<br />
<strong>fosdem:venue</strong> &#8211; learn more about the venue and transportation<br />
<strong>fosdem:schedule</strong> &#8211; see the latest schedule<br />
<strong>fosdem:2003</strong> to <strong>fosdem:2011</strong> &#8211; see the archive<br />
<strong>fosdem:2012</strong> &#8211; see the info about the 2012 event</p>
<h2>Notice</h2>
<p>If you are fan of Fosdem and Firefox &#8211; <a href="https://addons.mozilla.org/en-US/firefox/addon/fosdem-basic-protocol-handl/">please install it </a>(click on the link) to have fun and to help me develop it more.</p>
<p>A special &#8220;Thank you&#8221; goes to <a href="http://mike.kaply.com/">Mike Kaply</a> and <a href="http://adblockplus.org/blog/">Wladimir Palant </a></p>
<p>See you at Fosdem in 2 weeks.</p>
]]></content:encoded>
			<wfw:commentRss>http://talkweb.eu/openweb/1069/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Always look on the bright side of life</title>
		<link>http://talkweb.eu/openweb/950</link>
		<comments>http://talkweb.eu/openweb/950#comments</comments>
		<pubDate>Mon, 19 Sep 2011 08:30:56 +0000</pubDate>
		<dc:creator>Bogo</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://talkweb.eu/?p=950</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><iframe width="560" height="315" src="http://www.youtube.com/embed/JrdEMERq8MA" frameborder="0" allowfullscreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://talkweb.eu/openweb/950/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>/away for a while</title>
		<link>http://talkweb.eu/openweb/890</link>
		<comments>http://talkweb.eu/openweb/890#comments</comments>
		<pubDate>Wed, 29 Jun 2011 06:57:52 +0000</pubDate>
		<dc:creator>Bogo</dc:creator>
				<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://talkweb.eu/?p=890</guid>
		<description><![CDATA[Since I am at this perfect location for couple of weeks and will have bandwidth only to do my daily job I will not be able to read all of my mails, but I will check shopov.bogomil -at- gmail.com if you want to drop me a line. I will be offline from IRC also.]]></description>
			<content:encoded><![CDATA[<p>Since <a href="http://iambogo.tumblr.com/post/7037975624/since-i-am-at-this-perfect-location-for-couple-of">I am at this perfect location for couple of weeks</a> and will have bandwidth only to do my daily job I will not be able to read all of my mails, but I will check shopov.bogomil -at- gmail.com if you want to drop me a line.</p>
<p>I will be offline from IRC also.</p>
]]></content:encoded>
			<wfw:commentRss>http://talkweb.eu/openweb/890/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Invitation to help us test Kontact on Windows</title>
		<link>http://talkweb.eu/openweb/687</link>
		<comments>http://talkweb.eu/openweb/687#comments</comments>
		<pubDate>Mon, 28 Mar 2011 20:15:29 +0000</pubDate>
		<dc:creator>Bogo</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://talkweb.eu/?p=687</guid>
		<description><![CDATA[We&#8217;ve started a cycle of Kontact on Windows packaging and stabilization which will allow everyone to get a taste of the Kolab client on Windows. The work on this is ongoing, but in the meantime it would be great to get some feedback to help us identify outstanding issues. And while these packages are not [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve started a cycle of Kontact on Windows packaging and stabilization which<br />
will allow everyone to get a taste of the Kolab client on Windows.</p>
<p>The work on this is ongoing, but in the meantime it would be great to get some<br />
feedback to help us identify outstanding issues. And while these packages are<br />
not intended for productive use, they may already prove useful to some.</p>
<p>The packages from the last cycle can be downloaded at</p>
<p><a href="http://files.kolab.org/local/windows/kolab-enterprise5/experimental/2011-03-09-12-58/">http://files.kolab.org/local/windows/kolab-enterprise5/experimental/2011-03-09-12-58/</a></p>
<p>And we&#8217;d appreciate feedback to our mailing-list: kolab-devel@kolab.org.</p>
]]></content:encoded>
			<wfw:commentRss>http://talkweb.eu/openweb/687/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Koseto</title>
		<link>http://talkweb.eu/openweb/686</link>
		<comments>http://talkweb.eu/openweb/686#comments</comments>
		<pubDate>Fri, 25 Mar 2011 16:44:03 +0000</pubDate>
		<dc:creator>Bogo</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://talkweb.eu/openweb/686</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'>
<div class='p_embed p_image_embed'> <a href="http://posterous.com/getfile/files.posterous.com/bogomep/qmCrahGmqubfyBgEJeBBygublzkgplGCsrAABkgsndzmqtbpJfzhCrhwHFxm/1755298164.jpg.scaled1000.jpg"><img alt="1755298164" height="375" src="http://posterous.com/getfile/files.posterous.com/bogomep/qmCrahGmqubfyBgEJeBBygublzkgplGCsrAABkgsndzmqtbpJfzhCrhwHFxm/1755298164.jpg.scaled500.jpg" width="500" /></a> </div>
</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://talkweb.eu/openweb/686/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Beer at park</title>
		<link>http://talkweb.eu/openweb/684</link>
		<comments>http://talkweb.eu/openweb/684#comments</comments>
		<pubDate>Thu, 24 Mar 2011 15:32:39 +0000</pubDate>
		<dc:creator>Bogo</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://talkweb.eu/openweb/684</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'>
<div class='p_embed p_image_embed'> <a href="http://posterous.com/getfile/files.posterous.com/bogomep/AFnveCaeyohkoyIndrcjuElaCCtfyrBzbFJuqohunndoAFbCmCioJflkBqnb/1526756452.jpg.scaled1000.jpg"><img alt="1526756452" height="375" src="http://posterous.com/getfile/files.posterous.com/bogomep/AFnveCaeyohkoyIndrcjuElaCCtfyrBzbFJuqohunndoAFbCmCioJflkBqnb/1526756452.jpg.scaled500.jpg" width="500" /></a> </div>
</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://talkweb.eu/openweb/684/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>First posterous post</title>
		<link>http://talkweb.eu/openweb/683</link>
		<comments>http://talkweb.eu/openweb/683#comments</comments>
		<pubDate>Thu, 24 Mar 2011 09:02:08 +0000</pubDate>
		<dc:creator>Bogo</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://talkweb.eu/openweb/683</guid>
		<description><![CDATA[Cool]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'>
<div class='p_embed p_image_embed'> <a href="http://posterous.com/getfile/files.posterous.com/bogomep/AcdzgHnIJdlBqarlayhxABCwnpmHylnFJdfjauGyjzuqDJbfhukmpkEvpGnB/-1012781683.jpg.scaled1000.jpg"><img alt="-1012781683" height="375" src="http://posterous.com/getfile/files.posterous.com/bogomep/AcdzgHnIJdlBqarlayhxABCwnpmHylnFJdfjauGyjzuqDJbfhukmpkEvpGnB/-1012781683.jpg.scaled500.jpg" width="500" /></a> </div>
</p>
<p>Cool</p></div>
]]></content:encoded>
			<wfw:commentRss>http://talkweb.eu/openweb/683/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Who creates the Bulgarian web?</title>
		<link>http://talkweb.eu/openweb/668</link>
		<comments>http://talkweb.eu/openweb/668#comments</comments>
		<pubDate>Mon, 21 Mar 2011 08:54:22 +0000</pubDate>
		<dc:creator>Bogo</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://talkweb.eu/?p=668</guid>
		<description><![CDATA[Years ago the answer to this question inevitably would have been “The web companies”; the companies, which first launched websites, made them popular and attracted many users; the ones, which developed the Bulgarian web through many new portals, services, discounts, advertisements, and so on and so forth. If you ask them now – “Who makes [...]]]></description>
			<content:encoded><![CDATA[<p>Years ago the answer to this question inevitably would have been “The  web companies”; the companies, which first launched websites, made them  popular and attracted many users; the ones, which developed the  Bulgarian web through many new portals, services, discounts,  advertisements, and so on and so forth. If you ask them now – “Who makes the Bulgarian web?” they would answer  “We do”; if we ask the people on the streets, they would probably answer  the same: “They do”.</p>
<p>But that’s not true. You, creating and sharing content every day,  commenting, writing, blogging, uploading pictures and video, publishing  articles in Wikipedia and anywhere else, YOU create the Bulgarian web,  not the companies, remember that! Things are changing at a breakneck  speed and while years ago the web companies created the web, now they  are just a small part of the whole cloud of everyone, included in the  task and taking part in it, willing or not. The web-evolution started a long time ago and YOU are a part of it. YOU  CREATE THE BULGARIAN WEB.</p>
<p>I believe that’s the spirit for a Firefox birthday party; it must  clarify and teach, not just to gather people, who know what Firefox is  to drink beer and talk loudly. That’s why we launched a campaign to make this happen. From October 14th  until November 9th the Mozilla Bulgaria Team will present about 6  lectures in different places around the country, telling of the open  web, our freedom, the personal space of each of us and the way we can  protect it in the Internet. We will be discussing open standards,  explaining what Firefox is and why we should celebrate on November 9th  not only an anniversary, but something bigger: <strong>the realized notion that web – this is you.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://talkweb.eu/openweb/668/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>food and beer at fosdem bar 2</title>
		<link>http://talkweb.eu/openweb/611</link>
		<comments>http://talkweb.eu/openweb/611#comments</comments>
		<pubDate>Sat, 05 Feb 2011 10:59:01 +0000</pubDate>
		<dc:creator>Bogo</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://talkweb.eu/openweb/611</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="http://talkweb.eu/wp-content/uploads/2011/02/05022011205.jpg"><img class="alignnone size-full wp-image-6" src="http://talkweb.eu/wp-content/uploads/2011/02/05022011205.jpg" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://talkweb.eu/openweb/611/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

