<?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>HBY Consultancy</title> <atom:link href="http://www.hbyconsultancy.com/feed" rel="self" type="application/rss+xml" /><link>http://www.hbyconsultancy.com</link> <description>Energy Engineer, Entrepreneur, ICT &#38; eGov Consultant.</description> <lastBuildDate>Wed, 10 Apr 2013 07:27:00 +0000</lastBuildDate> <language>en-US</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.5.1</generator> <item><title>MySQL RAND for social media</title><link>http://www.hbyconsultancy.com/blog/mysql-rand-for-social-media.html</link> <comments>http://www.hbyconsultancy.com/blog/mysql-rand-for-social-media.html#comments</comments> <pubDate>Wed, 10 Apr 2013 07:27:00 +0000</pubDate> <dc:creator>Hatem Ben Yacoub</dc:creator> <category><![CDATA[Blog]]></category> <guid
isPermaLink="false">http://www.hbyconsultancy.com/?p=1850</guid> <description><![CDATA[I don&#8217;t usually recommend auto-posting in social media however some applications require this behavior, and there should be an ethical way of doing this. CaptchaFailures is my new security startup, even if its concept may looks complex to some of you, the idea behind it is pretty simple. In this post I won&#8217;t introduce CaptchaFailures [...]<div
class='yarpp-related-rss'> Related posts:<ol><li><a
href='http://www.hbyconsultancy.com/blog/create-a-master-master-mysql-replication-ubuntu-server-10-04-x64.html' rel='bookmark' title='Create a Master Master MySQL replication &#8211; Ubuntu Server 10.04 x64'>Create a Master Master MySQL replication &#8211; Ubuntu Server 10.04 x64</a></li><li><a
href='http://www.hbyconsultancy.com/blog/new-home.html' rel='bookmark' title='New Home'>New Home</a></li></ol></div> ]]></description> <content:encoded><![CDATA[<p>I don&#8217;t usually recommend auto-posting in social media however some applications require this behavior, and there should be an ethical way of doing this. <a
href="http://captchafailures.com/">CaptchaFailures</a> is my new security startup, even if its concept may looks complex to some of you, the idea behind it is pretty simple. In this post I won&#8217;t introduce CaptchaFailures features, or business model (I&#8217;ll keep it for another round), however just wanted to share a tips for mysql usage with auto-tweeting.</p><p><img
src="http://www.hbyconsultancy.com/wp-content/uploads/2013/04/me-232x300.jpg" alt="me" width="232" height="300" class="alignnone size-medium wp-image-1852" /></p><p><a
href="https://twitter.com/captchafailure">@CaptchaFailure</a> official twitter account is connected to a database of pre-configured tweets, and tweeting randomly every hour or so. The idea is pretty simple, a table of tweets :</p><p><code>--<br
/> -- Table structure for table `tweets`<br
/> --<br
/> CREATE TABLE IF NOT EXISTS `tweets` (<br
/> `id` bigint(21) NOT NULL AUTO_INCREMENT,<br
/> `tweet` varchar(150) NOT NULL,<br
/> `status` tinyint(1) NOT NULL DEFAULT '0',<br
/> PRIMARY KEY (`id`),<br
/> KEY `id` (`id`)<br
/> ) ENGINE=MyISAM;</code></p><p>A Cron job that select random tweet and share it to the world :</p><p><code>Select tweet from tweets order by RAND() Limit 0,1;</code></p><p>Now in addition to the &#8220;id, tweet&#8221;, you noticed that I have added a status field which will be incremented every time the message is tweeted. And to make the behavior not annoying to followers, I had to tweak this to keep tweets during the whole day, but in the same time not repeating myself !</p><p>So a quick check in the database I noticed these status values : 0,2,4,2,2,0,0,1,0,1&#8230;</p><p>Which means that some tweets have been shared 4 times and more, while others have not been tweeted at all. Let&#8217;s check this on database :</p><p><code>SELECT STATUS FROM  `tweets` ORDER BY RAND( ) </code></p><p>Refresh the results few times :</p><p><code><br
/> 2,3,0,0,1,0...<br
/> 2,0,0,0,0,0...<br
/> 0,0,1,3,0,2...<br
/> 1,1,0,0,1,1...<br
/> </code></p><p>So you can notice that selecting randomly a tweet that have not being broadcasted before is not very common in this quick test. To tweak this you should order by status equal zero first, then randomize. Which will give something like :</p><p><code>SELECT id,STATUS FROM `tweets` ORDER BY status ASC,RAND()</code></p><p>Refresh the results few times again :</p><p><code><br
/> (23,0),(57,0),(40,0),(31,0)...<br
/> (28,0),(56,0),(22,0),(44,0),...<br
/> (100,0),(2,0),(33,0),(43,0),...<br
/> </code></p><p>Now you notice that all status values are zeros, the non zeros values will be in the end, so in case I will add a limit the select will always give me a status zero !</p><p>That&#8217;s it, and don&#8217;t forget to follow <a
href="https://twitter.com/captchafailure">@CaptchaFailure</a> on twitter and <a
href="https://www.facebook.com/pages/Captcha-Failures/499194523463889">Facebook</a> also</p><div
class='yarpp-related-rss'><p>Related posts:<ol><li><a
href='http://www.hbyconsultancy.com/blog/create-a-master-master-mysql-replication-ubuntu-server-10-04-x64.html' rel='bookmark' title='Create a Master Master MySQL replication &#8211; Ubuntu Server 10.04 x64'>Create a Master Master MySQL replication &#8211; Ubuntu Server 10.04 x64</a></li><li><a
href='http://www.hbyconsultancy.com/blog/new-home.html' rel='bookmark' title='New Home'>New Home</a></li></ol></p></div> ]]></content:encoded> <wfw:commentRss>http://www.hbyconsultancy.com/blog/mysql-rand-for-social-media.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Fakeproc, Your account has been Hacked !</title><link>http://www.hbyconsultancy.com/blog/fakeproc-your-server-has-been-hacked.html</link> <comments>http://www.hbyconsultancy.com/blog/fakeproc-your-server-has-been-hacked.html#comments</comments> <pubDate>Tue, 19 Mar 2013 21:20:59 +0000</pubDate> <dc:creator>Hatem Ben Yacoub</dc:creator> <category><![CDATA[Blog]]></category> <category><![CDATA[fakeproc]]></category> <category><![CDATA[Linux]]></category> <category><![CDATA[perl]]></category> <category><![CDATA[security]]></category> <guid
isPermaLink="false">http://www.hbyconsultancy.com/?p=699</guid> <description><![CDATA[In less than a month, after migrating to a new server, one of my accounts have been compromised ! The problem that the server goes online with a default configuration, that I wasn&#8217;t expecting that dangerous ! And the time to configure it correctly was so long, as it was under attack from day Zero [...]<div
class='yarpp-related-rss yarpp-related-none'> No related posts.</div> ]]></description> <content:encoded><![CDATA[<p>In less than a month, after migrating to a new server, one of my accounts have been compromised ! The problem that the server goes online with a default configuration, that I wasn&#8217;t expecting that dangerous ! And the time to configure it correctly was so long, as it was under attack from day Zero !! Amazing !!</p><p>Now problems began with a <strong>high CPU usage of a strange perl script</strong> :</p><p><code>top - 11:52:49 up 7 days, 7:44, 1 user, load average: 24.32, 32.21, 43.65<br
/> Tasks: 191 total, 33 running, 158 sleeping, 0 stopped, 0 zombie<br
/> Cpu(s): 67.2%us, 30.3%sy, 0.0%ni, 0.0%id, 0.0%wa, 0.0%hi, 2.5%si, 0.0%st<br
/> Mem: 2957096k total, 1704808k used, 1252288k free, 51492k buffers<br
/> Swap: 2064376k total, 33484k used, 2030892k free, 560352k cached<br
/> PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND<br
/> 12145 username 20 0 30144 2404 1184 R 3.4 0.1 55:36.48 perl<br
/> 12152 username 20 0 30144 2400 1184 R 3.4 0.1 55:38.94 perl<br
/> 12161 username 20 0 30144 2416 1184 R 3.4 0.1 55:38.34 perl<br
/> 15413 username 20 0 42864 6688 1040 R 3.4 0.2 101:02.36 perl<br
/> 15414 username 20 0 40772 6540 900 R 3.4 0.2 101:02.72 perl<br
/> 15416 username 20 0 42864 6708 1052 R 3.4 0.2 101:02.74 perl<br
/> 1777 username 20 0 31660 3244 524 R 3.1 0.1 0:25.63 perl</code></p><p>Server started swapping, CPU usage is very high, I have noticed the <strong>fakeproc</strong> but couldn&#8217;t find anything about it. Some <a
href="http://pentestlab.org/hunting-malicious-perl-irc-bots/">online links</a> talk about a malicious perl IRC bot. The command below gave me more details about what&#8217;s going on :</p><p><code>root@new [~]# ps -ef | grep username<br
/> username   323     1  0 Mar18 ?        00:00:01 fakeproc<br
/> username  1777     1  3 11:40 ?        00:00:25 fakeproc<br
/> username  3787     1  0 04:33 ?        00:00:02 fakeproc<br
/> username  5916     1  0 05:06 ?        00:00:09 fakeproc<br
/> username 10625     1  0 Mar18 ?        00:00:01 fakeproc<br
/> username 12127     1  0 Mar18 ?        00:00:00 fakeproc<br
/> username 12128 12127  0 Mar18 ?        00:00:00 sh -c perl u.txt kill-9.us 53 0 2>&#038;1 3>&#038;1<br
/> username 12129 12128  4 Mar18 ?        00:55:38 perl h.txt kill-9.us 53 0<br
/> username 12134     1  0 Mar18 ?        00:00:00 fakeproc<br
/> username 12135 12134  0 Mar18 ?        00:00:00 sh -c perl u.txt kill-9.us 0 0 2>&#038;1 3>&#038;1<br
/> username 12138 12135  4 Mar18 ?        00:55:39 perl u.txt kill-9.us 0 0<br
/> username 12143     1  0 Mar18 ?        00:00:00 fakeproc<br
/> username 12144 12143  0 Mar18 ?        00:00:00 sh -c perl u.txt kill-9.us 80 0 2>&#038;1 3>&#038;1<br
/> username 12145 12144  4 Mar18 ?        00:55:36 perl u.txt kill-9.us 80 0<br
/> username 12150     1  0 Mar18 ?        00:00:00 fakeproc<br
/> username 12151 12150  0 Mar18 ?        00:00:00 sh -c perl u.txt kill-9.us 6667 0 2>&#038;1 3>&#038;1<br
/> username 12152 12151  4 Mar18 ?        00:55:39 perl h.txt kill-9.us 6667 0<br
/> username 12159     1  0 Mar18 ?        00:00:00 fakeproc<br
/> username 12160 12159  0 Mar18 ?        00:00:00 sh -c perl u.txt kill-9.us 7000 0 2>&#038;1 3>&#038;1<br
/> username 12161 12160  4 Mar18 ?        00:55:38 perl u.txt kill-9.us 7000 0</code></p><p>There is even a shell script running (sh) but I&#8217;ll come back to it shortly. Now what&#8217;s this fakeproc is doing ? I have removed known connection from the result, but seems that there are so many connections using this fakeproc !</p><p><code>root@new [~]# netstat -p<br
/> Active Internet connections (w/o servers)<br
/> Proto Recv-Q Send-Q Local Address               Foreign Address             State       PID/Program name<br
/> tcp        0      0 myserver:33619       host.server*id3098.com:http ESTABLISHED 323/fakeproc<br
/> tcp        0      0 myserver:41844       baribal.dima.hu:ircu-3      ESTABLISHED 15413/fakeproc<br
/> tcp        0    283 myserver:58660       r*nger-f*rums.com:http      ESTABLISHED 5916/fakeproc<br
/> tcp        0      0 myserver:41720       bariba*.di*a.hu:ircu-3      ESTABLISHED 12127/fakeproc<br
/> tcp        0      0 myserver:33543       119.235.255.174:http        ESTABLISHED 30138/fakeproc<br
/> tcp        0      0 myserver:41776       bariba*.di*a.hu:ircu-3      ESTABLISHED 10625/fakeproc<br
/> tcp        0      0 myserver:55179       205.234.134:afs3-fileserver ESTABLISHED 323/fakeproc<br
/> tcp        0      0 myserver:42577       205.234.134.222:ircu-3      ESTABLISHED 15273/fakeproc<br
/> tcp        0      0 myserver:39287       gvo239240.gvodatacente:http ESTABLISHED 10625/fakeproc<br
/> tcp        0      0 myserver:35723       www.fcc.gov:http            ESTABLISHED 3787/fakeproc </code></p><p>And no comment on the last line ! <strong>Quick look at log files</strong> reveal the source of the infection :</p><p><code>root@new [~]# tail -f /var/log/cron<br
/> Mar 19 12:11:01 new CROND[3385]: (username) CMD (/home/username/.mails/.httpd/use.upd >/dev/null 2>&#038;1)<br
/> Mar 19 12:12:01 new CROND[3414]: (username) CMD (/home/username/.mails/.httpd/use.upd >/dev/null 2>&#038;1)<br
/> Mar 19 12:13:01 new CROND[3421]: (username) CMD (/home/username/.mails/.httpd/use.upd >/dev/null 2>&#038;1)</code></p><p>Cool ! If you are curious to <strong>see what&#8217;s inside this malicious file</strong> here is a glimpse :</p><p><code>root@new [~]# cat /home/username/.mails/.httpd/use.upd<br
/> if test -r /home/username/.mails/.httpd/pid.use; then<br
/> pid=$(cat /home/username/.mails/.httpd/pid.use)<br
/> if $(kill -CHLD $pid >/dev/null 2>&#038;1)<br
/> then<br
/> exit 0<br
/> fi<br
/> fi<br
/> cd /home/username/.mails/.httpd<br
/> ./hat.run &#038;>/dev/null<br
/> root@new [~]# cat /home/username/.mails/.httpd/use.run<br
/> ./xh -s "/usr/local/apache/bin/httpd -DSSL" ./httpd -m use</code></p><p>Now all is good, and I&#8217;m able to <strong>locate bunch of malicious files</strong> :</p><p><code>root@new [/home/username/.mails]# ls .httpd/<br
/> ./   crot*        doc/        filesys/  use    use.dir   use.upd*  httpd*     logs/          README    start*  tcl*          text/  xh*<br
/> ../  dalnet.conf  efnet.conf  fuck*     use.d  use.run*  help/     language/  quakenet.conf  scripts/  t3394*  terobot.conf  tmp/</code></p><p>That&#8217;s exactly the malicious perl IRC bot that I was reading about! Anyway, from all accounts on the server only One account have been compromised, which mean that the infection is very limited. I used my fav antivirus (rm -Rf) then rebooted to normal ! I don&#8217;t have any default config anymore, passwords should be easy to guess, so don&#8217;t loose your time ;-) Best of all, I have nothing really important on my server, especially that I&#8217;m keeping backups of all data under my pillow so I can sleep very well !</p><p>Now if you see a fakeproc on your server, that mean your server is Hacked ! but nothing really dangerous, keep hunting !</p><div
class='yarpp-related-rss yarpp-related-none'><p>No related posts.</p></div> ]]></content:encoded> <wfw:commentRss>http://www.hbyconsultancy.com/blog/fakeproc-your-server-has-been-hacked.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Tunisie, le Point sur l’OpenGov, et la participation citoyenne</title><link>http://www.hbyconsultancy.com/blog/tunisie-un-point-sur-l%e2%80%99opengov-et-la-participation-citoyenne.html</link> <comments>http://www.hbyconsultancy.com/blog/tunisie-un-point-sur-l%e2%80%99opengov-et-la-participation-citoyenne.html#comments</comments> <pubDate>Wed, 04 Jul 2012 09:51:56 +0000</pubDate> <dc:creator>Hatem Ben Yacoub</dc:creator> <category><![CDATA[Blog]]></category> <category><![CDATA[eParticipation]]></category> <category><![CDATA[OpenGov]]></category> <guid
isPermaLink="false">http://www.hbyconsultancy.com/?p=663</guid> <description><![CDATA[Transparence ou non transparence ? Dans la nouvelle Tunisie, on cherche à appliquer des lois révolutionnaires de droit d’accès à l’information. On cherche à donner au citoyen une valeur à sa citoyenneté, et un moyen de participer effectivement à la construction de son pays, non seulement à travers des élections mais aussi tout au long [...]<div
class='yarpp-related-rss'> Related posts:<ol><li><a
href='http://www.hbyconsultancy.com/blog/opengov-laws-around-the-world.html' rel='bookmark' title='OpenGov Laws Around the World'>OpenGov Laws Around the World</a></li></ol></div> ]]></description> <content:encoded><![CDATA[<p><strong>Transparence ou non transparence ? </strong></p><p>Dans la nouvelle Tunisie, on cherche à appliquer des lois révolutionnaires de droit d’accès à l’information. On cherche à donner au citoyen une valeur à sa citoyenneté, et un moyen de participer effectivement à la construction de son pays, non seulement à travers des élections mais aussi tout au long de l’année.</p><p>Sauf qu’à un certain moment on s’arrête et on regarde tout au tour, et on se demande qu’est ce qui cloche ! On retrouve des mentalités qui sont contre le fait que le citoyen profite de ces lois en premier lieu, puis on va encore plus loin en disant qu’il n’est pas encore assez mature pour accéder à ces informations, et après tout le Gouvernement fait le nécessaire pour lui ! Qu’est ce que vous cherchez dans ces informations ?</p><p>En Mai 2012 dans une interview du Hors série de La Presse, Lotfi Zitoun, Ministre conseiller auprès du gouvernement chargé des dossiers politiques répond (page 83) à la question “L’article 46 portant sur l’accès aux documents administratifs des établissements publics sera- t-il lui aussi soumis à la consultation?” :</p><blockquote><p>Je vous donne mon avis personnel sur ce sujet : <strong>notre pays n’a pas atteint le niveau de maturité démocratique suffisante pour disposer d’une telle loi.</strong> «L’open date», comme disent les britanniques pose encore des problèmes pour beaucoup de pays occidentaux, qui ont commencé à en parler juste les dix dernières années.</p></blockquote><p>Deux faits 1) on a des lois postrévolutionnaires 2) on a des gouvernants qui ne sont pas conscient de la maturité de ce peuple qui les a ramené à la tête de ce pays.</p><p>D’un autre coté à l’Assemblée Nationale Constituante on retrouve des députés qui sont totalement contre la transparence et considère même qu’il s’agit de la bonne interprétation des textes de lois&#8230; à l’image de Habib Khedhr qui a répondu à Sarhane Hichri, membre du groupe OpenGovTN</p><blockquote><p>“<strong>Je suis contre la publication des PV!</strong> Le RI l’interdit et <strong>vous n’en avez pas besoins!</strong>”</p></blockquote><p>Le RI le permet et l’interdit pas, même le président de l’ANC l’a autorisé, et était même surpris que ce n’est pas encore fait. Mais voilà au moins un avis clair, qui se positionne contre la transparence ce qui est nettement mieux que se positionner pour sans pour autant rien faire. Le problème c’est que je retrouve presque le même argument de maturité, pourquoi vous voulez ces documents !</p><p>Tu as comme l’impression que quelqu’un te prend tes clefs et puis te pose la question “Pourquoi vous voulez vos clefs?” Pour les utiliser bon sens ! Les données c’est les clefs de l’information, qui est la clef du savoir ! On nous cache les données source sous n’importe quel prétexte, puis on nous sort des informations voilà on a terminé, c’est beau ? Vous aimez le travail ? &#8230; Est-ce une bonne pratique ?</p><p>Le dernier argument c’est la confiance ! Vous n’avez pas de confiance dans ce gouvernement ? Laissez nous travailler, on a été élu par le peuple, on ne viens pas du ciel … Si vous dites que le peuple n&#8217;est pas assez mature pour des textes de lois, et bien on vous dis que ce peuple ne serait pas aussi mature de vous élire.</p><p>Est-il possible aujourd’hui de développer un pays à base de confiance ? Absolument non ! Aujourd’hui on veut créer un pays d’institutions, un pays ou la loi se respecte, un pays où on donne au citoyen sa citoyenneté, mais on ne lui pose pas de questions pourquoi tu la veux ta citoyenneté.</p><p>Un pays d’institutions ne se base pas sur la confiance mais sur l’information. Le citoyen a le droit de connaitre toute information publique dans son pays, c’est son droit et non une faveur des décideurs du pays qui peuvent selon l’humeur du jour dire oui ou non.</p><p>La transparence aujourd’hui est une nécessité non seulement pour construire la Tunisie d’aujourd’hui, mais aussi pour les générations à venir.</p><p><strong>Participation citoyenne où est ce qu’on est ?</strong></p><p>A vrai dire la situation de la transparence n’est pas aussi mauvaise dans le pays, et comme il y’a des bas, il y’a aussi des hauts à savoir la disponibilité de tout les budgets détaillées des ministères et de l’Assemblée Nationale Constituante [1], y’a eu aussi la publication de tout les PVs ainsi que la présence de la commission préambule [2], d&#8217;autres PVs vonte venir,  les données électorale du 23 octobre contiennent pleins d’anomalies mais on s’en passe vu que l’ISIE a fermé ses portes mais restent quand même disponible.</p><p>Mais la question qui se pose, qu’est ce qu’on a fait avec ces données ? Qui a jeté un coup d&#8217;oeil aux 3000 pages de budgets ? Ou aux PVs des commissions ?</p><p>A Vrai dire on n’a pas l’habitude de voir ce genre de données rendu public, avant qu’on parle de traiter ces données. L’utilisation de ces données a été effectivement très réduite, très peu ont détectés des anomalies dans les budgets, à part très peu de représentation graphique de distribution de salaires par ministère par exemple. Les médias n&#8217;ont pas montré une importance à la disponibilité des données, alors qu&#8217;ils devraient être les premiers à les décortiquer.</p><p>Pas grand chose pour les PVs de la commission préambule aussi, à part quelque DataViz. Amira Yahyaoui a annoncé hier dans le groupe OpenGovTN que Al Bawsala a recruté quelqu’un pour analyser ces PVs. Une action qu’on peut que saluer, en espérant que d’autres personnes ou associations se penchent sur tout types d’information afin de les analyser pour en faire sortir des idées, des projets, ou du savoir !</p><p>Aujourd’hui c’est au citoyen de prendre en main son pays, il ne faut pas attendre de X ou de Y qu’on te fournissent l’information, il faut aller demander cette information de la source et exercer sa citoyenneté et son droit d’accès à l’information.</p><p>Aujourd’hui il faut que le citoyen bouge et dis aux gouvernants qu’il est assez mature pour prendre les choses en main, et qu’il ne restera pas au merci du gouvernement pour décider si cette information est bénéfique pour lui ou non.</p><p>Le droit d’accès à l’information n’est pas une faveur d’accès à l’information.</p><p>Un jour on commencera à comprendre qu’il faut publier toute information publique sans poser de questions genre &#8220;pourquoi je publie ça&#8221;, et on commencera à utiliser ces données pour le bien du pays. Ce jour là on va découvrir que le nouveau pétrole c’est “les données” et que le meilleur moyen de l’extraire c’est le “citoyen”. Entre temps, le chemin est encore très long.</p> [1] <a
href="https://docs.google.com/folder/d/0BwBRd4LI7yJAQmJsUjNlcFppeEE/edit">Budgets détaillés</a><br
/> [2] <a
href="http://www.marsad.tn/commissions?id=4f426bb3b197de1a22000000">PVs commission préambule</a></p><div
class='yarpp-related-rss'><p>Related posts:<ol><li><a
href='http://www.hbyconsultancy.com/blog/opengov-laws-around-the-world.html' rel='bookmark' title='OpenGov Laws Around the World'>OpenGov Laws Around the World</a></li></ol></p></div> ]]></content:encoded> <wfw:commentRss>http://www.hbyconsultancy.com/blog/tunisie-un-point-sur-l%e2%80%99opengov-et-la-participation-citoyenne.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>CertML, Open Markup Language for Certification exams</title><link>http://www.hbyconsultancy.com/blog/certml-open-markup-language-for-certification-exams.html</link> <comments>http://www.hbyconsultancy.com/blog/certml-open-markup-language-for-certification-exams.html#comments</comments> <pubDate>Sat, 09 Jun 2012 09:53:18 +0000</pubDate> <dc:creator>Hatem Ben Yacoub</dc:creator> <category><![CDATA[Blog]]></category> <category><![CDATA[CertML]]></category> <category><![CDATA[W3C]]></category> <category><![CDATA[Web Standard]]></category> <guid
isPermaLink="false">http://www.hbyconsultancy.com/?p=644</guid> <description><![CDATA[I was looking recently for an exam markup language and I was surprised there is none ! I had some mock questions in text format that I wanted to turn in a standard format then develop an exam engine for personal use, especially that I’ve found many limitations in most exam engines available on the [...]<div
class='yarpp-related-rss'> Related posts:<ol><li><a
href='http://www.hbyconsultancy.com/blog/review-ucertify-pmi-pmp-certification-kit.html' rel='bookmark' title='Review uCertify PMI-PMP certification Kit'>Review uCertify PMI-PMP certification Kit</a></li></ol></div> ]]></description> <content:encoded><![CDATA[<p>I  was looking recently for an exam markup language and I was surprised  there is none ! I had some mock questions in text format that I wanted  to turn in a standard format then develop an exam engine for personal  use, especially that I’ve found many limitations in most exam engines  available on the net.</p><p>The  idea that I have questions in different sections or knowledge areas,  then the final exam should be a selection of 20% from the first  knowledge area, 30% from the second … etc. Also many real exams provides  additional questions that are not marked. For example an exam with 100  questions, including 10 questions non marked, so the final score will be  based on the 90 only. Interesting if you want to try real exam  conditions.</p><p>Let’s take a sample exam, we can have the format as below :</p><pre>&lt;?xml version='1.0' encoding='UTF-8'?&gt;
&lt;CERTML xsi:noNamespaceSchemaLocation="CertML.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"&gt;
 &lt;exam&gt;
 &lt;title&gt;Sample Mock Exam&lt;/title&gt;
 &lt;description&gt;Exam description&lt;/description&gt;
 &lt;keywords&gt;keywords&lt;/keywords&gt;
 &lt;meta name="CertAuthority" value="Sample1" /&gt;
 &lt;meta name="ExamCode" value="SPL-001" /&gt;
 &lt;meta name="Version" value="1.0" /&gt;
 &lt;meta name="CreateDate" value="6/7/2012" /&gt;
 &lt;meta name="LastUpdate" value="6/7/2012" /&gt;
 &lt;meta name="questions" value="100" /&gt;
 &lt;meta name="unscored" value="0" /&gt;
 &lt;meta name="PassingScore" value="75" /&gt;
 &lt;meta name="time" value="120" /&gt;
 &lt;section id="1" name="section1" value="30"/&gt;
 &lt;section id="2" name="section2" value="24" /&gt;
 &lt;section id="3" name="section3" value="46" /&gt;
 &lt;/exam&gt;
 &lt;questions&gt;
 &lt;question id="1" section="1" complexity="4" correct="3"&gt;
 &lt;text&gt;Question&lt;/text&gt;
 &lt;answers&gt;
 &lt;option value="1"&gt;Option 1&lt;/option&gt;
 &lt;option value="2"&gt;Option 2&lt;/option&gt;
 &lt;option value="3"&gt;Option 3&lt;/option&gt;
 &lt;option value="4"&gt;Option 4&lt;/option&gt;
 &lt;/answers&gt;
 &lt;reference&gt;Reference book page 13&lt;/reference&gt;
 &lt;media/&gt;
 &lt;/question&gt;
 &lt;/questions&gt;
&lt;/CERTML&gt;</pre><p>We  can easily write an engine to parse this XML and generate a final  exam. This is just a proposal for a new open standard for certification  exams, I might have missed few issues, so your comments are very welcome.  If you know an existing format that will be very good also.</p><p><a
href="http://www.hbyconsultancy.com/wp-content/uploads/CertML.xsd">CertML XML Schema available here</a><br
/> <a
href="http://www.hbyconsultancy.com/wp-content/uploads/CertML.dtd">CertML DTD is available here</a><br
/> <a
href="http://www.hbyconsultancy.com/wp-content/uploads/Sample-CertML.xml">CertML Sample Mock Exam here</a>.</p><p><a
rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/"><img
style="border-width: 0;" src="http://i.creativecommons.org/l/by-sa/3.0/88x31.png" alt="Creative Commons License" /></a><br
/> This work is licensed under a <a
rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/">Creative Commons Attribution-ShareAlike 3.0 Unported License</a>.</p><div
class='yarpp-related-rss'><p>Related posts:<ol><li><a
href='http://www.hbyconsultancy.com/blog/review-ucertify-pmi-pmp-certification-kit.html' rel='bookmark' title='Review uCertify PMI-PMP certification Kit'>Review uCertify PMI-PMP certification Kit</a></li></ol></p></div> ]]></content:encoded> <wfw:commentRss>http://www.hbyconsultancy.com/blog/certml-open-markup-language-for-certification-exams.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>OpenGov Laws Around the World</title><link>http://www.hbyconsultancy.com/blog/opengov-laws-around-the-world.html</link> <comments>http://www.hbyconsultancy.com/blog/opengov-laws-around-the-world.html#comments</comments> <pubDate>Sun, 13 May 2012 07:17:31 +0000</pubDate> <dc:creator>Hatem Ben Yacoub</dc:creator> <category><![CDATA[Blog]]></category> <category><![CDATA[OpenData]]></category> <category><![CDATA[OpenGov]]></category> <guid
isPermaLink="false">http://www.hbyconsultancy.com/?p=637</guid> <description><![CDATA[I&#8217;m not specialized in Laws or legal issues, however I&#8217;ll try to  keep this post update for reference with different regulations and laws around the world related to Open Government. If you have any update or correction feel free to contact me. 1- United States US Federal: H.R. 4858 Official Summary 3/16/2010&#8211;Introduced.Public Online Information Act [...]<div
class='yarpp-related-rss'> Related posts:<ol><li><a
href='http://www.hbyconsultancy.com/blog/tunisia-20-e-government-paper.html' rel='bookmark' title='Tunisia 2.0 and e-Government, Strategies and Tactics, public draft paper'>Tunisia 2.0 and e-Government, Strategies and Tactics, public draft paper</a></li><li><a
href='http://www.hbyconsultancy.com/blog/cntlm-vs-ntlmaps.html' rel='bookmark' title='cntlm Vs ntlmaps'>cntlm Vs ntlmaps</a></li></ol></div> ]]></description> <content:encoded><![CDATA[<p>I&#8217;m not specialized in Laws or legal issues, however I&#8217;ll try to  keep this post update for reference with different regulations and laws around the world related to Open Government. If you have any update or correction feel free to contact me.</p><p><strong>1- United States</strong></p><ul><li><a
title="http://www.opencongress.org/bill/111-h4858/show" rel="nofollow" href="http://www.opencongress.org/bill/111-h4858/show">US Federal: H.R. 4858</a></li></ul><h3 style="padding-left: 60px;">Official Summary</h3><p
style="padding-left: 60px;">3/16/2010&#8211;Introduced.Public Online Information Act of 2010 &#8211; Establishes a Public Online Information Advisory Committee to:<br
/> <strong>(1)</strong> coordinate and encourage the government&#8217;s efforts to make information  from all three branches of government available on the Internet; and<br
/> <strong>(2)</strong> issue and update nonbinding guidelines on how the government should  make public information available. Directs the government to make public  records available on the Internet at no charge, except as imposed by  federal law before this Act&#8217;s enactment. Requires:<br
/> <strong>(1)</strong> public records to be permanently available on the Internet;<br
/> <strong>(2)</strong> current information technology capabilities to be applied to the means  by which records are made available and to the formats in which they are  available; and<br
/> <strong>(3)</strong> each agency to publish on the  Internet a comprehensive, searchable, machine processable list of all  records it makes publicly available. Delineates the roles of the  Director of the Office of Management and Budget (OMB), the Administrator  of the Office of Electronic Government, and the chief information  officers of independent regulatory agencies, including granting narrow  case-by-case exceptions to the Internet publication requirement if an  agency requests an exception and demonstrates that:<br
/> <strong>(1)</strong> there is a clear and convincing reason for the record to not be made available on the Internet; and<br
/> <strong>(2)</strong> on balance the harm caused by disclosure significantly outweighs the  public&#8217;s interest in having the record available on the Internet.  Directs the Inspector General of each agency to conduct periodic reviews  regarding agency compliance with Internet publication requirements.  Sets forth provisions regarding enforcement of public access by private  individuals or organizations. Urges:<br
/> <strong>(1)</strong> judicial and legislative agencies to adopt or adapt the Advisory Committee&#8217;s recommendations; and<br
/> <strong>(2)</strong> the Government Printing Office (GPO) to make all of its publications  permanently available on the Internet in a multiplicity of formats.</p><ul><li><a
title="http://assembly.state.ny.us/leg/?bn=A10335&amp;term=2009" rel="nofollow" href="http://assembly.state.ny.us/leg/?bn=A10335&amp;term=2009">US NY: A10335</a> (2009)<a
title="http://assembly.state.ny.us/leg/?bn=A10335&amp;term=2009" rel="nofollow" href="http://assembly.state.ny.us/leg/?bn=A10335&amp;term=2009"><br
/> </a>Requires public disclosure of certain state agency materials, and  authorizes the office for technology to publish a technical standards  manual for the publishing of records on the Internet by state agencies</li></ul><p><strong>2- Europe</strong></p><ul><li><a
href="http://ec.europa.eu/information_society/policy/psi/rules/index_en.htm">Existing rules on re-use of public sector information</a><br
/> The aim of the directive is to :</li></ul><blockquote><ul><li>Facilitate the creation of Community-wide services based on or integrating  public sector information.</li><li>Enhance an effective cross-border re-use of information for added value  products and services.</li><li>Limit the distortions of competition on the Community information market.</li></ul></blockquote><p><strong>3- Tunisia</strong></p><ul><li><a
href="http://www.hbyconsultancy.com/wp-content/uploads/2012/05/Décret-loi2011_41.pdf">Décret-loi n° 2011-41 du 26 mai 2011, relatif à l’accès aux documents administratifs des organismes publics.</a> (Available in French and Arabic only)</li><li><a
href="http://www.hbyconsultancy.com/wp-content/uploads/2012/05/Décret-loi2011_54.pdf">Décret-loi n° 2011-54 du 11 juin 2011, modifiant et complétant le  décret-loi n° 2011-41 du 26 mai 2011 relatif à l&#8217;accès aux documents  administratifs des organismes publics.</a> (Available in French and Arabic only)</li><li><a
href='http://www.hbyconsultancy.com/wp-content/uploads/2012/05/منشور-عدد-25-بتاريخ-05-ماي-2012-حول-النفاذ-إلى-الوثائق-الإدارية-للهياكل-العمومية.pdf'>منشور عدد 25 بتاريخ 05 ماي 2012 حول النفاذ إلى الوثائق الإدارية للهياكل العمومية</a></li></ul><p>&nbsp;</p><div
class='yarpp-related-rss'><p>Related posts:<ol><li><a
href='http://www.hbyconsultancy.com/blog/tunisia-20-e-government-paper.html' rel='bookmark' title='Tunisia 2.0 and e-Government, Strategies and Tactics, public draft paper'>Tunisia 2.0 and e-Government, Strategies and Tactics, public draft paper</a></li><li><a
href='http://www.hbyconsultancy.com/blog/cntlm-vs-ntlmaps.html' rel='bookmark' title='cntlm Vs ntlmaps'>cntlm Vs ntlmaps</a></li></ol></p></div> ]]></content:encoded> <wfw:commentRss>http://www.hbyconsultancy.com/blog/opengov-laws-around-the-world.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Des Parlements en Ligne à découvrir</title><link>http://www.hbyconsultancy.com/blog/des-parlements-en-ligne-a-decouvrir.html</link> <comments>http://www.hbyconsultancy.com/blog/des-parlements-en-ligne-a-decouvrir.html#comments</comments> <pubDate>Tue, 13 Mar 2012 08:50:07 +0000</pubDate> <dc:creator>Hatem Ben Yacoub</dc:creator> <category><![CDATA[Blog]]></category> <category><![CDATA[OpenData]]></category> <category><![CDATA[OpenGov]]></category> <category><![CDATA[Parlement]]></category> <category><![CDATA[tnANC]]></category> <guid
isPermaLink="false">http://www.hbyconsultancy.com/?p=626</guid> <description><![CDATA[Je découvre ce matin que le Kenya a un site pour suivre les activités des membres du parlement MZALENDO avec un joli scoreboard pour suivre la satisfcation du citoyen des élus, voir meme une fiche de chacun avec son experience, ses apparitions, et la possibilité de laisser un commentaire ou un message. Une experience de [...]<div
class='yarpp-related-rss yarpp-related-none'> No related posts.</div> ]]></description> <content:encoded><![CDATA[<p>Je découvre ce matin que le Kenya a un site pour suivre les activités des membres du parlement <a
title="MZALENDO" href="http://info.mzalendo.com/info/mzalendo-overview">MZALENDO</a> avec un joli scoreboard pour suivre la satisfcation du citoyen des élus, voir meme une fiche de chacun avec son experience, ses apparitions, et la possibilité de laisser un commentaire ou un message. Une experience de démocratie participative très interessante surtout que le Kenya est l&#8217;un des leaders African sur le plan OpenData et OpenGov avec un portail très riche en information dans tout les secteurs <a
href="http://opendata.go.ke">opendata.go.ke</a>.</p><p><a
href="http://www.hbyconsultancy.com/wp-content/uploads/2012/03/mzalendo.png"><img
class="alignnone size-medium wp-image-627" title="mzalendo" src="http://www.hbyconsultancy.com/wp-content/uploads/2012/03/mzalendo-300x255.png" alt="" width="300" height="255" /></a></p><p>Encore plus intéressant, je découvre la source et qui est techniquement derrière ce projet, il s&#8217;agit de <a
title="mySociety" href="http://www.mysociety.org">mySociety</a> et surtout leur projet chouchou <a
href="http://www.theyworkforyou.com/">http://www.theyworkforyou.com/</a> ! Je suis resté ébloui devant la quantité d&#8217;information partagé à travers ce site, non seulement concernant le parlement UK, mais aussi Scotish, Northern Ireland, et Welsh.</p><p><a
href="http://www.hbyconsultancy.com/wp-content/uploads/2012/03/theyworkforyou.png"><img
class="alignnone size-medium wp-image-628" title="theyworkforyou" src="http://www.hbyconsultancy.com/wp-content/uploads/2012/03/theyworkforyou-300x205.png" alt="" width="300" height="205" /></a></p><p>Un petit tour sur le site me fait découvrir les membres du parlement un à un, et attention il y&#8217;a l&#8217;archive de ces membres depuis 1935, voir même les photos de certains ! Tu peux contacter ces MPs, recevoir des messages de leur part, et même s&#8217;inscrire pour recevoir les nouvelles du membre de votre choix par email.Vous pouvez presque tout savoir sur vos élus, le détail des votes par exemple :</p><p><a
href="http://www.hbyconsultancy.com/wp-content/uploads/2012/03/theyworkforyou-votingrecord.png"><img
class="alignnone size-medium wp-image-629" title="theyworkforyou-votingrecord" src="http://www.hbyconsultancy.com/wp-content/uploads/2012/03/theyworkforyou-votingrecord-300x290.png" alt="" width="300" height="290" /></a></p><p>Où, quand, et comment ils ont votés sur les différentes résolutions dans le parlement&#8230;Les dépenses détaillés, à savoir comment nous coute réellement cette démocratie :</p><p><a
href="http://www.hbyconsultancy.com/wp-content/uploads/2012/03/theyworkforyou-expenses.png"><img
class="alignnone size-medium wp-image-630" title="theyworkforyou-expenses" src="http://www.hbyconsultancy.com/wp-content/uploads/2012/03/theyworkforyou-expenses-297x300.png" alt="" width="297" height="300" /></a></p><p>On peut trouver les positions que les MPs ont occupés précédement, les différentes apparitions, speech, des statistiques, lien de site web, compte twitter&#8230; etc. Ceci dis, ce site n&#8217;est pas un site officiel du parlement, et les informations sont collectés de differentes sources, y compris le site officiel du parlement UK : <a
href="http://www.parliament.uk/">http://www.parliament.uk/</a></p><p>Toute les données du site TheyWorkForYou sont accessible à travers un API, bien documenté, et y&#8217;a même des exemples de codes sources  pour l&#8217;utiliser, ainsi que différents types d&#8217;exemple d&#8217;application de cet API.</p><p>Je vous laisse jeter un coup d&#8217;oeil sur ces sites, mais ce qui m&#8217;a fait vraiment plaisir aujourd&#8217;hui c&#8217;est que j&#8217;étais entrain de jeter un coup d&#8217;oeil sur le code source de ce fameux site TheyWorkForYou.com ! Eh oui le site est OpenSource avec PHP et Perl, et utilise MySQL pour base de données.</p><p>Un petit clin d&#8217;oeil du coté de notre ANC en Tunisie <a
href="http://www.anc.tn/">http://www.anc.tn/</a>, on retrouve aussi des fiches pour chaque élu ainsi que son addresse email, le/les commission dont il fait partie, et un lien pour voir les différentes intervention même si le contenu est encore vide. Je découvre aussi qu&#8217;il y&#8217;a l&#8217;archive des débats en texte mais qui s&#8217;arrête malheureusement le 19/10/2010.</p><p><a
href="http://www.hbyconsultancy.com/wp-content/uploads/2012/03/anc-fiche.png"><img
class="alignnone size-medium wp-image-631" title="anc-fiche" src="http://www.hbyconsultancy.com/wp-content/uploads/2012/03/anc-fiche-300x169.png" alt="" width="300" height="169" /></a></p><p>Le seul avantage probablement c&#8217;est les enregistrement vidéos des débats publique, même si selon le réglement interne le travail des commissions est aussi publique, mais on ne retrouve aucun enregistrement nulle part. Encore faut lier chaque vidéo au texte du rapport de chaque débat, sinon va chercher les vidéos où par exemple &#8220;Ahmed Alkhaskhousi&#8221; a fait une intervention ?</p><p>Si on veut faire quelque chose d&#8217;utilie il suffit de faire un petit tour dans le monde, c&#8217;est loin ? pas grave regardons de plus près, dans l&#8217;Afrique par exemple, le Kenya. Et personne ne me dis manque de temps ou de moyen, quand on veut on peut.</p><p><strong>Mise à jour du 14 Mars 2012 :</strong> Selon une source on me dis que le site officiel de l&#8217;ANC va contenir tout ces details, la saisie des bios est en cours, et voir même la traçabilité des votes. le développement est à 80% actuellement, voilà une bonne nouvelle pour commencer la journée avec une petite pensée positive.</p><p><strong>Mise à jour du 13 Mai 2012 : </strong>Le portail <a
href="http://www.marsad.tn/">Marsad</a> a été lancé, une initiative citoyenne de l&#8217;association Al-Bawsala, un site excellent qui offre une vision panoramique de l&#8217;ANC et de ses activités.<a
href="http://www.hbyconsultancy.com/wp-content/uploads/2012/03/marsad.png"><img
class="alignnone size-medium wp-image-640" title="marsad" src="http://www.hbyconsultancy.com/wp-content/uploads/2012/03/marsad-300x243.png" alt="" width="300" height="243" /></a></p><div
class='yarpp-related-rss yarpp-related-none'><p>No related posts.</p></div> ]]></content:encoded> <wfw:commentRss>http://www.hbyconsultancy.com/blog/des-parlements-en-ligne-a-decouvrir.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Review uCertify PMI-PMP certification Kit</title><link>http://www.hbyconsultancy.com/blog/review-ucertify-pmi-pmp-certification-kit.html</link> <comments>http://www.hbyconsultancy.com/blog/review-ucertify-pmi-pmp-certification-kit.html#comments</comments> <pubDate>Wed, 22 Feb 2012 05:32:25 +0000</pubDate> <dc:creator>Hatem Ben Yacoub</dc:creator> <category><![CDATA[Blog]]></category> <category><![CDATA[PMI]]></category> <category><![CDATA[PMP]]></category> <category><![CDATA[Project Management]]></category> <guid
isPermaLink="false">http://www.hbyconsultancy.com/?p=621</guid> <description><![CDATA[I have got an offer from uCertify to review their PrepKit and I have accepted that challenge and now I am reviewing PMP Exam PrepKit (aff) from uCertify. Initially it looks simple and very easy to use, I have played a little with the application, then tried successfully the first 15 questions (800/1000). What someone [...]<div
class='yarpp-related-rss'> Related posts:<ol><li><a
href='http://www.hbyconsultancy.com/blog/certml-open-markup-language-for-certification-exams.html' rel='bookmark' title='CertML, Open Markup Language for Certification exams'>CertML, Open Markup Language for Certification exams</a></li></ol></div> ]]></description> <content:encoded><![CDATA[<p>I have got an offer from uCertify to review their PrepKit and I have accepted that challenge and now I am reviewing <a
href="http://www.ucertify.com/certifications/PMI/pmi-pmp.html?af=hatem">PMP Exam PrepKit</a> (aff) from uCertify. Initially it looks simple and very easy to use, I have played a little with the application, then tried successfully the first 15 questions (800/1000).</p><p>What someone ask about while preparing the PMP exam, are the questions similar to the official exam&#8217;s questions ? personally I didn&#8217;t see any similarity beside that it cover all the PMP exam objectives. I have enjoyed answering most questions because it&#8217;s mostly different situations that a project manager may face in his/her everyday&#8217;s job, so the more you feel comfortable solving such problems, the more you&#8217;ll find yourself comfortable answering official exam questions.</p><p>Generally if you are able to pass mockup exams with a score higher than 80%, you should be ready to go for the official exam, and that&#8217;s what such certification kits can really help with. The certification kit came also with lots of tips, and support material, personally I use my books as reference. However it&#8217;s always great to have a detailed answer for every question, which uCertify kit did very well, in addition to definition of key words according to the PMBOK.</p><p>This is my second certification kit, as my PMP teacher recommended to me Rita Mulcahy&#8217;s during my project management course last year, however I think that uCertify is also a good preparation kit, as it gives you an additional project management situations and help you to test your knowledge before passing the exam.</p><p>More information and demo are available at <a
href="http://www.ucertify.com/certifications/PMI/pmi-pmp.html?af=hatem">uCertify PMP Exam PrepKit</a> (aff)</p><div
class='yarpp-related-rss'><p>Related posts:<ol><li><a
href='http://www.hbyconsultancy.com/blog/certml-open-markup-language-for-certification-exams.html' rel='bookmark' title='CertML, Open Markup Language for Certification exams'>CertML, Open Markup Language for Certification exams</a></li></ol></p></div> ]]></content:encoded> <wfw:commentRss>http://www.hbyconsultancy.com/blog/review-ucertify-pmi-pmp-certification-kit.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>OpenGovTN, Un Modele de Gouvernance Unique dans une Nouvelle Démocratie</title><link>http://www.hbyconsultancy.com/blog/opengovtn-un-modele-de-gouvernance-unique-dans-une-nouvelle-democratie.html</link> <comments>http://www.hbyconsultancy.com/blog/opengovtn-un-modele-de-gouvernance-unique-dans-une-nouvelle-democratie.html#comments</comments> <pubDate>Mon, 06 Feb 2012 11:14:35 +0000</pubDate> <dc:creator>Hatem Ben Yacoub</dc:creator> <category><![CDATA[Blog]]></category> <category><![CDATA[Democracy]]></category> <category><![CDATA[Open Government]]></category> <category><![CDATA[OpenData]]></category> <category><![CDATA[OpenGov]]></category> <guid
isPermaLink="false">http://www.hbyconsultancy.com/?p=611</guid> <description><![CDATA[Depuis Novembre 2011, un nouveau groupe OpenGovTN a vu le jour, une iniative citoyenne apolitique qui a grandit jour après jour pour comprendre aujourd&#8217;hui plus que 400 membres actifs, dont 22 députés de l&#8217;ANC, et même des ministres du nouveau gouvernement Tunisien. Cette initiative n&#8217;est ni une association, ni parti politique, n&#8217;a aucun cadre légal, [...]<div
class='yarpp-related-rss'> Related posts:<ol><li><a
href='http://www.hbyconsultancy.com/blog/des-parlements-en-ligne-a-decouvrir.html' rel='bookmark' title='Des Parlements en Ligne à découvrir'>Des Parlements en Ligne à découvrir</a></li></ol></div> ]]></description> <content:encoded><![CDATA[<p>Depuis Novembre 2011, un nouveau groupe <a
href="https://www.facebook.com/groups/opengovtn/">OpenGovTN</a> a vu le jour, une iniative citoyenne apolitique qui a grandit jour après jour pour comprendre aujourd&#8217;hui plus que 400 membres actifs, dont 22 députés de l&#8217;ANC, et même des ministres du nouveau gouvernement Tunisien. Cette initiative n&#8217;est ni une association, ni parti politique, n&#8217;a aucun cadre légal, et pourtant elle compte des projets de transparence OpenGov/OpenData assez importants et des actions qui ont réussis a faire du Buzz dans les médias, et je parle surtout de la campagne #7ell et du barcamp OpenGovTN durant le 4MTunis.</p><p><a
href="http://www.hbyconsultancy.com/wp-content/uploads/2012/02/logo2_opengovTN.gif"><img
class="size-full wp-image-612 aligncenter" title="logo2_opengovTN" src="http://www.hbyconsultancy.com/wp-content/uploads/2012/02/logo2_opengovTN.gif" alt="" width="192" height="192" /></a></p><p>La question qui se pose, c&#8217;est comment ce groupe marche ? et qui fait quoi dans ce groupe ! Comment faire des campagnes, des évènements, écrire un livre, parler dans les médias sans aucune structure ni cadre légal ! C&#8217;est difficile à réaliser surtout qu&#8217;on n&#8217;est pas habitués à ce genre de groupe en Tunisie. La Tunisie connais déjà le terme démocratie, mais ne connais pas encore comment l&#8217;utiliser, et entre la théorie et la pratique c&#8217;est tout un chantier a construire.</p><p>Dans ce post je vais essayer de mettre noir sur blanc un modèle de gouvernance pour le groupe, c&#8217;est facile de décrire ce qu&#8217;on veux faire, mais j&#8217;ai trouvé difficile d&#8217;analyser ce qu&#8217;on fait actuellement. C&#8217;est aussi le fruit de plusieurs discussions dans le groupe sur ce sujet.</p><p><strong>Objectifs</strong></p><p>L&#8217;objectif du groupe inscrire la transparence, l&#8217;OpenGov, et l&#8217;OpenData dans les pratiques quotidienne des institutions de l&#8217;état, et dans la constitution du pays.</p><p><strong>Définition</strong></p><p>OpenGovTN est un groupe de travail tunisien, une initiative citoyenne apolitique. Le groupe n&#8217;a pas de chef, ni porte parole, ni une hiérarchie. Pour joindre le groupe il faut s&#8217;adhérer aux objectifs du groupe, puis répondre aux deux questions de bienvenu :<br
/> 1-Qu&#8217;est ce qui dans ton parcours te rend sensible aux objectifs du groupe<br
/> 2-Comment penses-tu être utile? par exemple en réflexion? Réseau de contacts? Rédaction et drafting de documents ? Organisation d&#8217;évènements ? recherches sur internet? compétences informatiques ? Rédaction d&#8217;articles ? autres ?</p><p>Le groupe est entièrement bénévole et n&#8217;a aucune activité lucrative. Toutes les discussions dans le groupe sont libre et publique. Libre aux membres de lance une nouvelle discussion dans le sujet qu&#8217;il pense adéquat par rapport aux objectifs du groupe.</p><p><strong>Gouvernance</strong></p><p>Le groupe comme définit précédement n&#8217;a ni chef, ni porte parole, cependant pour réussir à atteindre les objectifs du groupe on dispose de projets et d&#8217;un modele horizental de gestion de projets, aussi simple que celà !</p><p>Après quelque discussions ici et là dans les groupes OpenGovTN on a commencé à parler d&#8217;un modèle RACI ou RASCi. Le modèle que je propose pour la gouvernance des projets OpenGovTN ainsi est un modèle RACI/RASCi sans aucune hiérarchie, c-a-d on impose qu&#8217;il y ait au moins un chef de projet par projet (Accountable, le A du RASCi), plusieurs membres du projets (Responsible, le R du RASCi), le groupe OpenGovTN sera informé de ce qui se passe dans le projet ainsi que les parties externe au groupe et qui font partie du projet (le i du RASCi), le S sera le support et on viens de l&#8217;utiliser pour supporter la gestion des projets par exemple, puis pour finir le C (Consulted), et c&#8217;est libre à l&#8217;equipe de projet de consulter celui qui a l&#8217;expertise nécessaire pour aider à accomplir des tâches dans le projet interne ou externe au groupe.</p><p>Le chef de projet malgré qu&#8217;il est libre de choisir la méthode la plus approprié pour gérer son projet, n&#8217;a aucune autorité sur les membres du projets, et ne peut en aucun cas prendre des décisions à la place du groupe ou des membres du projet. Le rôle du chef de projet ici est essentiellement l&#8217;encadrement (pour définir correctement le projet, et veuiller que le projet s&#8217;execute dans les délais), et la communication du projet (informer les differentes parties de l&#8217;avancement des travaux).</p><p><strong>Gestion de projets</strong></p><p>Dans le groupe on a actuellement quelque projets qui avancent, même si c&#8217;est à pas de tortue, et d&#8217;autres qui n&#8217;avancent plus voir abandonnés, et ce qui est très normal. Dans un groupe de bénévoles on s&#8217;attend toujours à ce genre de chose, et c&#8217;est pour celà qu&#8217;on exige l&#8217;existence d&#8217;un chef par projet et on demande aux chefs de projet de rapporter ce qui se passe et l&#8217;avancement des projets. Quand quelqu&#8217;un n&#8217;est plus disponible dans le projet, ou une tâche qui n&#8217;a pas trouvé le temps pour s&#8217;executer, quelqu&#8217;un d&#8217;autres dans le groupe peut se joindre au projet pour accomplir cette tâche.</p><p>On s&#8217;attend du chef de projet qu&#8217;il :<br
/> 1- informe sur l&#8217;avancement du projet régulièrement (1 fois par semaine ou par deux semaines)<br
/> 2- rapporte les meeting minutes de chaque meeting qui se fait dans le cadre du projet<br
/> 3- collecte les besoins<br
/> 3- définit le projet, délais et délivrables.<br
/> 4- encadre le projet</p><p>Dans le jargon de Project Management, on dois éviter au maximum ce qu&#8217;on appelle le &#8220;scope creep&#8221;, mieux le projet est définit, mieux on comprend ce qu&#8217;on a à faire dedant et mieux on connais ses tâches à faire. Ceci n&#8217;empêche, si un nouveau besoin apparait dans le projet, c&#8217;est au chef de projet de le détecter, et de le rapporter au groupe pour voir s&#8217;il est adéquat de le rajouter au projet ou non.</p><p><strong>Communication des projets</strong></p><p>La communication d&#8217;un projet est l&#8217;une des clefs de sa réussite, pour celà qu&#8217;on dois impérativement communiquer l&#8217;avancement des travaux de chaque projet. Le chef de projet est le responsable de cette communication et la communication consiste à :</p><p>1- Identification des différentes parties active dans le projet et la nature de communication de chaqune<br
/> 2- Rédaction des PV de réunions<br
/> 3- Communication des besoins du projet au groupe principal et demander la contribution (resources, informations, ou autres)</p><p>En gestion de projets on m&#8217;a appris qu&#8217;un bon chef de projet dois passer plus que 90% de son temps à communiquer, et on a vu ca réellement qu&#8217;en absence de communication on a commencer à parler d&#8217;absence de transparence dans les projets. Le chef de projet dois être conscient de l&#8217;importance de cette communication &#8220;interne&#8221;, et lui consacrer le temps qu&#8217;il lui faut. Réaliser un travail sans le communiquer, réellement c&#8217;est comme si aucun travail n&#8217;a été fait.</p><p>Ceci n&#8217;empêche que le mode de fonctionnement chaos-créateur restera aussi bénéfique pour le groupe, afin de détecter les opportunités de projets et enrichir la discussion sur les sujets relatifs à l&#8217;OpenGov, et l&#8217;OpenData en Tunisie.</p><p>&nbsp;</p><p><strong>Mise à jour :</strong> Après un excellent travail de groupe, la charte officielle de OpenGovTN est enfin disponible ici <a
href="http://pad.telecomix.org/tutfopel">http://pad.telecomix.org/tutfopel</a> en attendant la mise en place d&#8217;un document officiel qui décrit le modèle d&#8217;organisation.</p><div
class='yarpp-related-rss'><p>Related posts:<ol><li><a
href='http://www.hbyconsultancy.com/blog/des-parlements-en-ligne-a-decouvrir.html' rel='bookmark' title='Des Parlements en Ligne à découvrir'>Des Parlements en Ligne à découvrir</a></li></ol></p></div> ]]></content:encoded> <wfw:commentRss>http://www.hbyconsultancy.com/blog/opengovtn-un-modele-de-gouvernance-unique-dans-une-nouvelle-democratie.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>الشفافية والحوكمة المفتوحة، نقاش الفصلين 62 و68</title><link>http://www.hbyconsultancy.com/blog/%d8%a7%d9%84%d8%b4%d9%81%d8%a7%d9%81%d9%8a%d8%a9-%d9%88%d8%a7%d9%84%d8%ad%d9%88%d9%83%d9%85%d8%a9-%d8%a7%d9%84%d9%85%d9%81%d8%aa%d9%88%d8%ad%d8%a9.html</link> <comments>http://www.hbyconsultancy.com/blog/%d8%a7%d9%84%d8%b4%d9%81%d8%a7%d9%81%d9%8a%d8%a9-%d9%88%d8%a7%d9%84%d8%ad%d9%88%d9%83%d9%85%d8%a9-%d8%a7%d9%84%d9%85%d9%81%d8%aa%d9%88%d8%ad%d8%a9.html#comments</comments> <pubDate>Sun, 01 Jan 2012 12:21:41 +0000</pubDate> <dc:creator>Hatem Ben Yacoub</dc:creator> <category><![CDATA[Blog]]></category> <category><![CDATA[OpenData]]></category> <category><![CDATA[OpenGov]]></category> <category><![CDATA[tnANC]]></category> <guid
isPermaLink="false">http://www.hbyconsultancy.com/?p=604</guid> <description><![CDATA[أردت أن أفتح قوس حول سرية أو علانية أشغال اللجان وما ناقشه مؤخرا المجلس التأسيسي من خلال الفصلين 62 و68. وأول سؤال "خطير" هل تعلم ماهو نص الفصلين 62 و68 ؟ أعلم إجابتكم مسبقا، إقرأ لمزيد من التفاصيل.<div
class='yarpp-related-rss'> Related posts:<ol><li><a
href='http://www.hbyconsultancy.com/blog/opengovtn-un-modele-de-gouvernance-unique-dans-une-nouvelle-democratie.html' rel='bookmark' title='OpenGovTN, Un Modele de Gouvernance Unique dans une Nouvelle Démocratie'>OpenGovTN, Un Modele de Gouvernance Unique dans une Nouvelle Démocratie</a></li><li><a
href='http://www.hbyconsultancy.com/blog/des-parlements-en-ligne-a-decouvrir.html' rel='bookmark' title='Des Parlements en Ligne à découvrir'>Des Parlements en Ligne à découvrir</a></li></ol></div> ]]></description> <content:encoded><![CDATA[<p
dir="rtl">أردت أن أفتح قوس حول سرية أو علانية أشغال اللجان وما ناقشه مؤخرا المجلس التأسيسي من خلال الفصلين 62 و68. وأول سؤال &#8220;خطير&#8221; هل تعلم ماهو نص الفصلين 62 و68 ؟ أعلم إجابتكم مسبقا، إقرأ لمزيد من التفاصيل.</p><p
dir="rtl">يبتهج  البعض دفاعا عن نوابهم أو أحزابهم، ولعلي أقف موقف محايد من الجميع لعدم  انتمائي لأي حزب سياسي و ليس لي أية نشاط سياسي لا قبل ولا بعد الثورة، ما  يهمني فقط مصلحة بلدي تونس ومستقبلها ومستقبل أجيال من بعدنا. أتحدث من  موقعي أولا كمواطن تونسي، ثم كمهندس تونسي، مستشار في تكنولوجيا المعلومات  والاتصالات، وخبير في الحوكمة الالكترونية.</p><p
dir="rtl">موضوع  الشفافية والحوكمة المفتوحة موضوع يهم كل التونسيين والتونسيات بكل  اطيافهم وتياراتهم وأفكارهم وانتماءاتهم الحزبية والسياسية، لأن الموضوع  يحد من تفشي الفساد الاداري من ناحية، ويعطي الشعب فرصة حقيقية للمساهمة في  اتخاذ القرار وتقرير مستقبل البلاد. بالاضافة الى ان للموضوع ابعاد  ايجابية عدة من الناحية الاقتصادية، السياسية، والاجتماعية. سنعود لهذه  المفاهيم بالمزيد من التفاصيل، ونحن نعمل داخل مجموعة OpenGovTN على اصدار  كتيب يوضح اكثر هذه المفاهيم، ولكن لاختصار الطريق ان المطالبة بالشفافية  ليست مطالبة سياسية وانما هي مطالبة طبيعية وشرعية !</p><p
dir="rtl">أولا، لدي بعض التساؤلات</p><p
dir="rtl">1- هل تعتبرون البث المباشر للجلسة العامة تحقيق للشفافية نعم أم لا ؟</p><p
dir="rtl">اذا  كانت الاجابة بنعم، فاعطني لمحة عن القانون الذي هو بصدد المناقشة في  المجلس التأسيسي حاليا ومحتواه (عدد الفصول على الاقل). ويستثنى السادة  النواب من الاجابة ومن لم يجب على السؤال الأول أعلاه.</p><p
dir="rtl">اذا  كانت الاجابة بلا، فاعلم انه من موقعك كمتفرج ترى نوابا تناقش موضوع ليس  لديك عنه اية خلفية ولايصلك سوى بعض ملاحظات نواب الكتلة او المعارضة فقط.  تقريبا كما تشاهد احد المسلسلات التركية او المكسيكية. ومع ذلك نعتبره ضربا  من الشفافية نظرا لبداية التجربة الديمقراطية في تونس، واول الغيث قطرة.</p><p
dir="rtl">2-  هل تعتبرون النواب تم انتخابهم واعطائهم الثقة العمياء ليفعلوا مايريدون  داخل المجلس نعم ام لا ؟ بغض النظر عن البرامج التي قدمت سابقا ولن تنفذ  أغلبها.</p><p
dir="rtl">اذا كانت الاجابة بنعم، فضلا التوقف عند هذا السطر. وإعادة قرائة السؤال مع التركيز على عبارة &#8220;الثقة العمياء&#8221;.</p><p
dir="rtl">اذا  كانت الاجابة بلا، فاعلم أنه اي شخص مهما كان مستواه، ثقافته، وعلمه، ولم  يجد النصيحة منك فأنك تشارك في افساده وتغليطه كما قال الرئيس السابق  &#8220;غلطوني&#8221;. وكفى ما أفسدنا من بلادنا.</p><p
dir="rtl">3- هل تونس تبني دستور مؤقت، أو لـ 50 سنة، أو للأجيال القادمة ؟</p><p
dir="rtl">وأترك لكم الاجابة&#8230;</p><p
dir="rtl">فالموضوع  المطروح في الحوكمة المفتوحة هو كيف يمكنك تقديم النصح للنواب أو الحكومة   وليس لديك اية معلومة عما يدور بداخل المجلس، ولمن صوت النائب، وكأن كل  المواضيع المطروحة تخص امن الدولة، بما في ذلك الجلسات العلانية. دون  الحديث عن غياب النواب، وأذكر (فقط للذكر ولا للحصر) بغياب 14 نائب في جلسة  انتخاب رئيس الجمهورية، غياب 39 نائب في اول تصويت للمجلس التاسيسي  للمصادقة على الدستور الصغير.</p><p
dir="rtl">من  خلال نقاش النواب للفصلين 62 و68 توقفت على ملاحظات النواب الرافضين قطعيا  لعلانية أشغال اللجان. النقطة الاولى استند عليها النائب حبيب خضر وهي  &#8220;المبدأ في عمل اللجان هو السرية، وعلى هذا الاساس يكون النص : جلسات  اللجان سرية ولرئيس اللجنة أن يقرر علانيتها&#8221; ويبرر ذالك بأن عمل اللجان  عمل تمهيدي&#8230; لم تتعود أذني على ما قيل فعلى حد علمي ان الاصل في الاشياء عموما هو  المباح الا ما يمنعه القانون، او أحد يصلح لي اذا ذُكِر في قانون ما أن  الاصل في الاشياء المنع ماعدا المباح. والقياس على الدين ممكن، بأن الاصل في الاشيء الحلال الا ما حرم الله. وهي قواعد عامة والمنع هو الاستثناء. للملاحظة، فإن الاستاذ يتحدث فقط على  البث المباشر لأعمال اللجان، وهو ليس الهدف في حد ذاته. الهدف من النقاش في الفصلين تحديدا هو الشفافية  في اعمال اللجان وان اختلفت الوسائل والسبل للوصول اليها.</p><p
dir="rtl">النقطة  الثانية هي نجاعة اللجان، حيث ان علانيتها يمكن ان يعطل ويؤخر اتخاذ  القرار في اعمالها. والواقع انه يمكن ان نكتفي بنشر محاضر اللجان بعد اتمام  أعمالها، وهذا لا يعطل ولا يؤخر مجرى العمل. صورة المحضر كما توزع على  السادة النواب فهي تنشر على الموقع. لكن الوقوف على السرية التامة لكل اعمال  اللجان أمر غير مقبول.</p><p
dir="rtl">بقية المداخلات الاخرى توافق اغلبها النائب حبيب خضر، ولاتناقش مبدأ الشفافية في العمل.</p><p
dir="rtl">ملاحظة النائب محمد السعيدي أن أغلب البرلمانات تعمل لجانها في سرية غير صحيح، وهذه بعض الامثلة :</p><ol><li><p
dir="rtl">البرلمان  الاروبي : &#8220;Les commissions parlementaires se réunissent une ou deux fois  par mois à Bruxelles et leurs débats sont publics.&#8221; المصدر : <a
href="http://www.europarl.europa.eu/parliament/public/staticDisplay.do?id=45&#038;pageRank=5&#038;language=FR">http://www.europarl.europa.eu/parliament/public/staticDisplay.do?id=45&#038;pageRank=5&#038;language=FR</a></p></li><li><p
dir="rtl">فرنسا  (الفصل 46) : قرار علنية الجلسة لدى مكتب اللجنة ولا ينفرد به رئيس اللجنة  فقط : &#8220;À l’issue de chaque réunion, un compte rendu est publié, faisant  état des travaux et des votes de la commission, ainsi que des  interventions prononcées devant elle.&#8221; et que le bureau peut décider en  plus de diffuser un rapport audiovisuel. Alors que dans le projet actuel  du RI aucun rapport n&#8217;est public. <a
href="http://www.assemblee-nationale.fr/connaissance/reglement.asp#P718_60974">http://www.assemblee-nationale.fr/connaissance/reglement.asp#P718_60974</a></p></li><li><p
dir="rtl">كندا  : نوعين من اللجان مغلقة وعلانية. لكل مواطن الحق في الحضور في الجلسات  العلانية للمجلس واللجان ! محاضر واعمال اللجان المقدمة للمجلس تكون متوفرة  للعموم.  المصدر : <a
href="http://www.assnat.qc.ca/fr/document/14803.html">http://www.assnat.qc.ca/fr/document/14803.html</a> <a
href="http://www.assnat.qc.ca/fr/visiteurs/assister-travaux.html">http://www.assnat.qc.ca/fr/visiteurs/assister-travaux.html</a></p></li></ol><p
dir="rtl">ملاحظة  النائب في ما يخص لجنة الحصانة ولجنة التحقيق، أذكر بأنه يستثنى من  العلانية المواضيع الامنية، وخصوصية الافراد، وهي لا تحقق الهدف من  الشفافية وهو خدمة مصلحة  البلاد، لا أن تصبح هتكا في أعراض العباد.</p><p
dir="rtl">للمزيد  من المعلومات، المقترحات الخمس من مجموعة <a
href="https://www.facebook.com/OpenGovTN">OpenGovTN</a> حول الشفافية في  القانون الداخلي للمجلس التأسيسي متوفرة بالعربية والفرنسية على هذا الرابط : <a
href="http://opengovtn.info/2011/12/5-propositions-pour-le-reglement-interieur-de-lassemblee-constituante/">http://opengovtn.info/2011/12/5-propositions-pour-le-reglement-interieur-de-lassemblee-constituante/</a></p><p
dir="rtl"><p
dir="rtl">والدعوة مفتوحة للجميع لتبادل الآراء والمشاركة في المجموعة، علما وان المجموعة تضم حاليا اكثر من 250 عضو من تيارات مختلفة، منهم عشرة نواب من 6 احزاب مختلفة من الكتلة والمعارضة.</p><div
class='yarpp-related-rss'><p>Related posts:<ol><li><a
href='http://www.hbyconsultancy.com/blog/opengovtn-un-modele-de-gouvernance-unique-dans-une-nouvelle-democratie.html' rel='bookmark' title='OpenGovTN, Un Modele de Gouvernance Unique dans une Nouvelle Démocratie'>OpenGovTN, Un Modele de Gouvernance Unique dans une Nouvelle Démocratie</a></li><li><a
href='http://www.hbyconsultancy.com/blog/des-parlements-en-ligne-a-decouvrir.html' rel='bookmark' title='Des Parlements en Ligne à découvrir'>Des Parlements en Ligne à découvrir</a></li></ol></p></div> ]]></content:encoded> <wfw:commentRss>http://www.hbyconsultancy.com/blog/%d8%a7%d9%84%d8%b4%d9%81%d8%a7%d9%81%d9%8a%d8%a9-%d9%88%d8%a7%d9%84%d8%ad%d9%88%d9%83%d9%85%d8%a9-%d8%a7%d9%84%d9%85%d9%81%d8%aa%d9%88%d8%ad%d8%a9.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Ubuntu Howto Fix Repository Signature Verification Issues</title><link>http://www.hbyconsultancy.com/blog/ubuntu-howto-fix-repository-signature-verification-issues.html</link> <comments>http://www.hbyconsultancy.com/blog/ubuntu-howto-fix-repository-signature-verification-issues.html#comments</comments> <pubDate>Tue, 06 Sep 2011 06:38:30 +0000</pubDate> <dc:creator>Hatem Ben Yacoub</dc:creator> <category><![CDATA[Blog]]></category> <category><![CDATA[Ubuntu]]></category> <guid
isPermaLink="false">http://www.hbyconsultancy.com/?p=594</guid> <description><![CDATA[Repository signature verification issues in ubuntu are becoming annoying, I&#8217;m getting this after apt-get update : W: A error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: http://archive.ubuntu.com natty-updates Release: The following signatures were invalid: BADSIG 40976EAF437D05B5 Ubuntu Archive Automatic Signing Key W: [...]<div
class='yarpp-related-rss'> Related posts:<ol><li><a
href='http://www.hbyconsultancy.com/blog/backupexec-support-for-ubuntu-10-and-11-maverick-and-natty.html' rel='bookmark' title='BackupExec support for ubuntu 10 and 11 (maverick and natty)'>BackupExec support for ubuntu 10 and 11 (maverick and natty)</a></li><li><a
href='http://www.hbyconsultancy.com/blog/two-nodes-load-balance-and-failover-with-keepalived-and-ubuntu-server-10-04-x64.html' rel='bookmark' title='Two nodes Load balance and Failover with keepalived and Ubuntu Server 10.04 x64'>Two nodes Load balance and Failover with keepalived and Ubuntu Server 10.04 x64</a></li><li><a
href='http://www.hbyconsultancy.com/blog/shared-ocfs2-partition-on-ubuntu-server-10-04-x64.html' rel='bookmark' title='Shared OCFS2 partition on Ubuntu Server 10.04 x64'>Shared OCFS2 partition on Ubuntu Server 10.04 x64</a></li></ol></div> ]]></description> <content:encoded><![CDATA[<p>Repository signature verification issues in ubuntu are becoming annoying, I&#8217;m getting this after apt-get update :</p><p><code>W: A error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: http://archive.ubuntu.com natty-updates Release: The following signatures were invalid: BADSIG 40976EAF437D05B5 Ubuntu Archive Automatic Signing Key<br
/> W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/natty-updates/Release<br
/> W: Some index files failed to download. They have been ignored, or old ones used instead.</code></p><p>here is a quick fix :</p><p><code>$ sudo apt-get clean<br
/> $ cd /var/lib/apt<br
/> $ sudo mv lists lists.old<br
/> $ sudo mkdir -p lists/partial<br
/> $ sudo apt-get clean</code></p><p>Should be enough, but still getting error like :</p><p><code>W: GPG error: http://archive.ubuntu.com natty-updates Release: The following signatures were invalid: BADSIG 40976EAF437D05B5 Ubuntu Archive Automatic Signing Key</code></p><p>Try another clean</p><p><code>$ sudo apt-get clean<br
/> $ sudo aptitude -o Acquire::http::No-Cache=True -o Acquire::BrokenProxy=true update</code></p><p>Test now</p><p><code>$ sudo apt-get update<br
/> $ sudo apt-get upgrade</code></p><p>Fixed !</p><div
class='yarpp-related-rss'><p>Related posts:<ol><li><a
href='http://www.hbyconsultancy.com/blog/backupexec-support-for-ubuntu-10-and-11-maverick-and-natty.html' rel='bookmark' title='BackupExec support for ubuntu 10 and 11 (maverick and natty)'>BackupExec support for ubuntu 10 and 11 (maverick and natty)</a></li><li><a
href='http://www.hbyconsultancy.com/blog/two-nodes-load-balance-and-failover-with-keepalived-and-ubuntu-server-10-04-x64.html' rel='bookmark' title='Two nodes Load balance and Failover with keepalived and Ubuntu Server 10.04 x64'>Two nodes Load balance and Failover with keepalived and Ubuntu Server 10.04 x64</a></li><li><a
href='http://www.hbyconsultancy.com/blog/shared-ocfs2-partition-on-ubuntu-server-10-04-x64.html' rel='bookmark' title='Shared OCFS2 partition on Ubuntu Server 10.04 x64'>Shared OCFS2 partition on Ubuntu Server 10.04 x64</a></li></ol></p></div> ]]></content:encoded> <wfw:commentRss>http://www.hbyconsultancy.com/blog/ubuntu-howto-fix-repository-signature-verification-issues.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Dynamic page generated in 1.161 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2013-05-21 16:34:27 -->
