<?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>AmmarkoV  `s  Personal Website &#187; News</title>
	<atom:link href="http://ammar.gr/?feed=rss2&#038;tag=news" rel="self" type="application/rss+xml" />
	<link>http://ammar.gr</link>
	<description>I would love to change the world , but they won`t give me the source code</description>
	<lastBuildDate>Thu, 25 Oct 2012 11:53:41 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.2</generator>
		<item>
		<title>A difficult bug to trace..!</title>
		<link>http://ammar.gr/?p=421</link>
		<comments>http://ammar.gr/?p=421#comments</comments>
		<pubDate>Mon, 18 Jun 2012 20:19:16 +0000</pubDate>
		<dc:creator>Ammar Qammaz</dc:creator>
				<category><![CDATA[Post]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[RemoteVariables]]></category>

		<guid isPermaLink="false">http://ammar.gr/?p=421</guid>
		<description><![CDATA[During the last 2 weeks some major things happened in Greece including the second round of elections etc. I spent most of the time stuck and trying to trace a bug in RemoteVariables ( which I am currently developing ).. For testing the under construction library I wrote a test suite which performed 100 variable [...]]]></description>
			<content:encoded><![CDATA[<p>During the last 2 weeks some major things happened in Greece including the second round of elections etc.<br />
I spent most of the time stuck and trying to trace a bug in <a href="https://github.com/AmmarkoV/RemoteVariable">RemoteVariables</a> ( which I am currently developing )..</p>
<p>For testing the under construction library I wrote a test suite which performed 100 variable changes from peer to peer and finally exited when all of the handshakes where complete..<br />
The test suite was then debugged using valgrind and standard gdb and despite some early mixups and architecture problems that were very evident with the debugger output after they were gradually fixed some very strange behaviour ensued as the test suite would &#8220;randomly&#8221; stop at some point and the program &#8220;seemed&#8221; to stop acknowledging and transmitting changes on the variables without an apparent reason..</p>
<p>Adding to the complexity of identifying the problem was the fact that a total of 6 threads spanning in two procedures could potentially cause a deadlock somewhere ( despite the mutex protection ) .. </p>
<p>After 5 or 6 days of trying to fix the problem I started to get desperate going line by line and almost rewriting all the critical segments until I figured it out..</p>
<p>The problematic code was the following :<br />
<code><br />
unsigned long GetVariableHash(struct VariableShare * vsh,void * ptr,unsigned int size_of_ptr)<br />
{<br />
if (size_of_ptr<sizeof(unsigned long)) { //unsigned long so no hash is required<br />
                                         unsigned long * stacklongptr = ptr;<br />
                                         unsigned long stacklong = *stacklongptr;<br />
                                         return stacklong;<br />
                                       }else<br />
                                       {<br />
                                         return rvhash(ptr,size_of_ptr);<br />
                                       }<br />
return 0;<br />
}<br />
</code></p>
<p>Each pointer (void * ptr) points to a memory block of variable size (unsigned int size_of_ptr ) and the hash values get stored on an unsigned long ..<br />
All is good for variables that are longer than an unsigned long since they are casted to a char * "string" and then a hash function converts them to a reasonably unique  unsigned long.. But .. for smaller sizes of pointers such as unsigned ints my code directly casted the 4byte payload of the pointer to the 8byte accomodation of the unsigned long leaving 4 bytes uninitialized..</p>
<p>What was very funny was that in all the fprintf(stderr,"hash %u",(unsigned int) hash); calls I had added to review the function the results appeared completely normal but when two hashes where compared they failed the equal if operation even if they seemed to carry the same value when fprintf'ed </p>
<p>To better illustrate a simplified version , what I saw was an instance of</p>
<p><code>fprintf(stderr,"old hash %u , new hash %u\n",(unsigned int) oldhash,(unsigned int) newhash);<br />
if (oldhash==newhash) { fprintf(stderr,"They are the same\n"); } else<br />
                      { fprintf(stderr,"They are not the same\n"); } </p>
<p> </code></p>
<p>where I got output like :<br />
old hash 5 , new hash 5<br />
They are not the same</p>
<p>Needless to say valgrind ( which is a great tool and this wasnt its fault <img src='http://ammar.gr/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  )  has an initialization check that did not report the unitialized bytes , the possible problem of unitialized bytes didnt even cross my mind while hastly writting the function @ 3 AM 2 years ago ( <a href="https://github.com/AmmarkoV/RemoteVariable/commit/05aafff60a9ba88f5c81d160fb5050d344740df8">the problematic commit</a> ) and 2 weeks of my life were "kind of" thrown away ..</p>
<p>It is true that you can sometimes shoot yourself in the foot when using tools that give you this kind of freedom , and this might be just such a case , but I frankly found it enlighting..<br />
C is an awesome language!     </p>
<p><a href="https://github.com/AmmarkoV/RemoteVariable/commit/01451c105350353943b2f675d5991f43cf47d06b">The fix commit</a> </p>
]]></content:encoded>
			<wfw:commentRss>http://ammar.gr/?feed=rss2&#038;p=421</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Greek Software companies cont..</title>
		<link>http://ammar.gr/?p=362</link>
		<comments>http://ammar.gr/?p=362#comments</comments>
		<pubDate>Wed, 11 Apr 2012 17:50:20 +0000</pubDate>
		<dc:creator>Ammar Qammaz</dc:creator>
				<category><![CDATA[Post]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Thoughts]]></category>

		<guid isPermaLink="false">http://ammar.gr/?p=362</guid>
		<description><![CDATA[Some news articles on the subject , the general outlook of Greek technology companies for 2011-2012 was &#8220;bad&#8217; with few exceptions http://www.kathimerini.gr/4dcgi/_w_articles_kathremote_1_29/03/2012_435325 http://www.kerdos.gr/default.aspx?id=1707043&#038;nt=103 http://www.euro2day.gr/news/market/123/articles/690675/Article.aspx]]></description>
			<content:encoded><![CDATA[<p>Some news articles on the subject , the general outlook of Greek technology companies for 2011-2012 was &#8220;bad&#8217; with few exceptions   </p>
<p><a href="http://www.kathimerini.gr/4dcgi/_w_articles_kathremote_1_29/03/2012_435325"></p>
<p>http://www.kathimerini.gr/4dcgi/_w_articles_kathremote_1_29/03/2012_435325</a></p>
<p><a href="http://www.kerdos.gr/default.aspx?id=1707043&#038;nt=103">http://www.kerdos.gr/default.aspx?id=1707043&#038;nt=103</a></p>
<p><a href="http://www.euro2day.gr/news/market/123/articles/690675/Article.aspx">http://www.euro2day.gr/news/market/123/articles/690675/Article.aspx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://ammar.gr/?feed=rss2&#038;p=362</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Analyzing.. Greek Software Companies!</title>
		<link>http://ammar.gr/?p=344</link>
		<comments>http://ammar.gr/?p=344#comments</comments>
		<pubDate>Wed, 28 Mar 2012 00:02:52 +0000</pubDate>
		<dc:creator>Ammar Qammaz</dc:creator>
				<category><![CDATA[Post]]></category>
		<category><![CDATA[Experiments]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Thoughts]]></category>

		<guid isPermaLink="false">http://ammar.gr/?p=344</guid>
		<description><![CDATA[The past week I started conducting a survey about Greek Software companies! Suffice to say , it is not over yet but I have reached some preliminary conclusions about the current situation..! Parts of the results , so far : -A trendy ( ) company name generation tool for a potential new software company -A [...]]]></description>
			<content:encoded><![CDATA[<p>The past week I started conducting a survey about Greek Software companies!<br />
Suffice to say , it is not over yet but I have reached some preliminary conclusions about the current situation..!</p>
<p>Parts of the results , so far :</p>
<p>-A <a href="http://ammar.gr/~ammar/Scripts/cliche_company_name.php">trendy ( <img src='http://ammar.gr/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  ) company name generation tool</a> for a potential new software company  </p>
<p>-A <a href="http://ammar.gr/~ammar/DataSets/GreekITSurvey2012Q1/report.html">list of the 267 &#8220;best&#8221; greek companies</a> ( their websites ) , along with what each of them has to offer as a service  ( generated using <a href="https://github.com/AmmarkoV/WebSniper">WebSniper</a> ) </p>
<p>-The realization that 3 ERP/CRM product families , namely SAP , SoftOne and Singular Galaxy are basically dominating the market and many smaller companies just use them instead of developing an in house solution ( which makes sense ).<br />
The fact that software solutions are VERY expensive (for example <a href="http://www.sap.com/greece/solutions/smb/allinone/index.epx">SAP offers a ERP/CRM  &#8220;entry-level&#8221; package for 41.000 euro</a> ) and all of the other popular solutions have similar pricing with large profit margins. These large profit margins might also explain why almost all of the major companies are Microsoft partners ( this of course is bad for them and their clients ,but on the other hand what difference do 100 euro annually  make in a 41000 euro transaction  )</p>
<p>An opensource ERP/CRM program would really be a killer app ,and from a small search there seems to be one which is called <a href="http://www.opentaps.org/">openTAPS</a> and another one which is called <a href="http://www.openerp.com/">OpenERP</a> , both licensed with <a href="http://en.wikipedia.org/wiki/Affero_General_Public_License">AGPL</a> I wonder what the impact will be when these projects along with OpenCart and others will be &#8220;discovered&#8221; in Greece! <img src='http://ammar.gr/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Beetech is the &#8220;only?&#8221; company offering OpenERP right now..</p>
<p>-Despite the many Microsoft Gold partners etc. , <a href="http://en.wikipedia.org/wiki/Microsoft_CRM">Microsoft Dynamics CRM</a> was only <a href="http://www.sunsoft.gr/">offered by one vendor</a>  </p>
<p>-From what I&#8217;ve searched there doesn&#8217;t seem to be a big piracy problem with Greek software ( In contrast to SAP for example )</p>
<p>-Most of the products sold , offer different versions of the product with arbitrary limits to be able to appeal to every possible client purchasing power. While I find this reasonable when you  let&#8217;s say buy a house with or without a pool  ( which implies many man-hours to build the thing ) , on software flipping a variable according to a license key for the same binaries , seems like a shitty thing to do.<br />
If someone built me a house with a pool and then because I didn&#8217;t pay them for the &#8220;Deluxe house packet&#8221; covered it with concrete , it would be crazy.. <img src='http://ammar.gr/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>-Android/Mobile development seems to be pretty popular..!</p>
<p>-E-Goverment projects also seem to be very popular..!</p>
<p>-There seems to be a big demand for SMS gateways , Radio programs , Video Club management programs. I guess in a few years ( i.e. when netflix comes to Greece <img src='http://ammar.gr/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  ) these will gradually die out..</p>
<p>-The <a href="http://www.capital.gr/xa/quotes_table.asp?sector=9500">stock price for most of the technology companies</a> that are in the stock market is very cheap , but very few of them have a good prospect in my opinion..  Most of the really big companies are dinosaurs , and sooner or later their clients will find a cheaper and more agile alternative..  </p>
<p>-There are , of course , many more companies which focus on websites / hosting / e-communities / advertising etc. BUT this list mainly focuses on business programs/software ( websites are software , I know , but not the kind of software I am discussing here.. ) </p>
]]></content:encoded>
			<wfw:commentRss>http://ammar.gr/?feed=rss2&#038;p=344</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Internet Privacy and website tracking</title>
		<link>http://ammar.gr/?p=320</link>
		<comments>http://ammar.gr/?p=320#comments</comments>
		<pubDate>Wed, 29 Feb 2012 11:18:14 +0000</pubDate>
		<dc:creator>Ammar Qammaz</dc:creator>
				<category><![CDATA[Post]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Thoughts]]></category>

		<guid isPermaLink="false">http://ammar.gr/?p=320</guid>
		<description><![CDATA[Mozilla foundation just released a tool called collusion.. It makes a map of the sites that report and track information about your internet whereabouts..! I have made a small map of the sites that I frequently use and the interconnections are astonishing.! The major &#8220;spy entities&#8221; on the graph are Google and Facebook , something [...]]]></description>
			<content:encoded><![CDATA[<p>Mozilla foundation just released a tool called <a href="http://www.mozilla.org/en-US/collusion/demo/">collusion</a>..<br />
It makes a map of the sites that report and track information about your internet whereabouts..!</p>
<p>I have made a small map of the sites that I frequently use and the interconnections are astonishing.! The major &#8220;spy entities&#8221; on the graph are Google and Facebook , something that comes as no surprise <img src='http://ammar.gr/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  . An also disturbing fact is that adult themed sites report your &#8220;preferences&#8221; to google so I can only imagine what kind of details a google account must have logged on about you , and all of this in an effort to show you the most targeted commercials possible!<br />
I strongly recommend using this tool just to get a glimpse of the privacy problems that arise..! </p>
<p>Even my website where I have made an effort not to use google analytics or adwords or any other framework that may track visitors , the youtube embeds ( of documentaries and etc ) on my pages give away clues about where the visitor was. The only way to combat this I guess is to host everything on my server but due to the cost of this ( bandwidth )  it is impossible..!   </p>
<p><a href="http://ammar.gr/wp-content/uploads/2012/02/collusion_screenshot.png"><img src="http://ammar.gr/wp-content/uploads/2012/02/collusion_screenshot-300x270.png" alt="" title="collusion_screenshot" width="300" height="270" class="alignnone size-medium wp-image-321" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://ammar.gr/?feed=rss2&#038;p=320</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Anti ACTA protest in Athens in 11/2/2012</title>
		<link>http://ammar.gr/?p=311</link>
		<comments>http://ammar.gr/?p=311#comments</comments>
		<pubDate>Thu, 09 Feb 2012 20:17:17 +0000</pubDate>
		<dc:creator>Ammar Qammaz</dc:creator>
				<category><![CDATA[Post]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://ammar.gr/?p=311</guid>
		<description><![CDATA[The free and open source group of AUEB ( and me along with it xD ) will join the worldwide protest against ACTA , this Saturday 11/Feb. The gathering in Athens will take place in Syntagma square at 17:00 Because of the recent economic developments concerning Greece the ACTA treaty is a topic which has [...]]]></description>
			<content:encoded><![CDATA[<p>
<iframe class="youtube-player" type="text/html" width="640" height="385" src="http://www.youtube.com/embed/63JyXmu0fqM" frameborder="0"><br />
</iframe>  </p>
<p><iframe class="youtube-player" type="text/html" width="640" height="385" src="http://www.youtube.com/embed/dL-et0CZEjs" frameborder="0"><br />
</iframe> </p>
<p><iframe class="youtube-player" type="text/html" width="640" height="385" src="http://www.youtube.com/embed/G5Tbp46zpxs" frameborder="0"><br />
</iframe> </p>
<p><img src="http://ammar.gr/wp-content/uploads/2012/02/acta-protest-300x180.jpg" alt="" title="acta-protest" width="300" height="180" class="alignnone size-medium wp-image-312" /> </p>
<p>The <a href="http://foss.aueb.gr/">free and open source group of AUEB</a> ( and me along with it xD ) will join the worldwide protest against ACTA , this Saturday 11/Feb.<br />
The <a href="http://www.techgear.gr/acta-protest-on-february-11-38459/">gathering</a> in Athens will take place in Syntagma square at 17:00 </p>
<p>Because of the recent economic developments concerning Greece the ACTA treaty is a topic which has received little if no coverage from the Greek Media.</p>
<p>The <a href="http://wiki.hellug.gr/index.php/ACTA">HELLUG</a> and the <a href="http://www.pirateparty.gr/2012/02/11-feb-acta/">Greek pirate party</a> will also participate , so we will be an interesting bunch.. <img src='http://ammar.gr/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://share.autoverse.net/acta-crc_apr15-2011_gr.pdf"><br />
The ACTA agreement in Greek</a></p>
<p><a href="http://register.consilium.europa.eu/pdf/en/11/st12/st12196.en11.pdf"><br />
The ACTA agreement in English</a></p>
]]></content:encoded>
			<wfw:commentRss>http://ammar.gr/?feed=rss2&#038;p=311</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Greek Pirate Party! :)</title>
		<link>http://ammar.gr/?p=260</link>
		<comments>http://ammar.gr/?p=260#comments</comments>
		<pubDate>Tue, 03 Jan 2012 17:08:26 +0000</pubDate>
		<dc:creator>Ammar Qammaz</dc:creator>
				<category><![CDATA[Post]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://ammar.gr/?p=260</guid>
		<description><![CDATA[I was very happy to learn about a new political movement called , the Greek Pirate party.. It is the only ( as far as I know ) political entity with these kind of agendas in Greece. The political parties that historically passed laws in Greece where so technologically illiterate that they banned all electronic [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.pirateparty.gr/"><img src="http://ammar.gr/wp-content/uploads/2012/01/pirate_party_greece.png" alt="" title="pirate_party_greece" width="560" height="123" class="alignnone size-full wp-image-261" /></a></p>
<p>I was very happy to learn about a new political movement called , the Greek Pirate party..<br />
It is the only ( as far as I know ) political entity with these kind of agendas in Greece. The political parties that historically passed laws in Greece where so technologically illiterate that they banned all electronic games ( <a href="http://news.cnet.com/2100-1040-956357.html">http://news.cnet.com/2100-1040-956357.html</a> ) &#8220;by accident&#8221; a few years ago to combat online gambling.</p>
<p>This country needs educated representatives on issues of the digital age , and although I know that most of the older generation voters are &#8220;programmed&#8221; to vote what their family voted for , gradually I hope for some decent representation on the Greek parliament.! </p>
<p><a href="http://www.pirateparty.gr/">http://www.pirateparty.gr/</a></p>
<p><a href="http://www.youtube.com/watch?v=zykafTuIMKo">Typical Greek Voter </a> , I believe that these people cant even begin to understand what a pirate party stands for..! </p>
<p><a href="http://www.youtube.com/watch?v=Uqjj9i-_ths">Typical Greek Politician </a> saying in parliament that if the greek national power company stops working that all the computers in the country will lose all their data.. <img src='http://ammar.gr/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://ammar.gr/?feed=rss2&#038;p=260</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>September and October 2011</title>
		<link>http://ammar.gr/?p=163</link>
		<comments>http://ammar.gr/?p=163#comments</comments>
		<pubDate>Thu, 13 Oct 2011 22:56:34 +0000</pubDate>
		<dc:creator>Ammar Qammaz</dc:creator>
				<category><![CDATA[Post]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Thoughts]]></category>

		<guid isPermaLink="false">http://ammar.gr/?p=163</guid>
		<description><![CDATA[Well , things aren`t going very well in Greece.. Stocks are falling , strikes and riots everyday and a general anxiety and disappointment about where this country is heading. Although I can`t say I belong to a social class directly pressured (yet) by the economic meltdown happening all around ( and if I did I [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://ammarkov1.deviantart.com/gallery/?offset=48#/d2z95xd"><img src="http://ammar.gr/wp-content/uploads/2011/10/2000_years_later___by_ammarkov1-d2z95xd-300x225.jpg" alt="" title="2000 Years later" width="300" height="225" class="alignnone size-medium wp-image-165" /></a></p>
<p>Well , things aren`t going very well in Greece..<br />
Stocks are falling , strikes and riots everyday and a general anxiety and disappointment about where this country is heading. Although I can`t say I belong to a social class directly pressured (yet) by the economic meltdown happening all around ( and if I did I would probably not blog about it ) it is sad to see the pessimism diffused everywhere and especially in everyone aged 23-28 , a generation that has just now reached the point to enter the working force after finishing with the educational cycle of life.<br />
Even if there is unemployment and even if we are the 600euro generation ( a term coined up by Greek media , as it is the average post-reductions monthly wage for most junior positions at Greek companies ) I cant stop but think that I am lucky to be part of it.<br />
People have always had problems and always were tormented , in the past , in the present and will probably continue to do so in the future. But it just isn`t possible for past &#8220;primitive&#8221; societies to be able to produce men like Plato , Fermat , DaVinci , Kant, Nietzsche and at this day and age with all the wonderful possibilities opened with tools such as the internet to see the public acting so foolishly panicked and such a lack of leadership from the Greek financial and political leaders.<br />
It is this attitude that produces the biggest part of the crisis as members of the Greek community dont trust each other , and don`t even trust themselves.<br />
And its a natural consequence that when people fail to stand up to a crisis as units they will also fail as a group.    </p>
<p>This is my first real post , apart for blogs about technical details of work I&#8217;ve done and I don`t want to babble a lot.</p>
<p>In a few words I wish that people would realize the possibilities laid before them and grab life by the throat instead of passively whine about it and blame everyone else.  </p>
<p>I guess it is a gift most people lack, to be able to see possibility where most people don`t..</p>
]]></content:encoded>
			<wfw:commentRss>http://ammar.gr/?feed=rss2&#038;p=163</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Update : 76th Thessaloniki Internation Fair</title>
		<link>http://ammar.gr/?p=140</link>
		<comments>http://ammar.gr/?p=140#comments</comments>
		<pubDate>Thu, 15 Sep 2011 09:46:38 +0000</pubDate>
		<dc:creator>Ammar Qammaz</dc:creator>
				<category><![CDATA[Post]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://ammar.gr/?p=140</guid>
		<description><![CDATA[The exhibition has been a great success until now , with lots of people visiting the stands and big media coverage .. The link to the guarddog project is http://ammar.gr/gddg for anyone visiting the page after he saw guarddog on the TIF.. Some Greek shows which featured us , live on air.. GuarddoG @ Robotics [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.helexpo.gr/default.aspx?lang=en-US&#038;loc=1&#038;page=2065"><img src="http://ammar.gr/~ammar/guard_dog_project/blogs/media/blogs/a/76thTIF.jpg" alt="" /></a><br />
<strong>The exhibition has been a great success until now , with lots of people visiting the stands and big media coverage ..<br />
The <a href="http://ammar.gr/gddg">link to the guarddog project is http://ammar.gr/gddg</a> for anyone visiting the page after he saw guarddog on the TIF..</strong></p>
<p><a href="http://ammar.gr/gddg" title="GuarddoG Robot Project" target="_blank"><img src="http://ammar.gr/wp-content/uploads/2010/10/guarddog_and_me-300x225.jpg"></a><a href="http://ammar.gr/gddg" title="GuarddoG Robot Project" target="_blank"><img src="http://ammar.gr/wp-content/uploads/2010/10/gddg_site-300x254.jpg"></a>  </p>
<p><a href="http://ammar.gr/wp-content/uploads/2011/09/DSC_9036.resized.jpg"><img src="http://ammar.gr/wp-content/uploads/2011/09/DSC_9036.resized-300x198.jpg" alt="Interviews" title="Interviews" width="300" height="198" class="alignnone size-medium wp-image-146" /></a><a href="http://ammar.gr/wp-content/uploads/2011/09/DSC_9307.resized.jpg"><img src="http://ammar.gr/wp-content/uploads/2011/09/DSC_9307.resized-300x198.jpg" alt="" title="Repairing a broken wheel :)" width="300" height="198" class="alignnone size-medium wp-image-148" /></a></p>
<p>Some Greek shows which featured us , live on air..<br />
<a href='http://www.youtube.com/watch?v=S4b63FDhNYA' >GuarddoG @ Robotics Exhibition &#8211; 76η ΔΕΘ 13-9-2011 , Ant1 Ellate</a><br />
<a href='http://www.youtube.com/watch?v=UpHViQt_DMc' >GuarddoG @ Robotics Exhibition &#8211; 76η ΔΕΘ 13-9-2011 , SKAI τώρα</a><br />
<a href='http://www.youtube.com/watch?v=hplM_WPd3zg' >GuarddoG @ Robotics Exhibition &#8211; 76η ΔΕΘ 13-9-2011 , Alpha Ειδήσεις </a></p>
]]></content:encoded>
			<wfw:commentRss>http://ammar.gr/?feed=rss2&#038;p=140</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>76th Thessaloniki Internation Fair</title>
		<link>http://ammar.gr/?p=135</link>
		<comments>http://ammar.gr/?p=135#comments</comments>
		<pubDate>Thu, 08 Sep 2011 11:02:11 +0000</pubDate>
		<dc:creator>Ammar Qammaz</dc:creator>
				<category><![CDATA[Post]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://ammar.gr/?p=135</guid>
		<description><![CDATA[The GuarddoG project will be part of the 76th International Fair of Thessaloniki , at the Innovation and Inventions event.. IFT is the largest international exhibition in the country , so this is very important , and although the new cameras are not installed and the chassis is looking , well kind of ragged , [...]]]></description>
			<content:encoded><![CDATA[<p><a href=" http://www.helexpo.gr/default.aspx?lang=en-US&#038;loc=1&#038;page=2065 "><img src="http://ammar.gr/~ammar/guard_dog_project/blogs/media/blogs/a/76thTIF.jpg" alt="76th International Fair of Thessaloniki" /></a></p>
<p>The <a href="http://ammar.gr/gddg" title="GuarddoG Robot Project" target="_blank">GuarddoG project</a> will be part of the 76th International Fair of Thessaloniki , at the Innovation and Inventions event..</p>
<p>IFT is the largest international exhibition in the country , so this is very important , and although the new cameras are not installed and the chassis is looking , well kind of ragged <img src='http://ammar.gr/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  , I still hope to give a good show <img src='http://ammar.gr/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  …</p>
<p><a href="http://www.helexpo.gr/default.aspx?lang=en-US&#038;loc=1&#038;page=2065 " target="_blank">http://www.helexpo.gr/default.aspx?lang=en-US&#038;loc=1&#038;page=2065 </a></p>
]]></content:encoded>
			<wfw:commentRss>http://ammar.gr/?feed=rss2&#038;p=135</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
