feed plugin e related post

This commit is contained in:
PesceWanda 2016-09-17 15:13:02 +02:00
parent b6770b6909
commit 737ed8c55a
69 changed files with 21872 additions and 1599 deletions

View file

@ -32,6 +32,8 @@ gems:
- jekyll-paginate
- jekyll-gist
- rouge
#- 'jekyll-related-posts'
- jekyll-feed

View file

@ -26,7 +26,7 @@
{% endif %}
{% endfor %}
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>

View file

@ -18,6 +18,7 @@
<div class="content container">
{{ content }}
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -8,18 +8,46 @@ layout: default
{{ content }}
</div>
<div class="related">
<h2>Related Posts</h2>
<ul class="related-posts">
{% for post in site.related_posts limit:3 %}
<li>
<h3>
<a href="{{ post.url }}">
{{ post.title }}
<small>{{ post.date | date_to_string }}</small>
</a>
</h3>
</li>
<!--<div class="related">-->
<!--<related-posts />-->
<!--<h2>Related Posts</h2>-->
<!--<ul class="related-posts">-->
<!--{% for post in site.related_posts limit:5 %}-->
<!--<li>-->
<!--<h3>-->
<!--<a href="{{ post.url }}">-->
<!--{{ post.title }}-->
<!--<small>{{ post.date | date_to_string }}</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!--{% endfor %}-->
<!--</ul>-->
<!--</div>-->
{% assign hasSimilar = '' %}
{% for post in site.related_posts %}
{% assign postHasSimilar = false %}
{% for tag in post.tags %}
{% for thisTag in page.tags %}
{% if postHasSimilar == false and hasSimilar.size < 6 and post != page and tag ==
thisTag %}
{% if hasSimilar.size == 0 %}
<h4>Similar Posts</h4>
<ul>
{% endif %}
<li class="relatedPost">
<a href="{{ site.url }}{{ post.url }}">{{ post.title }}
{% if post.series %}
(Series: {{ post.series }})
{% endif %}
</a>
</li>
{% capture hasSimilar %}{{ hasSimilar }}*{% endcapture %}
{% assign postHasSimilar = true %}
{% endif %}
{% endfor %}
{% endfor %}
</ul>
</div>
{% endfor %}
{% if hasSimilar.size > 0 %}
</ul>
{% endif %}

View file

@ -43,10 +43,10 @@ Let's explore that in details.
We can distinguish four layers of security:
* Device Security;
* Network Security;
* Message Security;
* Human Security.
* Device Security
* Network Security
* Message Security
* Human Security
###### Device Security, where everything happens
@ -60,9 +60,9 @@ Also, device security is useful if we consider that our device can fall into the
Some precautions for this purpose:
* full disk encryption;
* minimal set of application installed;
* open source operating systems.
* full disk encryption
* minimal set of application installed
* open source operating systems
###### Network Security
@ -72,16 +72,16 @@ Network security is essential to evade censorship, behavioural tracking and iden
Some tools that may help in this case:
* vpn;
* tor;
* p2p networks;
* mesh networks.
* vpn
* tor
* p2p networks
* mesh networks
And for the web:
* opensource web browsers (such as firefox);
* no google apps on android phones;
* https.
* opensource web browsers (such as firefox)
* no google apps on android phones
* https
###### Message Security
@ -92,10 +92,10 @@ Message security is essential if you want to avoid any third party snooping and
The tools we can use in this context:
* OTR;
* opensource messaging protocols (XMPP, matrix);
* Signal;
* PGP.
* OTR
* opensource messaging protocols (XMPP, matrix)
* Signal
* PGP
Also, always remember that encrypting the content of the message doesn't guarantee that your identity and the metadata are hidden.
@ -121,8 +121,8 @@ After telling the server that the client is interested in its content, a series
That is the content of a connection. Inside this packets there are a multitude of information of two kinds:
* the web page or the content we are trying to visualize;
* information on the status of both the server and the client.
* the web page or the content we are trying to visualize
* information on the status of both the server and the client
The informations contained in every packet can be analized to understand the "identity" of the client that is requesting the content on the server, first of all the IP that is a sort of web address that every computer on the net has.
@ -160,14 +160,14 @@ But there are other subtle factors that can be exploited by web companies to gat
Such factors are:
* the size of the screen and the colors supported by it;
* the timezone;
* canvas and images that the server asks your computer to generate;
* information about your OS that are sent through packets;
* the fonts available on your system;
* touch support;
* cookies;
* ads and cross site requests;
* the size of the screen and the colors supported by it
* the timezone
* canvas and images that the server asks your computer to generate
* information about your OS that are sent through packets
* the fonts available on your system
* touch support
* cookies
* ads and cross site requests
In particular, most of these are exploitable using a web programming language, javascript, that lots of web pages uses to render content. TOR users should avoid the use of javascript.

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -136,6 +140,7 @@
</div>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -145,6 +149,7 @@
</div>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -157,28 +161,28 @@
<li><p>07 Jul 2015 &raquo; <a href="/index.php/archives/102"> La Rivoluzione Digitale nella Professione dell&#8217;Avvocato </a></p></li>
<li><p>30 Jun 2015 &raquo; <a href="/index.php/archives/9"> Script per il bulk download da Archive.org </a></p></li>
<li><p>13 Jun 2015 &raquo; <a href="/index.php/archives/104"> L&#8217;FBI contro la crittografia </a></p></li>
<li><p>12 Jun 2015 &raquo; <a href="/index.php/archives/13"> Nativi digitali: oltre il recinto della Generazione Google </a></p></li>
<li><p>13 Jun 2015 &raquo; <a href="/index.php/archives/13"> Nativi digitali: oltre il recinto della Generazione Google </a></p></li>
<li><p>06 Jun 2015 &raquo; <a href="/index.php/archives/16"> Aerei FBI: pericolo per la privacy o sicurezza per i cittadini? </a></p></li>
<li><p>01 Jun 2015 &raquo; <a href="/index.php/archives/19"> Guida pratica a LUKS </a></p></li>
<li><p>01 Jun 2015 &raquo; <a href="/index.php/archives/23"> La taglia unica del Web 2.0 </a></p></li>
<li><p>22 May 2015 &raquo; <a href="/index.php/archives/27"> Defend yourself: crittografia e &#8220;plausible deniability&#8221; </a></p></li>
<li><p>18 May 2015 &raquo; <a href="/index.php/archives/32"> Rischiare il carcere per TOR </a></p></li>
<li><p>08 May 2015 &raquo; <a href="/index.php/archives/36"> NSA e le intercettazioni telefoniche </a></p></li>
<li><p>08 May 2015 &raquo; <a href="/index.php/archives/37"> Google afferma di essere pronta a dare agli utenti android più controllo sulla privacy </a></p></li>
<li><p>09 May 2015 &raquo; <a href="/index.php/archives/36"> NSA e le intercettazioni telefoniche </a></p></li>
<li><p>09 May 2015 &raquo; <a href="/index.php/archives/37"> Google afferma di essere pronta a dare agli utenti android più controllo sulla privacy </a></p></li>
<li><p>08 May 2015 &raquo; <a href="/index.php/archives/44"> La prima volta non si scorda mai! </a></p></li>
<li><p>08 May 2015 &raquo; <a href="/index.php/archives/46"> La Rete e&#8217; neutrale </a></p></li>
<li><p>04 May 2015 &raquo; <a href="/index.php/archives/47"> Trinita` </a></p></li>
<li><p>28 Apr 2015 &raquo; <a href="/index.php/archives/51"> Ancora nessuna visita dalla Cina </a></p></li>
<li><p>29 Apr 2015 &raquo; <a href="/index.php/archives/51"> Ancora nessuna visita dalla Cina </a></p></li>
<li><p>23 Apr 2015 &raquo; <a href="/index.php/archives/55"> Javascript attacca la cache del processore </a></p></li>
<li><p>19 Apr 2015 &raquo; <a href="/index.php/archives/57"> Suicide Linux </a></p></li>
<li><p>19 Apr 2015 &raquo; <a href="/index.php/archives/60"> Boneless, l&#8217;uomo senza identità che derubò HackBB </a></p></li>
<li><p>15 Apr 2015 &raquo; <a href="/index.php/archives/66"> Non abbiamo nulla da nascondere </a></p></li>
<li><p>12 Apr 2015 &raquo; <a href="/index.php/archives/67"> Facciamo luce sui profili ombra </a></p></li>
<li><p>12 Apr 2015 &raquo; <a href="/index.php/archives/70"> Anonymous: we are legion </a></p></li>
<li><p>12 Apr 2015 &raquo; <a href="/index.php/archives/73"> L&#8217;anonimato violato di TOR </a></p></li>
<li><p>13 Apr 2015 &raquo; <a href="/index.php/archives/67"> Facciamo luce sui profili ombra </a></p></li>
<li><p>13 Apr 2015 &raquo; <a href="/index.php/archives/70"> Anonymous: we are legion </a></p></li>
<li><p>13 Apr 2015 &raquo; <a href="/index.php/archives/73"> L&#8217;anonimato violato di TOR </a></p></li>
<li><p>12 Apr 2015 &raquo; <a href="/index.php/archives/78"> Tempo di elezioni </a></p></li>
<li><p>09 Apr 2015 &raquo; <a href="/index.php/archives/82"> Bitwhisper, dove anche la rete non arriva </a></p></li>
<li><p>05 Apr 2015 &raquo; <a href="/index.php/archives/85"> Il Big Bang dei Big Data </a></p></li>
<li><p>06 Apr 2015 &raquo; <a href="/index.php/archives/85"> Il Big Bang dei Big Data </a></p></li>
<li><p>04 Apr 2015 &raquo; <a href="/index.php/archives/87"> Ci presentiamo </a></p></li>
<li><p>31 Mar 2015 &raquo; <a href="/index.php/archives/90"> Chiave PGP </a></p></li>
</ul>
@ -186,6 +190,7 @@
</div>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -4,7 +4,7 @@
<title>Caught in the Net</title>
<link href="francescomecca.eu/atom.xml" rel="self"/>
<link href="francescomecca.eu/"/>
<updated>2016-07-22T15:11:39-04:00</updated>
<updated>2016-09-17T15:11:49+02:00</updated>
<id>francescomecca.eu</id>
<author>
<name>Francesco Mecca</name>
@ -15,7 +15,7 @@
<entry>
<title>A short talk about cryptography at the Berkman Klein Center</title>
<link href="francescomecca.eu/pescewanda/2016/07/07/pres-berk/"/>
<updated>2016-07-07T00:00:00-04:00</updated>
<updated>2016-07-07T00:00:00+02:00</updated>
<id>francescomecca.eu/pescewanda/2016/07/07/pres-berk</id>
<content type="html">&lt;p&gt;The 7th of July me and &lt;a href=&quot;http://studentprivacy.ca&quot;&gt;Aaron&lt;/a&gt;, as intern at the &lt;a href=&quot;http://cyber.law.harvard.edu&quot;&gt;Berkman Klein for Internet and Society&lt;/a&gt;, gave a presentation on the basics of cryptography and a quick overview on the essential tools.&lt;/p&gt;
@ -45,10 +45,10 @@
&lt;p&gt;We can distinguish four layers of security:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Device Security;&lt;/li&gt;
&lt;li&gt;Network Security;&lt;/li&gt;
&lt;li&gt;Message Security;&lt;/li&gt;
&lt;li&gt;Human Security.&lt;/li&gt;
&lt;li&gt;Device Security&lt;/li&gt;
&lt;li&gt;Network Security&lt;/li&gt;
&lt;li&gt;Message Security&lt;/li&gt;
&lt;li&gt;Human Security&lt;/li&gt;
&lt;/ul&gt;
&lt;h6 id=&quot;device-security-where-everything-happens&quot;&gt;Device Security, where everything happens&lt;/h6&gt;
@ -64,9 +64,9 @@
&lt;p&gt;Some precautions for this purpose:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;full disk encryption;&lt;/li&gt;
&lt;li&gt;minimal set of application installed;&lt;/li&gt;
&lt;li&gt;open source operating systems.&lt;/li&gt;
&lt;li&gt;full disk encryption&lt;/li&gt;
&lt;li&gt;minimal set of application installed&lt;/li&gt;
&lt;li&gt;open source operating systems&lt;/li&gt;
&lt;/ul&gt;
&lt;h6 id=&quot;network-security&quot;&gt;Network Security&lt;/h6&gt;
@ -78,18 +78,18 @@
&lt;p&gt;Some tools that may help in this case:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;vpn;&lt;/li&gt;
&lt;li&gt;tor;&lt;/li&gt;
&lt;li&gt;p2p networks;&lt;/li&gt;
&lt;li&gt;mesh networks.&lt;/li&gt;
&lt;li&gt;vpn&lt;/li&gt;
&lt;li&gt;tor&lt;/li&gt;
&lt;li&gt;p2p networks&lt;/li&gt;
&lt;li&gt;mesh networks&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;And for the web:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;opensource web browsers (such as firefox);&lt;/li&gt;
&lt;li&gt;no google apps on android phones;&lt;/li&gt;
&lt;li&gt;https.&lt;/li&gt;
&lt;li&gt;opensource web browsers (such as firefox)&lt;/li&gt;
&lt;li&gt;no google apps on android phones&lt;/li&gt;
&lt;li&gt;https&lt;/li&gt;
&lt;/ul&gt;
&lt;h6 id=&quot;message-security&quot;&gt;Message Security&lt;/h6&gt;
@ -101,10 +101,10 @@
&lt;p&gt;The tools we can use in this context:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;OTR;&lt;/li&gt;
&lt;li&gt;opensource messaging protocols (XMPP, matrix);&lt;/li&gt;
&lt;li&gt;Signal;&lt;/li&gt;
&lt;li&gt;PGP.&lt;/li&gt;
&lt;li&gt;OTR&lt;/li&gt;
&lt;li&gt;opensource messaging protocols (XMPP, matrix)&lt;/li&gt;
&lt;li&gt;Signal&lt;/li&gt;
&lt;li&gt;PGP&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Also, always remember that encrypting the content of the message doesn&amp;#39;t guarantee that your identity and the metadata are hidden.&lt;/p&gt;
@ -132,8 +132,8 @@
&lt;p&gt;That is the content of a connection. Inside this packets there are a multitude of information of two kinds:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;the web page or the content we are trying to visualize;&lt;/li&gt;
&lt;li&gt;information on the status of both the server and the client.&lt;/li&gt;
&lt;li&gt;the web page or the content we are trying to visualize&lt;/li&gt;
&lt;li&gt;information on the status of both the server and the client&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The informations contained in every packet can be analized to understand the &amp;quot;identity&amp;quot; of the client that is requesting the content on the server, first of all the IP that is a sort of web address that every computer on the net has.&lt;/p&gt;
@ -172,14 +172,14 @@ I personally host one right now and there are many others that share a little fr
&lt;p&gt;Such factors are:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;the size of the screen and the colors supported by it;&lt;/li&gt;
&lt;li&gt;the timezone;&lt;/li&gt;
&lt;li&gt;canvas and images that the server asks your computer to generate;&lt;/li&gt;
&lt;li&gt;information about your OS that are sent through packets;&lt;/li&gt;
&lt;li&gt;the fonts available on your system;&lt;/li&gt;
&lt;li&gt;touch support;&lt;/li&gt;
&lt;li&gt;cookies;&lt;/li&gt;
&lt;li&gt;ads and cross site requests;&lt;/li&gt;
&lt;li&gt;the size of the screen and the colors supported by it&lt;/li&gt;
&lt;li&gt;the timezone&lt;/li&gt;
&lt;li&gt;canvas and images that the server asks your computer to generate&lt;/li&gt;
&lt;li&gt;information about your OS that are sent through packets&lt;/li&gt;
&lt;li&gt;the fonts available on your system&lt;/li&gt;
&lt;li&gt;touch support&lt;/li&gt;
&lt;li&gt;cookies&lt;/li&gt;
&lt;li&gt;ads and cross site requests&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;In particular, most of these are exploitable using a web programming language, javascript, that lots of web pages uses to render content. TOR users should avoid the use of javascript.&lt;/p&gt;
@ -280,7 +280,7 @@ What if, when the person walks into a mall, we record the time, the location, th
<entry>
<title>Phone messaging apps comparison</title>
<link href="francescomecca.eu/pescewanda/2016/07/06/IM-services/"/>
<updated>2016-07-06T00:00:00-04:00</updated>
<updated>2016-07-06T00:00:00+02:00</updated>
<id>francescomecca.eu/pescewanda/2016/07/06/IM-services</id>
<content type="html">&lt;p&gt;I made this chart for a presentation at the &lt;a href=&quot;https://cyber.law.harvard.edu/&quot;&gt;Berkman Klein Center&lt;/a&gt;&lt;/p&gt;
@ -383,7 +383,7 @@ What if, when the person walks into a mall, we record the time, the location, th
<entry>
<title>Arduino Uno as HID keyboard</title>
<link href="francescomecca.eu/pescewanda/2016/07/05/arduino_keyboard/"/>
<updated>2016-07-05T00:00:00-04:00</updated>
<updated>2016-07-05T00:00:00+02:00</updated>
<id>francescomecca.eu/pescewanda/2016/07/05/arduino_keyboard</id>
<content type="html">&lt;p&gt;Turin is the hometown of Arduino. I have been at the &lt;a href=&quot;http://fablabtorino.org/&quot;&gt;fablab&lt;/a&gt; multiple times but I had to come all the way to America to get my hands on a simple Arduino Uno.&lt;/p&gt;
@ -459,7 +459,7 @@ dfu-programmer atmega16u2 reset
<entry>
<title>Lifehacks (2)</title>
<link href="francescomecca.eu/pescewanda/2016/05/16/lifehacks2/"/>
<updated>2016-05-16T00:00:00-04:00</updated>
<updated>2016-05-16T00:00:00+02:00</updated>
<id>francescomecca.eu/pescewanda/2016/05/16/lifehacks2</id>
<content type="html">&lt;ul&gt;
&lt;li&gt;&lt;p&gt;If you&amp;#39;re at a party and you don&amp;#39;t know anyone, make it a point to meet the host and introduce yourself. The host can introduce you to other guys/girls and it scores you points.&lt;/p&gt;&lt;/li&gt;
@ -474,7 +474,7 @@ dfu-programmer atmega16u2 reset
<entry>
<title>Interpolation using a genetic algorithm</title>
<link href="francescomecca.eu/pescewanda/2016/05/15/genetic-alg/"/>
<updated>2016-05-15T00:00:00-04:00</updated>
<updated>2016-05-15T00:00:00+02:00</updated>
<id>francescomecca.eu/pescewanda/2016/05/15/genetic-alg</id>
<content type="html">&lt;p&gt;This weekend I was in Milan to get a visa and I had the opportunity to work with a friend, Michele, on genetic algorithms.
It was the first time I dig up in such field and it was very exciting.
@ -561,7 +561,7 @@ Anyway for simple cases the GA yields good results, as an example for points (0
<entry>
<title>Why Wright's proof is a fake</title>
<link href="francescomecca.eu/pescewanda/2016/05/03/satoshisignature/"/>
<updated>2016-05-03T00:00:00-04:00</updated>
<updated>2016-05-03T00:00:00+02:00</updated>
<id>francescomecca.eu/pescewanda/2016/05/03/satoshisignature</id>
<content type="html">&lt;p&gt;I explained in my previous &lt;a href=&quot;http://francescomecca.eu/pescewanda/2016/04/17/wright-nakamoto/&quot;&gt;post&lt;/a&gt; (in italian) that the signature that Wright provided as a public proof is in fact invalid.
I want to explain briefly how you could check this claim.
@ -579,7 +579,7 @@ MEUCIQDBKn1Uly8m0UyzETObUSL4wYdBfd4ejvtoQfVcNCIK4AIgZmMsXNQWHvo6KDd2Tu6euEl1
&lt;li&gt;cut, used to remove the binary part of the input;&lt;/li&gt;
&lt;li&gt;tr, used to delete spaces and carriage return from the input;&lt;/li&gt;
&lt;/ul&gt;
&lt;div class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-&quot; data-lang=&quot;&quot;&gt;base64 -d &amp;lt;&amp;lt;&amp;lt;&#39;MEUCIQDBKn1Uly8m0UyzETObUSL4wYdBfd4ejvtoQfVcNCIK4AIgZmMsXNQWHvo6KDd2Tu6euEl13VTC3ihl6XUlhcU+fM4=&#39; | hexdump -C| cut -b 11-60| tr -d &#39; \n&#39;
&lt;div class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-&quot; data-lang=&quot;&quot;&gt;base64 -d &amp;lt;&amp;lt;&amp;lt;'MEUCIQDBKn1Uly8m0UyzETObUSL4wYdBfd4ejvtoQfVcNCIK4AIgZmMsXNQWHvo6KDd2Tu6euEl13VTC3ihl6XUlhcU+fM4=' | hexdump -C| cut -b 11-60| tr -d ' \n'
3045022100c12a7d54972f26d14cb311339b5122f8c187417dde1e8efb6841f55c34220ae0022066632c5cd4161efa3a2837764eee9eb84975dd54c2de2865e9752585c53e7cce
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
@ -610,7 +610,7 @@ MEUCIQDBKn1Uly8m0UyzETObUSL4wYdBfd4ejvtoQfVcNCIK4AIgZmMsXNQWHvo6KDd2Tu6euEl1
&lt;div class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-&quot; data-lang=&quot;&quot;&gt;3045022100c12a7d54972f26d14cb311339b5122f8c187417dde1e8efb6841f55c34220ae0022066632c5cd4161efa3a2837764eee9eb84975dd54c2de2865e9752585c53e7cce
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;If you noticed, there is also another cleartext string at the beginning of Wright&amp;#39;s post:&lt;/p&gt;
&lt;div class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-&quot; data-lang=&quot;&quot;&gt;$ base64 -d &amp;lt;&amp;lt;&amp;lt;&#39;IFdyaWdodCwgaXQgaXMgbm90IHRoZSBzYW1lIGFzIGlmIEkgc2lnbiBDcmFpZyBXcmlnaHQsIFNhdG9zaGkuCgo=&#39;
&lt;div class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-&quot; data-lang=&quot;&quot;&gt;$ base64 -d &amp;lt;&amp;lt;&amp;lt;'IFdyaWdodCwgaXQgaXMgbm90IHRoZSBzYW1lIGFzIGlmIEkgc2lnbiBDcmFpZyBXcmlnaHQsIFNhdG9zaGkuCgo='
Wright, it is not the same as if I sign Craig Wright, Satoshi.
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;Now let&amp;#39;s head to blockchain.info.
@ -644,7 +644,7 @@ At the end, I ask, why would you choose anything else than the easiest and most
<entry>
<title>#JeSuisSatoshiNakamoto</title>
<link href="francescomecca.eu/pescewanda/2016/04/17/wright-nakamoto/"/>
<updated>2016-04-17T00:00:00-04:00</updated>
<updated>2016-04-17T00:00:00+02:00</updated>
<id>francescomecca.eu/pescewanda/2016/04/17/wright-nakamoto</id>
<content type="html">&lt;p&gt;Ieri mattina appena sveglio mi sono imbattuto in questo &lt;a href=&quot;http://gavinandresen.ninja/satoshi&quot;&gt;post&lt;/a&gt; di Gavin Andresen, uno dei più importanti membri della Bitcoin Foundation.
In quelle righe Gavin attribuisce l&amp;#39;identità di Satoshi Nakamoto, il padre dei Bitcoin, a Craig Wright, un imprenditore australiano.
@ -744,7 +744,7 @@ Ogni altra prova è discutibile e non necessaria.&lt;/p&gt;
<entry>
<title>Kyuss Music Player</title>
<link href="francescomecca.eu/pescewanda/2016/04/17/kpd-player/"/>
<updated>2016-04-17T00:00:00-04:00</updated>
<updated>2016-04-17T00:00:00+02:00</updated>
<id>francescomecca.eu/pescewanda/2016/04/17/kpd-player</id>
<content type="html">&lt;p&gt;For a long time I have been using Clementine music player on my workstation. Recently I reinstalled Gentoo on my desktop and I wanted to avoid installing QT libraries of any sort.
So I switched to &lt;a href=&quot;https://www.musicpd.org/&quot;&gt;mpd&lt;/a&gt; and I have fallen in love with it. It is very flexible, fast and enriched by a lot of community software.
@ -802,7 +802,7 @@ The source for our program is stored in my git &lt;a href=&quot;http://francesco
<entry>
<title>Bright Father</title>
<link href="francescomecca.eu/pescewanda/2016/04/10/short-lesson-from-reddit/"/>
<updated>2016-04-10T00:00:00-04:00</updated>
<updated>2016-04-10T00:00:00+02:00</updated>
<id>francescomecca.eu/pescewanda/2016/04/10/short-lesson-from-reddit</id>
<content type="html">&lt;blockquote&gt;
&lt;p&gt;My father used to tell us ridiculous false information all the time. The catch was if we could catch one out and prove him wrong he&amp;#39;d give us a dollar. As we got older it would got a little less outrageous, but we&amp;#39;d still get that dollar if we could prove it. Looking back it was a good way to get us to think for ourselves.&lt;/p&gt;
@ -815,7 +815,7 @@ The source for our program is stored in my git &lt;a href=&quot;http://francesco
<entry>
<title>Lifehacks</title>
<link href="francescomecca.eu/pescewanda/2016/04/10/lifehacks/"/>
<updated>2016-04-10T00:00:00-04:00</updated>
<updated>2016-04-10T00:00:00+02:00</updated>
<id>francescomecca.eu/pescewanda/2016/04/10/lifehacks</id>
<content type="html">&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Even though you may be nervous about talking to random people, the worst you can get is &amp;quot;Go away&amp;quot;.&lt;/p&gt;&lt;/li&gt;
@ -834,25 +834,25 @@ instantaneously.&lt;/p&gt;&lt;/li&gt;
<entry>
<title>The Buridan's donkey in python</title>
<link href="francescomecca.eu/pescewanda/2016/04/02/buridan_donkey/"/>
<updated>2016-04-02T00:00:00-04:00</updated>
<updated>2016-04-02T00:00:00+02:00</updated>
<id>francescomecca.eu/pescewanda/2016/04/02/buridan_donkey</id>
<content type="html">&lt;p&gt;During the final weeks of my exam session I started reading a bit about python 3 using an excellent book: &lt;a href=&quot;http://www.diveintopython.net/&quot;&gt;Dive into Python&lt;/a&gt;.
When I noted that python uses the &lt;a href=&quot;https://en.wikipedia.org/wiki/Mersenne_Twister&quot;&gt;Mersenne Twister PRNG&lt;/a&gt; as well I decided to write another version of my &lt;a href=&quot;http://francescomecca.eu/index.php/archives/207&quot;&gt;Buridan&amp;#39;s donkey program&lt;/a&gt;.&lt;/p&gt;
&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt; &lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;random&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;sys&lt;/span&gt;
&lt;span class=&quot;k&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;__name__&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;==&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&#39;__main__&#39;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;
&lt;span class=&quot;k&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;__name__&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;==&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;'__main__'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;args&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;list&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;
&lt;span class=&quot;k&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;not&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;sys&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;stdin&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;isatty&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;():&lt;/span&gt;
&lt;span class=&quot;k&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;line&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;sys&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;stdin&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;
&lt;span class=&quot;k&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;-&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;is&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&#39;&lt;/span&gt;&lt;span class=&quot;se&quot;&gt;\n&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&#39;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;
&lt;span class=&quot;k&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;-&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;is&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;se&quot;&gt;\n&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;line&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[:&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;-&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;args&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;append&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;k&quot;&gt;else&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;args&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;sys&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;argv&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:]&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;argRange&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;len&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;args&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;k&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;i&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;range&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;argRange&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;):&lt;/span&gt;
&lt;span class=&quot;k&quot;&gt;print&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;str&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;i&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;+&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&#39;.&#39;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;args&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;pop&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;random&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;randrange&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;len&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;args&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))))&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;
&lt;span class=&quot;k&quot;&gt;print&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;str&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;i&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;+&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;'.'&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;args&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;pop&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;random&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;randrange&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;len&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;args&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))))&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;
&lt;p&gt;This script works in a different way than the one in c++.
Rather than shuffling a list made by the entries in the arguments, it pops randomly one entry from the list till the list is empty.&lt;/p&gt;
@ -869,7 +869,7 @@ The bot can be added to your contact list by simply searching for &lt;a href=&qu
<entry>
<title>How I migrated to a static blog</title>
<link href="francescomecca.eu/pescewanda/2016/04/02/blog-migrated/"/>
<updated>2016-04-02T00:00:00-04:00</updated>
<updated>2016-04-02T00:00:00+02:00</updated>
<id>francescomecca.eu/pescewanda/2016/04/02/blog-migrated</id>
<content type="html">&lt;p&gt;Until one week ago my blog was hosted at my house, on a raspberrypi with debian + wordpress. I was not satisfied by my setup because given the minimal size of my blog and the really scarce content I post every now and then, a full LLMP stack was overblown.
I decided to change distribution (my server now runs &lt;a href=&quot;http://www.voidlinux.eu/&quot;&gt;Void&lt;/a&gt;) and to migrate to a static blog without CMS nor PHP.&lt;/p&gt;
@ -906,7 +906,7 @@ title: Archive
{% endfor %}:wq
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;I noticed that in _includes/head.html there is this line:&lt;/p&gt;
&lt;div class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-&quot; data-lang=&quot;&quot;&gt;&amp;lt;link href=&#39;https://fonts.googleapis.com/css?family=Open+Sans:400,300,700,800,600&#39; rel=&#39;stylesheet&#39; type=&#39;text/css&#39;
&lt;div class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-&quot; data-lang=&quot;&quot;&gt;&amp;lt;link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300,700,800,600' rel='stylesheet' type='text/css'
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;so I proceed to remove it because is not needed for my blog.
Finally I put a link to the archive, my github page and the atom feed on the sidebar by simple adding a href on _includes/sidebar.html.&lt;/p&gt;
@ -920,7 +920,7 @@ Finally I put a link to the archive, my github page and the atom feed on the sid
<entry>
<title>The Buridan&#8217;s donkey paradox</title>
<link href="francescomecca.eu/index.php/archives/207"/>
<updated>2015-09-20T06:34:36-04:00</updated>
<updated>2015-09-20T12:34:36+02:00</updated>
<id>francescomecca.eu/index.php/archives/the-buridans-donkey-paradox</id>
<content type="html">&lt;p style=&quot;text-align: left;&quot;&gt;
The Buridan&amp;#8217;s donkey is an illustration of a paradox regarding the philosophy of moral determinism and free will.
@ -1018,7 +1018,7 @@ The original idea for the Buridan&amp;#39;s donkey came from my mentor &lt;a hre
<entry>
<title>About Perl packages in Gentoo</title>
<link href="francescomecca.eu/index.php/archives/198"/>
<updated>2015-09-11T08:52:25-04:00</updated>
<updated>2015-09-11T14:52:25+02:00</updated>
<id>francescomecca.eu/index.php/archives/about-perl-packages-in-gentoo</id>
<content type="html">&lt;p&gt;In this post I wish to explain a bit about Perl related ebuilds in Gentoo and how to update from perl-core to virtual/perl without conflicts.&lt;/p&gt;
@ -1055,7 +1055,7 @@ perl-cleaner --all&lt;/pre&gt;
<entry>
<title>56 secondi di celebrita`</title>
<link href="francescomecca.eu/index.php/archives/177"/>
<updated>2015-08-31T07:18:01-04:00</updated>
<updated>2015-08-31T13:18:01+02:00</updated>
<id>francescomecca.eu/index.php/archives/56-secondi-di-celebrita</id>
<content type="html">&lt;p&gt;&lt;a href=&quot;http://www.mantellini.it/2015/08/26/state-al-riparo/&quot; target=&quot;_blank&quot; rel=&quot;http://www.mantellini.it/2015/08/26/state-al-riparo/&quot;&gt;&lt;img class=&quot;aligncenter wp-image-178 size-full&quot; src=&quot;http://francescomecca.eu/wp-content/uploads/2015/08/Schermata-2015-08-26-alle-22.29.31.jpg&quot; alt=&quot;&quot; width=&quot;644&quot; height=&quot;533&quot; srcset=&quot;http://francescomecca.eu/wp-content/uploads/2015/08/Schermata-2015-08-26-alle-22.29.31-300x248.jpg 300w, http://francescomecca.eu/wp-content/uploads/2015/08/Schermata-2015-08-26-alle-22.29.31.jpg 644w&quot; sizes=&quot;(max-width: 644px) 100vw, 644px&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
@ -1116,7 +1116,7 @@ perl-cleaner --all&lt;/pre&gt;
<entry>
<title>Addio Blogspot</title>
<link href="francescomecca.eu/index.php/archives/171"/>
<updated>2015-08-25T05:41:56-04:00</updated>
<updated>2015-08-25T11:41:56+02:00</updated>
<id>francescomecca.eu/index.php/archives/addio-blogspot</id>
<content type="html">&lt;p&gt;&lt;a href=&quot;http://dashburst.com/nsa-needs-google-eye-in-sky/&quot;&gt;&lt;img class=&quot;aligncenter wp-image-172 size-medium&quot; src=&quot;http://francescomecca.eu/wp-content/uploads/2015/08/googlebigbrother-296x300.jpg&quot; alt=&quot;&quot; width=&quot;296&quot; height=&quot;300&quot; srcset=&quot;http://francescomecca.eu/wp-content/uploads/2015/08/googlebigbrother-296x300.jpg 296w, http://francescomecca.eu/wp-content/uploads/2015/08/googlebigbrother.jpg 669w&quot; sizes=&quot;(max-width: 296px) 100vw, 296px&quot; /&gt;&lt;/a&gt;Ho deciso di abbandonare Blogspot per le stesse ragioni per cui ho smesso di utilizzare i servizi Google due anni fa: privacy e controllo.&lt;/p&gt;
@ -1133,7 +1133,7 @@ perl-cleaner --all&lt;/pre&gt;
<entry>
<title>A pochi metri da Stallman</title>
<link href="francescomecca.eu/index.php/archives/99"/>
<updated>2015-07-21T10:51:00-04:00</updated>
<updated>2015-07-21T16:51:00+02:00</updated>
<id>francescomecca.eu/index.php/archives/a-pochi-metri-da-stallman</id>
<content type="html">&lt;p&gt;&lt;span style=&quot;font-family: inherit;&quot;&gt;Il 25 giugno sono stato alla presentazione del master di primo livello in “&lt;a href=&quot;http://nexacenter.org/2015/06/master-software-libero&quot;&gt;Management del Software Libero&lt;/a&gt;”, che si e` tenuto nella sala della palazzo della Regione Piemonte. &lt;/span&gt;&lt;/p&gt;
@ -1193,7 +1193,7 @@ perl-cleaner --all&lt;/pre&gt;
<entry>
<title>Puo` un sottomarino nuotare? Deep learning e intelligenze artificiali</title>
<link href="francescomecca.eu/index.php/archives/100"/>
<updated>2015-07-21T09:59:00-04:00</updated>
<updated>2015-07-21T15:59:00+02:00</updated>
<id>francescomecca.eu/index.php/archives/puo-un-sottomarino-nuotare-deep-learning-e-intelligenze-artificiali</id>
<content type="html">&lt;p&gt;Nel &lt;a href=&quot;https://en.wikipedia.org/wiki/De_Arte_Combinatoria&quot;&gt;De Arte Combinatoria&lt;/a&gt; (1666) Leibniz afferma che tutta la logica del pensiero umano non sia altro che una combinazione di pensieri piu` piccoli che a loro volta possono essere frammentati in idee semplicissime e concatenabili.&lt;/p&gt;
@ -1284,7 +1284,7 @@ perl-cleaner --all&lt;/pre&gt;
<entry>
<title>Dodici brevi domande sul mondo del giornalismo nell&#8217;era digitale</title>
<link href="francescomecca.eu/index.php/archives/101"/>
<updated>2015-07-07T14:18:00-04:00</updated>
<updated>2015-07-07T20:18:00+02:00</updated>
<id>francescomecca.eu/index.php/archives/dodici-brevi-domande-sul-mondo-del-giornalismo-nellera-digitale</id>
<content type="html">&lt;h4 id=&quot;premessa&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Premessa &lt;/span&gt;&lt;/h4&gt;
@ -1405,7 +1405,7 @@ perl-cleaner --all&lt;/pre&gt;
<entry>
<title>La Rivoluzione Digitale nella Professione dell&#8217;Avvocato</title>
<link href="francescomecca.eu/index.php/archives/102"/>
<updated>2015-07-07T11:35:00-04:00</updated>
<updated>2015-07-07T17:35:00+02:00</updated>
<id>francescomecca.eu/index.php/archives/la-rivoluzione-digitale-nella-professione-dellavvocato</id>
<content type="html">&lt;h4 id=&quot;premessa&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Premessa&lt;/span&gt;&lt;/h4&gt;
@ -1490,7 +1490,7 @@ perl-cleaner --all&lt;/pre&gt;
<entry>
<title>Script per il bulk download da Archive.org</title>
<link href="francescomecca.eu/index.php/archives/9"/>
<updated>2015-06-30T09:39:00-04:00</updated>
<updated>2015-06-30T15:39:00+02:00</updated>
<id>francescomecca.eu/index.php/archives/script-per-il-bulk-download-da-archive-org</id>
<content type="html">&lt;p&gt;In questi giorni mi e` capitato di dover scaricare varie collezioni da &lt;a href=&quot;https://en.wikipedia.org/wiki/Internet_Archive&quot;&gt;archive.org&lt;/a&gt;, una libreria digitale multimediale la cui missione e` l&amp;#8217;accesso universale a tutta la conoscenza.&lt;/p&gt;
@ -1537,7 +1537,7 @@ echo Complete.
<entry>
<title>L&#8217;FBI contro la crittografia</title>
<link href="francescomecca.eu/index.php/archives/104"/>
<updated>2015-06-13T08:29:00-04:00</updated>
<updated>2015-06-13T14:29:00+02:00</updated>
<id>francescomecca.eu/index.php/archives/lfbi-contro-la-crittografia</id>
<content type="html">&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;
Un argomento sul quale si è discusso molto negli ultimi tempi è quello della crittografia dei dati, un ufficiale dellFBI ha testimoniato che lo scopo delle forze dellordine è quello di collaborare con una società tecnologica per prevenire la crittografia. Anche se le compagnie non dovrebbero mettere laccesso alla crittazione dei clienti prima di preoccupazioni per la sicurezza nazionale, perché la maggiore priorità del governo è quella di prevenire luso di tecnologie che proteggono ogni cosa che le persone fanno online. Il loro scopo non è quello di usare una “back door”, termine usato dagli esperti per descrivere punti di accesso integrati, ma quello di accedere ai contenuti dopo essere passati per un processo giudiziario.
@ -1612,7 +1612,7 @@ echo Complete.
<entry>
<title>Nativi digitali: oltre il recinto della Generazione Google</title>
<link href="francescomecca.eu/index.php/archives/13"/>
<updated>2015-06-12T19:57:00-04:00</updated>
<updated>2015-06-13T01:57:00+02:00</updated>
<id>francescomecca.eu/index.php/archives/nativi-digitali-oltre-il-recinto-della-generazione-google</id>
<content type="html">&lt;p&gt;&amp;nbsp;&lt;/p&gt;
@ -1691,7 +1691,7 @@ echo Complete.
<entry>
<title>Aerei FBI: pericolo per la privacy o sicurezza per i cittadini?</title>
<link href="francescomecca.eu/index.php/archives/16"/>
<updated>2015-06-06T07:23:00-04:00</updated>
<updated>2015-06-06T13:23:00+02:00</updated>
<id>francescomecca.eu/index.php/archives/aerei-fbi-pericolo-per-la-privacy-o-sicurezza-per-i-cittadini</id>
<content type="html">&lt;p&gt;Recentemente l&amp;#8217;&lt;a href=&quot;http://bigstory.ap.org/article/4b3f220e33b64123a3909c60845da045/fbi-behind-mysterious-surveillance-aircraft-over-us-cities&quot;&gt;Associated Press&lt;/a&gt; ha dichiarato che sono stati avvistati numerosi aerei americani che volavano a bassa quota nei pressi di alcune città americane. Dopo averli tracciati si è scoperto che gli aerei erano in possesso dell&amp;#8217;FBI, che ne aveva menzionato ben 115 nel documento di bilancio federale del 2009.&lt;/p&gt;
@ -1735,7 +1735,7 @@ David Gomez, un ex agente dell&amp;#8217;FBI , ha detto che il velivolo di sorve
<entry>
<title>Guida pratica a LUKS</title>
<link href="francescomecca.eu/index.php/archives/19"/>
<updated>2015-06-01T08:14:00-04:00</updated>
<updated>2015-06-01T14:14:00+02:00</updated>
<id>francescomecca.eu/index.php/archives/guida-pratica-a-luks</id>
<content type="html">&lt;blockquote&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
@ -1869,7 +1869,7 @@ Command successful.&lt;/pre&gt;
<entry>
<title>La taglia unica del Web 2.0</title>
<link href="francescomecca.eu/index.php/archives/23"/>
<updated>2015-06-01T07:12:00-04:00</updated>
<updated>2015-06-01T13:12:00+02:00</updated>
<id>francescomecca.eu/index.php/archives/la-taglia-unica-del-web-2-0</id>
<content type="html">&lt;p&gt;&lt;a href=&quot;https://www.youtube.com/embed/e3Zs74IH0mc?feature=player_embedded&quot;&gt;In questo discorso&lt;/a&gt; al summit Web 2.0 del 2011 Chris Poole, il fondatore di 4chan, riflette sul concetto di identita` e di come stia cambiando con l&amp;#8217;introduzione del Web 2.0.&lt;/p&gt;
@ -1922,7 +1922,7 @@ Command successful.&lt;/pre&gt;
<entry>
<title>Defend yourself: crittografia e &#8220;plausible deniability&#8221;</title>
<link href="francescomecca.eu/index.php/archives/27"/>
<updated>2015-05-22T17:52:00-04:00</updated>
<updated>2015-05-22T23:52:00+02:00</updated>
<id>francescomecca.eu/index.php/archives/defend-yourself-crittografia-e-plausible-deniability</id>
<content type="html">&lt;p&gt;Nel 2000, ben molto prima dello scandalo datagate, prima perfino dell&amp;#8217;attacco alle torri gemelle, il Parlamento inglese approvo` una legge sulla sorveglianza di massa.&lt;br&gt;
Questa legge, intitolata &lt;a href=&quot;https://en.wikipedia.org/wiki/Regulation_of_Investigatory_Powers_Act_2000&quot;&gt;RIPA&lt;/a&gt;, Regulation of Investigatory Powers Act, interviene su come il corpo di polizia puo` condurre le investigazioni telematiche. &lt;/p&gt;
@ -1998,7 +1998,7 @@ Truecrypt permette di creare un volume crittografico che si presenta come un fil
<entry>
<title>Rischiare il carcere per TOR</title>
<link href="francescomecca.eu/index.php/archives/32"/>
<updated>2015-05-18T08:12:00-04:00</updated>
<updated>2015-05-18T14:12:00+02:00</updated>
<id>francescomecca.eu/index.php/archives/rischiare-il-carcere-per-tor</id>
<content type="html">&lt;p&gt;Articolo tradotto da &lt;a href=&quot;http://motherboard.vice.com/read/the-operators&quot;&gt;motherboard.vice.com&lt;/a&gt;&lt;span id=&quot;goog_42434934&quot;&gt;&lt;/span&gt;&lt;span id=&quot;goog_42434935&quot;&gt;&lt;/span&gt;&lt;/p&gt;
@ -2633,7 +2633,7 @@ Truecrypt permette di creare un volume crittografico che si presenta come un fil
<entry>
<title>NSA e le intercettazioni telefoniche</title>
<link href="francescomecca.eu/index.php/archives/36"/>
<updated>2015-05-08T18:41:00-04:00</updated>
<updated>2015-05-09T00:41:00+02:00</updated>
<id>francescomecca.eu/index.php/archives/nsa-e-le-intercettazioni-telefoniche</id>
<content type="html">&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align:justify;&quot;&gt;
&lt;table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;tr-caption-container&quot; style=&quot;float:right;margin-left:1em;text-align:right;&quot;&gt;
@ -2693,7 +2693,7 @@ Truecrypt permette di creare un volume crittografico che si presenta come un fil
<entry>
<title>Google afferma di essere pronta a dare agli utenti android più controllo sulla privacy</title>
<link href="francescomecca.eu/index.php/archives/37"/>
<updated>2015-05-08T18:18:00-04:00</updated>
<updated>2015-05-09T00:18:00+02:00</updated>
<id>francescomecca.eu/index.php/archives/google-afferma-di-essere-pronta-a-dare-agli-utenti-android-piu-controllo-sulla-privacy</id>
<content type="html">&lt;div style=&quot;text-align:center;&quot;&gt;
articolo tradotto da &lt;a href=&quot;http://www.bloomberg.com/news/articles/2015-05-07/google-said-ready-to-give-android-users-more-privacy-controls&quot; target=&quot;_blank&quot;&gt;bloomberg.com&lt;/a&gt;
@ -2729,7 +2729,7 @@ Truecrypt permette di creare un volume crittografico che si presenta come un fil
<entry>
<title>La prima volta non si scorda mai!</title>
<link href="francescomecca.eu/index.php/archives/44"/>
<updated>2015-05-08T16:16:00-04:00</updated>
<updated>2015-05-08T22:16:00+02:00</updated>
<id>francescomecca.eu/index.php/archives/la-prima-volta-non-si-scorda-mai</id>
<content type="html">&lt;p&gt;&lt;span style=&quot;font-family:inherit;&quot;&gt;Questa e` un&amp;#8217; intervista fatta da noi del blog per noi del blog dove descriviamo la nostra prima esperienza nel Web, le nostre prime impressioni e le avventure che in questi anni ci hanno aiutato a maturare confidenza e consapevolezza in Internet. &lt;/span&gt;&lt;/p&gt;
@ -2881,7 +2881,7 @@ Truecrypt permette di creare un volume crittografico che si presenta come un fil
<entry>
<title>La Rete e&#8217; neutrale</title>
<link href="francescomecca.eu/index.php/archives/46"/>
<updated>2015-05-08T11:02:00-04:00</updated>
<updated>2015-05-08T17:02:00+02:00</updated>
<id>francescomecca.eu/index.php/archives/la-rete-e-neutrale</id>
<content type="html">&lt;p&gt;Quando ogni giorno ci connettiamo al web lo facciamo con dei presupposti di cui magari non siamo consapevoli, ma che sono alla base della nostra esperienza in rete. &lt;/p&gt;
@ -2954,7 +2954,7 @@ Alcuni &lt;a href=&quot;https://trac.torproject.org/projects/tor/wiki/doc/GoodBa
<entry>
<title>Trinita`</title>
<link href="francescomecca.eu/index.php/archives/47"/>
<updated>2015-05-04T09:29:00-04:00</updated>
<updated>2015-05-04T15:29:00+02:00</updated>
<id>francescomecca.eu/index.php/archives/trinita</id>
<content type="html">&lt;table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;tr-caption-container&quot; style=&quot;float:right;margin-left:1em;text-align:right;&quot;&gt;
&lt;tr&gt;
@ -2981,7 +2981,7 @@ L&amp;#8217;opera si trova a Berlino.&lt;/p&gt;
<entry>
<title>Ancora nessuna visita dalla Cina</title>
<link href="francescomecca.eu/index.php/archives/51"/>
<updated>2015-04-28T20:34:00-04:00</updated>
<updated>2015-04-29T02:34:00+02:00</updated>
<id>francescomecca.eu/index.php/archives/ancora-nessuna-visita-dalla-cina</id>
<content type="html">&lt;p&gt;&lt;span style=&quot;font-family:inherit;&quot;&gt;Questo blog non puo&lt;code&gt;essere &amp;lt;a href=&amp;quot;http://www.greatfirewallofchina.org/index.php?siteurl=caught-in-thenet.blogspot.it&amp;quot; rel=&amp;quot;nofollow&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;visualizzato&amp;lt;/a&amp;gt; in Cina.&amp;lt;br /&amp;gt;A partire dal 1993 mentre molti altri Stati si occupavano delle leggi sul cyber crimine il CCP (Chinese Communist Party) ha dato inizio ad una delle piu&lt;/code&gt; grandi operazioni di censura moderna mai messa in atto: il Grande Firewall Cinese. &lt;/span&gt; &lt;/p&gt;
@ -3062,7 +3062,7 @@ L&amp;#8217;opera si trova a Berlino.&lt;/p&gt;
<entry>
<title>Javascript attacca la cache del processore</title>
<link href="francescomecca.eu/index.php/archives/55"/>
<updated>2015-04-23T12:52:00-04:00</updated>
<updated>2015-04-23T18:52:00+02:00</updated>
<id>francescomecca.eu/index.php/archives/javascript-attacca-la-cache-del-processore</id>
<content type="html">&lt;p&gt;Lo scorso febbraio 4 ricercatori della Columbia University hanno ideato un attacco &lt;a href=&quot;https://en.wikipedia.org/wiki/Side-channel_attack&quot;&gt;side channel&lt;/a&gt; in grado di penetrare la cache dei processori intel piu` recenti di qualsiasi OS.&lt;br&gt;
L&amp;#8217;attacco avviene attraverso l&amp;#8217;uso di codice Javascript e analizza la cache di terzo livello del processore. Il pdf tecnico e` disponibile a questo &lt;a href=&quot;http://arxiv.org/abs/1502.07373&quot;&gt;indirizzo&lt;/a&gt;.&lt;/p&gt;
@ -3091,7 +3091,7 @@ L&amp;#8217;attacco avviene attraverso l&amp;#8217;uso di codice Javascript e an
<entry>
<title>Suicide Linux</title>
<link href="francescomecca.eu/index.php/archives/57"/>
<updated>2015-04-19T16:24:00-04:00</updated>
<updated>2015-04-19T22:24:00+02:00</updated>
<id>francescomecca.eu/index.php/archives/suicide-linux</id>
<content type="html">&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align:center;&quot;&gt;
&lt;/div&gt;
@ -3208,7 +3208,7 @@ L&amp;#8217;attacco avviene attraverso l&amp;#8217;uso di codice Javascript e an
<entry>
<title>Boneless, l&#8217;uomo senza identità che derubò HackBB</title>
<link href="francescomecca.eu/index.php/archives/60"/>
<updated>2015-04-19T08:31:00-04:00</updated>
<updated>2015-04-19T14:31:00+02:00</updated>
<id>francescomecca.eu/index.php/archives/boneless-luomo-senza-identita-che-derubo-hackbb</id>
<content type="html">&lt;p&gt;Tra i molti siti illegali del Deep Web uno molto popolare che si occupa di molte attività illegali, dalla vendita di carte di credito rubate all hacking di personal computer e server, è HackBB che nel 2013 fu soggetto a uno dei pù grossi furti mai avvenuti in rete da parte di un suo amministratore chiamato Boneless.&lt;/p&gt;
@ -3247,7 +3247,7 @@ Secondo alcuni amministartori del sito, tra cui OptimusCrime, Boneless vendette
<entry>
<title>Non abbiamo nulla da nascondere</title>
<link href="francescomecca.eu/index.php/archives/66"/>
<updated>2015-04-15T06:54:00-04:00</updated>
<updated>2015-04-15T12:54:00+02:00</updated>
<id>francescomecca.eu/index.php/archives/non-abbiamo-nulla-da-nascondere</id>
<content type="html">&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
@ -3338,7 +3338,7 @@ Estimates of the current size of the body of federal criminal law vary. It has b
<entry>
<title>Facciamo luce sui profili ombra</title>
<link href="francescomecca.eu/index.php/archives/67"/>
<updated>2015-04-12T21:25:00-04:00</updated>
<updated>2015-04-13T03:25:00+02:00</updated>
<id>francescomecca.eu/index.php/archives/facciamo-luce-sui-profili-ombra</id>
<content type="html">&lt;p&gt;La BPC, Belgian Privacy Commision, il 31 marzo ha pubblicato un &lt;a href=&quot;http://www.law.kuleuven.be/icri/en/news/item/facebooks-revised-policies-and-terms-v1-2.pdf&quot;&gt;documento&lt;/a&gt; investigativo sulle policy di Facebook e da questa indagine e` emersa una violazione delle leggi europee sul &lt;a href=&quot;http://rt.com/news/245769-facebook-spies-eu-laws/&quot;&gt;tracciamento online&lt;/a&gt;.&lt;/p&gt;
@ -3395,7 +3395,7 @@ In questo modo ed attraverso i cookie Facebook riesce a riunire la maggior parte
<entry>
<title>Anonymous: we are legion</title>
<link href="francescomecca.eu/index.php/archives/70"/>
<updated>2015-04-12T20:09:00-04:00</updated>
<updated>2015-04-13T02:09:00+02:00</updated>
<id>francescomecca.eu/index.php/archives/anonymous-we-are-legion</id>
<content type="html">&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align:justify;&quot;&gt;
Trattando argomenti quali lanonimato e la privacy, non si può fare a meno di parlare di uno dei movimenti più rappresentativi di queste due tematiche, ovvero Anonymous. Questo movimento nasce nel 2003, e per il suo nome prende ispirazione dal nickname usato nei siti di imageboard, siti nei quali un thread può essere iniziato solo con un immagine, quali per esempio 4chan, 711chan, dove chi commentava senza identificarsi appariva come “anonymous”, e da qui si incominciò a identificare anonymous come una persona reale. &lt;/p&gt;
@ -3501,7 +3501,7 @@ In questo modo ed attraverso i cookie Facebook riesce a riunire la maggior parte
<entry>
<title>L&#8217;anonimato violato di TOR</title>
<link href="francescomecca.eu/index.php/archives/73"/>
<updated>2015-04-12T18:27:00-04:00</updated>
<updated>2015-04-13T00:27:00+02:00</updated>
<id>francescomecca.eu/index.php/archives/lanonimato-violato-di-tor</id>
<content type="html">&lt;p&gt;Miliardi di persone usano giornalmente internet, ma sono poche quelle a conoscenza del suo lato oscuro, il deep web,nel quale sono presenti siti che gestiscono business illegali (dalla vendita di account rubati alla clonazione di carte di credito) e al quale tutti possono accedere tramite &amp;#8220;Tor&amp;#8221;. Questo è un software che rende chi lo utilizza invisibile, poichè nasconde l&amp;#8217;indirizzo IP del computer tramite la crittografia a strati, da qui il nome scelto che sta per &amp;#8220;The Onion Router&amp;#8221;. Infatti grazie a Tor l&amp;#8217;utente si collega al sito che vuole visitare passando però da una serie di altri server che fungono da router e cifrano la comunicazione.&lt;/p&gt;
@ -3530,7 +3530,7 @@ Il payload è un tipo di shellcode, ovvero un piccolo pezzo di codice, che sfrut
<entry>
<title>Tempo di elezioni</title>
<link href="francescomecca.eu/index.php/archives/78"/>
<updated>2015-04-12T14:36:00-04:00</updated>
<updated>2015-04-12T20:36:00+02:00</updated>
<id>francescomecca.eu/index.php/archives/tempo-di-elezioni</id>
<content type="html">&lt;blockquote class=&quot;tr_bq&quot;&gt;
&lt;div style=&quot;text-align:center;&quot;&gt;
@ -3561,7 +3561,7 @@ Il payload è un tipo di shellcode, ovvero un piccolo pezzo di codice, che sfrut
<entry>
<title>Bitwhisper, dove anche la rete non arriva</title>
<link href="francescomecca.eu/index.php/archives/82"/>
<updated>2015-04-09T13:17:00-04:00</updated>
<updated>2015-04-09T19:17:00+02:00</updated>
<id>francescomecca.eu/index.php/archives/bitwhisper-dove-anche-la-rete-non-arriva</id>
<content type="html">&lt;div style=&quot;line-height:100%;margin-bottom:0;&quot;&gt;
&lt;span style=&quot;font-family:Arial, Helvetica, sans-serif;&quot;&gt;Lo scorso 26 marzo 4 ricercatori della Ben Gurion University in Israele hanno sviluppato Bitwhisper, un inconsueto malware per PC che dimostra la possibilita` di penetrare macchine anche non connesse in rete.&lt;/span&gt;
@ -3642,7 +3642,7 @@ Il payload è un tipo di shellcode, ovvero un piccolo pezzo di codice, che sfrut
<entry>
<title>Il Big Bang dei Big Data</title>
<link href="francescomecca.eu/index.php/archives/85"/>
<updated>2015-04-05T18:44:00-04:00</updated>
<updated>2015-04-06T00:44:00+02:00</updated>
<id>francescomecca.eu/index.php/archives/il-big-bang-dei-big-data</id>
<content type="html">&lt;p&gt;“Perche` sto puntando tutto sul deep learning? Perche&amp;#8217; sara` il nuovo Big Bang”&lt;/p&gt;
@ -3687,7 +3687,7 @@ I dati sono la risposta economica a: “Iscriviti, e&amp;#8217; gratis e lo sar
&lt;tr&gt;
&lt;td class=&quot;tr-caption&quot; style=&quot;text-align:center;&quot;&gt;
&lt;div class=&quot;attribution-info&quot;&gt;
&lt;a class=&quot;owner-name truncate&quot; href=&quot;https://www.flickr.com/photos/adactio/&quot; title=&quot;Go to Jeremy Keith&#39;s photostream&quot;&gt;Jeremy Keith&lt;/a&gt;
&lt;a class=&quot;owner-name truncate&quot; href=&quot;https://www.flickr.com/photos/adactio/&quot; title=&quot;Go to Jeremy Keith's photostream&quot;&gt;Jeremy Keith&lt;/a&gt;
&lt;div class=&quot;view follow-view clear-float photo-attribution&quot; id=&quot;yui_3_16_0_1_1434565601596_716&quot;&gt;
&lt;span class=&quot;relationship&quot;&gt; &lt;/span&gt;
@ -3710,7 +3710,7 @@ I dati sono la risposta economica a: “Iscriviti, e&amp;#8217; gratis e lo sar
<entry>
<title>Ci presentiamo</title>
<link href="francescomecca.eu/index.php/archives/87"/>
<updated>2015-04-04T07:50:00-04:00</updated>
<updated>2015-04-04T13:50:00+02:00</updated>
<id>francescomecca.eu/index.php/archives/ci-presentiamo</id>
<content type="html">&lt;p&gt;&lt;span style=&quot;font-family: inherit;&quot;&gt;Salve a tutti,&lt;/span&gt;&lt;/p&gt;
@ -3768,7 +3768,7 @@ I dati sono la risposta economica a: “Iscriviti, e&amp;#8217; gratis e lo sar
<entry>
<title>Chiave PGP</title>
<link href="francescomecca.eu/index.php/archives/90"/>
<updated>2015-03-31T16:36:00-04:00</updated>
<updated>2015-03-31T22:36:00+02:00</updated>
<id>francescomecca.eu/index.php/archives/chiave-pgp</id>
<content type="html">&lt;p&gt;Questa e` la nostra chiave PGP con la quale possiamo essere contattati all&amp;#8217;indirizzo&lt;br&gt;
&lt;strong&gt;pescewanda3 [at] gmail.com&lt;/strong&gt;&lt;/p&gt;

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -170,6 +174,7 @@ KVL8ZHLq8mJUrDvSavZz82vD636UDC4Y+HpzlAB9WJzNBoNx
</div>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

3872
_site/feed.xml Normal file

File diff suppressed because it is too large Load diff

4
_site/feed.xslt.xml Normal file
View file

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?><xsl:transform version="1.0"
xmlns:a="http://www.w3.org/2005/Atom"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
><xsl:strip-space elements="*"/><xsl:output method="text"/><xsl:template match="*"/><xsl:template match="a:feed"><xsl:text>Atom Feed:</xsl:text><xsl:value-of select="a:id"/><xsl:text>&#10;</xsl:text><xsl:apply-templates/></xsl:template><xsl:template match="a:entry"><xsl:text> ----------------------------------------&#10;</xsl:text><xsl:text> Feed entry:</xsl:text><xsl:value-of select="a:id"/><xsl:text>&#10;</xsl:text><xsl:apply-templates/></xsl:template><xsl:template match="a:title"><xsl:if test="parent::a:entry"><xsl:value-of select="' '"/></xsl:if><xsl:value-of select="local-name()"/>:<xsl:apply-templates/><xsl:text>&#10;</xsl:text></xsl:template><xsl:template match="a:published|a:updated"><xsl:if test="parent::a:entry"><xsl:value-of select="' '"/></xsl:if><xsl:value-of select="local-name()"/>:<xsl:apply-templates/><xsl:text>&#10;</xsl:text></xsl:template></xsl:transform>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -169,10 +173,10 @@
<p>We can distinguish four layers of security:</p>
<ul>
<li>Device Security;</li>
<li>Network Security;</li>
<li>Message Security;</li>
<li>Human Security.</li>
<li>Device Security</li>
<li>Network Security</li>
<li>Message Security</li>
<li>Human Security</li>
</ul>
<h6 id="device-security-where-everything-happens">Device Security, where everything happens</h6>
@ -188,9 +192,9 @@
<p>Some precautions for this purpose:</p>
<ul>
<li>full disk encryption;</li>
<li>minimal set of application installed;</li>
<li>open source operating systems.</li>
<li>full disk encryption</li>
<li>minimal set of application installed</li>
<li>open source operating systems</li>
</ul>
<h6 id="network-security">Network Security</h6>
@ -202,18 +206,18 @@
<p>Some tools that may help in this case:</p>
<ul>
<li>vpn;</li>
<li>tor;</li>
<li>p2p networks;</li>
<li>mesh networks.</li>
<li>vpn</li>
<li>tor</li>
<li>p2p networks</li>
<li>mesh networks</li>
</ul>
<p>And for the web:</p>
<ul>
<li>opensource web browsers (such as firefox);</li>
<li>no google apps on android phones;</li>
<li>https.</li>
<li>opensource web browsers (such as firefox)</li>
<li>no google apps on android phones</li>
<li>https</li>
</ul>
<h6 id="message-security">Message Security</h6>
@ -225,10 +229,10 @@
<p>The tools we can use in this context:</p>
<ul>
<li>OTR;</li>
<li>opensource messaging protocols (XMPP, matrix);</li>
<li>Signal;</li>
<li>PGP.</li>
<li>OTR</li>
<li>opensource messaging protocols (XMPP, matrix)</li>
<li>Signal</li>
<li>PGP</li>
</ul>
<p>Also, always remember that encrypting the content of the message doesn&#39;t guarantee that your identity and the metadata are hidden.</p>
@ -256,8 +260,8 @@
<p>That is the content of a connection. Inside this packets there are a multitude of information of two kinds:</p>
<ul>
<li>the web page or the content we are trying to visualize;</li>
<li>information on the status of both the server and the client.</li>
<li>the web page or the content we are trying to visualize</li>
<li>information on the status of both the server and the client</li>
</ul>
<p>The informations contained in every packet can be analized to understand the &quot;identity&quot; of the client that is requesting the content on the server, first of all the IP that is a sort of web address that every computer on the net has.</p>
@ -296,14 +300,14 @@ I personally host one right now and there are many others that share a little fr
<p>Such factors are:</p>
<ul>
<li>the size of the screen and the colors supported by it;</li>
<li>the timezone;</li>
<li>canvas and images that the server asks your computer to generate;</li>
<li>information about your OS that are sent through packets;</li>
<li>the fonts available on your system;</li>
<li>touch support;</li>
<li>cookies;</li>
<li>ads and cross site requests;</li>
<li>the size of the screen and the colors supported by it</li>
<li>the timezone</li>
<li>canvas and images that the server asks your computer to generate</li>
<li>information about your OS that are sent through packets</li>
<li>the fonts available on your system</li>
<li>touch support</li>
<li>cookies</li>
<li>ads and cross site requests</li>
</ul>
<p>In particular, most of these are exploitable using a web programming language, javascript, that lots of web pages uses to render content. TOR users should avoid the use of javascript.</p>
@ -709,6 +713,7 @@ Anyway for simple cases the GA yields good results, as an example for points (0
</div>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -219,41 +223,494 @@
</div>
<div class="related">
<h2>Related Posts</h2>
<ul class="related-posts">
<!--<div class="related">-->
<!--<related-posts />-->
<!--<h2>Related Posts</h2>-->
<!--<ul class="related-posts">-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/07/pres-berk/">-->
<!--A short talk about cryptography at the Berkman Klein Center-->
<!--<small>07 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/06/IM-services/">-->
<!--Phone messaging apps comparison-->
<!--<small>06 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/05/arduino_keyboard/">-->
<!--Arduino Uno as HID keyboard-->
<!--<small>05 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/16/lifehacks2/">-->
<!--Lifehacks (2)-->
<!--<small>16 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/15/genetic-alg/">-->
<!--Interpolation using a genetic algorithm-->
<!--<small>15 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--</ul>-->
<!--</div>-->
<li>
<h3>
<a href="/pescewanda/2016/07/07/pres-berk/">
A short talk about cryptography at the Berkman Klein Center
<small>07 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/06/IM-services/">
Phone messaging apps comparison
<small>06 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/05/arduino_keyboard/">
Arduino Uno as HID keyboard
<small>05 Jul 2016</small>
</a>
</h3>
</li>
</ul>
</div>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -249,41 +253,414 @@
</div>
<div class="related">
<h2>Related Posts</h2>
<ul class="related-posts">
<!--<div class="related">-->
<!--<related-posts />-->
<!--<h2>Related Posts</h2>-->
<!--<ul class="related-posts">-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/07/pres-berk/">-->
<!--A short talk about cryptography at the Berkman Klein Center-->
<!--<small>07 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/06/IM-services/">-->
<!--Phone messaging apps comparison-->
<!--<small>06 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/05/arduino_keyboard/">-->
<!--Arduino Uno as HID keyboard-->
<!--<small>05 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/16/lifehacks2/">-->
<!--Lifehacks (2)-->
<!--<small>16 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/15/genetic-alg/">-->
<!--Interpolation using a genetic algorithm-->
<!--<small>15 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--</ul>-->
<!--</div>-->
<li>
<h3>
<a href="/pescewanda/2016/07/07/pres-berk/">
A short talk about cryptography at the Berkman Klein Center
<small>07 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/06/IM-services/">
Phone messaging apps comparison
<small>06 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/05/arduino_keyboard/">
Arduino Uno as HID keyboard
<small>05 Jul 2016</small>
</a>
</h3>
</li>
</ul>
</div>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -213,41 +217,494 @@
</div>
<div class="related">
<h2>Related Posts</h2>
<ul class="related-posts">
<!--<div class="related">-->
<!--<related-posts />-->
<!--<h2>Related Posts</h2>-->
<!--<ul class="related-posts">-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/07/pres-berk/">-->
<!--A short talk about cryptography at the Berkman Klein Center-->
<!--<small>07 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/06/IM-services/">-->
<!--Phone messaging apps comparison-->
<!--<small>06 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/05/arduino_keyboard/">-->
<!--Arduino Uno as HID keyboard-->
<!--<small>05 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/16/lifehacks2/">-->
<!--Lifehacks (2)-->
<!--<small>16 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/15/genetic-alg/">-->
<!--Interpolation using a genetic algorithm-->
<!--<small>15 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--</ul>-->
<!--</div>-->
<li>
<h3>
<a href="/pescewanda/2016/07/07/pres-berk/">
A short talk about cryptography at the Berkman Klein Center
<small>07 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/06/IM-services/">
Phone messaging apps comparison
<small>06 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/05/arduino_keyboard/">
Arduino Uno as HID keyboard
<small>05 Jul 2016</small>
</a>
</h3>
</li>
</ul>
</div>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -203,41 +207,414 @@
</div>
<div class="related">
<h2>Related Posts</h2>
<ul class="related-posts">
<!--<div class="related">-->
<!--<related-posts />-->
<!--<h2>Related Posts</h2>-->
<!--<ul class="related-posts">-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/07/pres-berk/">-->
<!--A short talk about cryptography at the Berkman Klein Center-->
<!--<small>07 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/06/IM-services/">-->
<!--Phone messaging apps comparison-->
<!--<small>06 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/05/arduino_keyboard/">-->
<!--Arduino Uno as HID keyboard-->
<!--<small>05 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/16/lifehacks2/">-->
<!--Lifehacks (2)-->
<!--<small>16 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/15/genetic-alg/">-->
<!--Interpolation using a genetic algorithm-->
<!--<small>15 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--</ul>-->
<!--</div>-->
<li>
<h3>
<a href="/pescewanda/2016/07/07/pres-berk/">
A short talk about cryptography at the Berkman Klein Center
<small>07 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/06/IM-services/">
Phone messaging apps comparison
<small>06 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/05/arduino_keyboard/">
Arduino Uno as HID keyboard
<small>05 Jul 2016</small>
</a>
</h3>
</li>
</ul>
</div>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -132,7 +136,7 @@
<div class="content container">
<div class="post">
<h1 class="post-title">Nativi digitali: oltre il recinto della Generazione Google</h1>
<span class="post-date">12 Jun 2015</span>
<span class="post-date">13 Jun 2015</span>
<p>&nbsp;</p>
<blockquote class="tr_bq">
@ -207,41 +211,414 @@
</div>
<div class="related">
<h2>Related Posts</h2>
<ul class="related-posts">
<!--<div class="related">-->
<!--<related-posts />-->
<!--<h2>Related Posts</h2>-->
<!--<ul class="related-posts">-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/07/pres-berk/">-->
<!--A short talk about cryptography at the Berkman Klein Center-->
<!--<small>07 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/06/IM-services/">-->
<!--Phone messaging apps comparison-->
<!--<small>06 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/05/arduino_keyboard/">-->
<!--Arduino Uno as HID keyboard-->
<!--<small>05 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/16/lifehacks2/">-->
<!--Lifehacks (2)-->
<!--<small>16 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/15/genetic-alg/">-->
<!--Interpolation using a genetic algorithm-->
<!--<small>15 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--</ul>-->
<!--</div>-->
<li>
<h3>
<a href="/pescewanda/2016/07/07/pres-berk/">
A short talk about cryptography at the Berkman Klein Center
<small>07 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/06/IM-services/">
Phone messaging apps comparison
<small>06 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/05/arduino_keyboard/">
Arduino Uno as HID keyboard
<small>05 Jul 2016</small>
</a>
</h3>
</li>
</ul>
</div>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -172,41 +176,174 @@ David Gomez, un ex agente dell&#8217;FBI , ha detto che il velivolo di sorveglia
</div>
<div class="related">
<h2>Related Posts</h2>
<ul class="related-posts">
<!--<div class="related">-->
<!--<related-posts />-->
<!--<h2>Related Posts</h2>-->
<!--<ul class="related-posts">-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/07/pres-berk/">-->
<!--A short talk about cryptography at the Berkman Klein Center-->
<!--<small>07 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/06/IM-services/">-->
<!--Phone messaging apps comparison-->
<!--<small>06 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/05/arduino_keyboard/">-->
<!--Arduino Uno as HID keyboard-->
<!--<small>05 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/16/lifehacks2/">-->
<!--Lifehacks (2)-->
<!--<small>16 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/15/genetic-alg/">-->
<!--Interpolation using a genetic algorithm-->
<!--<small>15 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--</ul>-->
<!--</div>-->
<li>
<h3>
<a href="/pescewanda/2016/07/07/pres-berk/">
A short talk about cryptography at the Berkman Klein Center
<small>07 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/06/IM-services/">
Phone messaging apps comparison
<small>06 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/05/arduino_keyboard/">
Arduino Uno as HID keyboard
<small>05 Jul 2016</small>
</a>
</h3>
</li>
</ul>
</div>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -145,41 +149,174 @@
</div>
<div class="related">
<h2>Related Posts</h2>
<ul class="related-posts">
<!--<div class="related">-->
<!--<related-posts />-->
<!--<h2>Related Posts</h2>-->
<!--<ul class="related-posts">-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/07/pres-berk/">-->
<!--A short talk about cryptography at the Berkman Klein Center-->
<!--<small>07 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/06/IM-services/">-->
<!--Phone messaging apps comparison-->
<!--<small>06 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/05/arduino_keyboard/">-->
<!--Arduino Uno as HID keyboard-->
<!--<small>05 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/16/lifehacks2/">-->
<!--Lifehacks (2)-->
<!--<small>16 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/15/genetic-alg/">-->
<!--Interpolation using a genetic algorithm-->
<!--<small>15 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--</ul>-->
<!--</div>-->
<li>
<h3>
<a href="/pescewanda/2016/07/07/pres-berk/">
A short talk about cryptography at the Berkman Klein Center
<small>07 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/06/IM-services/">
Phone messaging apps comparison
<small>06 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/05/arduino_keyboard/">
Arduino Uno as HID keyboard
<small>05 Jul 2016</small>
</a>
</h3>
</li>
</ul>
</div>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -189,41 +193,494 @@
</div>
<div class="related">
<h2>Related Posts</h2>
<ul class="related-posts">
<!--<div class="related">-->
<!--<related-posts />-->
<!--<h2>Related Posts</h2>-->
<!--<ul class="related-posts">-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/07/pres-berk/">-->
<!--A short talk about cryptography at the Berkman Klein Center-->
<!--<small>07 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/06/IM-services/">-->
<!--Phone messaging apps comparison-->
<!--<small>06 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/05/arduino_keyboard/">-->
<!--Arduino Uno as HID keyboard-->
<!--<small>05 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/16/lifehacks2/">-->
<!--Lifehacks (2)-->
<!--<small>16 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/15/genetic-alg/">-->
<!--Interpolation using a genetic algorithm-->
<!--<small>15 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--</ul>-->
<!--</div>-->
<li>
<h3>
<a href="/pescewanda/2016/07/07/pres-berk/">
A short talk about cryptography at the Berkman Klein Center
<small>07 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/06/IM-services/">
Phone messaging apps comparison
<small>06 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/05/arduino_keyboard/">
Arduino Uno as HID keyboard
<small>05 Jul 2016</small>
</a>
</h3>
</li>
</ul>
</div>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -262,41 +266,574 @@ Command successful.</pre>
</div>
<div class="related">
<h2>Related Posts</h2>
<ul class="related-posts">
<!--<div class="related">-->
<!--<related-posts />-->
<!--<h2>Related Posts</h2>-->
<!--<ul class="related-posts">-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/07/pres-berk/">-->
<!--A short talk about cryptography at the Berkman Klein Center-->
<!--<small>07 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/06/IM-services/">-->
<!--Phone messaging apps comparison-->
<!--<small>06 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/05/arduino_keyboard/">-->
<!--Arduino Uno as HID keyboard-->
<!--<small>05 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/16/lifehacks2/">-->
<!--Lifehacks (2)-->
<!--<small>16 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/15/genetic-alg/">-->
<!--Interpolation using a genetic algorithm-->
<!--<small>15 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--</ul>-->
<!--</div>-->
<li>
<h3>
<a href="/pescewanda/2016/07/07/pres-berk/">
A short talk about cryptography at the Berkman Klein Center
<small>07 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/06/IM-services/">
Phone messaging apps comparison
<small>06 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/05/arduino_keyboard/">
Arduino Uno as HID keyboard
<small>05 Jul 2016</small>
</a>
</h3>
</li>
</ul>
</div>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -165,41 +169,654 @@ perl-cleaner --all</pre>
</div>
<div class="related">
<h2>Related Posts</h2>
<ul class="related-posts">
<!--<div class="related">-->
<!--<related-posts />-->
<!--<h2>Related Posts</h2>-->
<!--<ul class="related-posts">-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/07/pres-berk/">-->
<!--A short talk about cryptography at the Berkman Klein Center-->
<!--<small>07 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/06/IM-services/">-->
<!--Phone messaging apps comparison-->
<!--<small>06 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/05/arduino_keyboard/">-->
<!--Arduino Uno as HID keyboard-->
<!--<small>05 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/16/lifehacks2/">-->
<!--Lifehacks (2)-->
<!--<small>16 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/15/genetic-alg/">-->
<!--Interpolation using a genetic algorithm-->
<!--<small>15 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--</ul>-->
<!--</div>-->
<li>
<h3>
<a href="/pescewanda/2016/07/07/pres-berk/">
A short talk about cryptography at the Berkman Klein Center
<small>07 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/06/IM-services/">
Phone messaging apps comparison
<small>06 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/05/arduino_keyboard/">
Arduino Uno as HID keyboard
<small>05 Jul 2016</small>
</a>
</h3>
</li>
</ul>
</div>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -226,41 +230,734 @@ The original idea for the Buridan&#39;s donkey came from my mentor <a href="http
</div>
<div class="related">
<h2>Related Posts</h2>
<ul class="related-posts">
<!--<div class="related">-->
<!--<related-posts />-->
<!--<h2>Related Posts</h2>-->
<!--<ul class="related-posts">-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/07/pres-berk/">-->
<!--A short talk about cryptography at the Berkman Klein Center-->
<!--<small>07 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/06/IM-services/">-->
<!--Phone messaging apps comparison-->
<!--<small>06 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/05/arduino_keyboard/">-->
<!--Arduino Uno as HID keyboard-->
<!--<small>05 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/16/lifehacks2/">-->
<!--Lifehacks (2)-->
<!--<small>16 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/15/genetic-alg/">-->
<!--Interpolation using a genetic algorithm-->
<!--<small>15 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--</ul>-->
<!--</div>-->
<li>
<h3>
<a href="/pescewanda/2016/07/07/pres-berk/">
A short talk about cryptography at the Berkman Klein Center
<small>07 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/06/IM-services/">
Phone messaging apps comparison
<small>06 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/05/arduino_keyboard/">
Arduino Uno as HID keyboard
<small>05 Jul 2016</small>
</a>
</h3>
</li>
</ul>
</div>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -181,41 +185,654 @@
</div>
<div class="related">
<h2>Related Posts</h2>
<ul class="related-posts">
<!--<div class="related">-->
<!--<related-posts />-->
<!--<h2>Related Posts</h2>-->
<!--<ul class="related-posts">-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/07/pres-berk/">-->
<!--A short talk about cryptography at the Berkman Klein Center-->
<!--<small>07 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/06/IM-services/">-->
<!--Phone messaging apps comparison-->
<!--<small>06 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/05/arduino_keyboard/">-->
<!--Arduino Uno as HID keyboard-->
<!--<small>05 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/16/lifehacks2/">-->
<!--Lifehacks (2)-->
<!--<small>16 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/15/genetic-alg/">-->
<!--Interpolation using a genetic algorithm-->
<!--<small>15 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--</ul>-->
<!--</div>-->
<li>
<h3>
<a href="/pescewanda/2016/07/07/pres-berk/">
A short talk about cryptography at the Berkman Klein Center
<small>07 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/06/IM-services/">
Phone messaging apps comparison
<small>06 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/05/arduino_keyboard/">
Arduino Uno as HID keyboard
<small>05 Jul 2016</small>
</a>
</h3>
</li>
</ul>
</div>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -204,41 +208,414 @@ Truecrypt permette di creare un volume crittografico che si presenta come un fil
</div>
<div class="related">
<h2>Related Posts</h2>
<ul class="related-posts">
<!--<div class="related">-->
<!--<related-posts />-->
<!--<h2>Related Posts</h2>-->
<!--<ul class="related-posts">-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/07/pres-berk/">-->
<!--A short talk about cryptography at the Berkman Klein Center-->
<!--<small>07 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/06/IM-services/">-->
<!--Phone messaging apps comparison-->
<!--<small>06 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/05/arduino_keyboard/">-->
<!--Arduino Uno as HID keyboard-->
<!--<small>05 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/16/lifehacks2/">-->
<!--Lifehacks (2)-->
<!--<small>16 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/15/genetic-alg/">-->
<!--Interpolation using a genetic algorithm-->
<!--<small>15 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--</ul>-->
<!--</div>-->
<li>
<h3>
<a href="/pescewanda/2016/07/07/pres-berk/">
A short talk about cryptography at the Berkman Klein Center
<small>07 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/06/IM-services/">
Phone messaging apps comparison
<small>06 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/05/arduino_keyboard/">
Arduino Uno as HID keyboard
<small>05 Jul 2016</small>
</a>
</h3>
</li>
</ul>
</div>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -763,41 +767,174 @@
</code></pre></div>
</div>
<div class="related">
<h2>Related Posts</h2>
<ul class="related-posts">
<!--<div class="related">-->
<!--<related-posts />-->
<!--<h2>Related Posts</h2>-->
<!--<ul class="related-posts">-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/07/pres-berk/">-->
<!--A short talk about cryptography at the Berkman Klein Center-->
<!--<small>07 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/06/IM-services/">-->
<!--Phone messaging apps comparison-->
<!--<small>06 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/05/arduino_keyboard/">-->
<!--Arduino Uno as HID keyboard-->
<!--<small>05 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/16/lifehacks2/">-->
<!--Lifehacks (2)-->
<!--<small>16 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/15/genetic-alg/">-->
<!--Interpolation using a genetic algorithm-->
<!--<small>15 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--</ul>-->
<!--</div>-->
<li>
<h3>
<a href="/pescewanda/2016/07/07/pres-berk/">
A short talk about cryptography at the Berkman Klein Center
<small>07 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/06/IM-services/">
Phone messaging apps comparison
<small>06 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/05/arduino_keyboard/">
Arduino Uno as HID keyboard
<small>05 Jul 2016</small>
</a>
</h3>
</li>
</ul>
</div>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -132,7 +136,7 @@
<div class="content container">
<div class="post">
<h1 class="post-title">NSA e le intercettazioni telefoniche</h1>
<span class="post-date">08 May 2015</span>
<span class="post-date">09 May 2015</span>
<div class="MsoNormal" style="text-align:justify;">
<table cellpadding="0" cellspacing="0" class="tr-caption-container" style="float:right;margin-left:1em;text-align:right;">
<tr>
@ -188,41 +192,174 @@
</code></pre></div>
</div>
<div class="related">
<h2>Related Posts</h2>
<ul class="related-posts">
<!--<div class="related">-->
<!--<related-posts />-->
<!--<h2>Related Posts</h2>-->
<!--<ul class="related-posts">-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/07/pres-berk/">-->
<!--A short talk about cryptography at the Berkman Klein Center-->
<!--<small>07 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/06/IM-services/">-->
<!--Phone messaging apps comparison-->
<!--<small>06 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/05/arduino_keyboard/">-->
<!--Arduino Uno as HID keyboard-->
<!--<small>05 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/16/lifehacks2/">-->
<!--Lifehacks (2)-->
<!--<small>16 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/15/genetic-alg/">-->
<!--Interpolation using a genetic algorithm-->
<!--<small>15 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--</ul>-->
<!--</div>-->
<li>
<h3>
<a href="/pescewanda/2016/07/07/pres-berk/">
A short talk about cryptography at the Berkman Klein Center
<small>07 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/06/IM-services/">
Phone messaging apps comparison
<small>06 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/05/arduino_keyboard/">
Arduino Uno as HID keyboard
<small>05 Jul 2016</small>
</a>
</h3>
</li>
</ul>
</div>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -132,7 +136,7 @@
<div class="content container">
<div class="post">
<h1 class="post-title">Google afferma di essere pronta a dare agli utenti android più controllo sulla privacy</h1>
<span class="post-date">08 May 2015</span>
<span class="post-date">09 May 2015</span>
<div style="text-align:center;">
articolo tradotto da <a href="http://www.bloomberg.com/news/articles/2015-05-07/google-said-ready-to-give-android-users-more-privacy-controls" target="_blank">bloomberg.com</a>
</div>
@ -164,41 +168,174 @@
</div>
<div class="related">
<h2>Related Posts</h2>
<ul class="related-posts">
<!--<div class="related">-->
<!--<related-posts />-->
<!--<h2>Related Posts</h2>-->
<!--<ul class="related-posts">-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/07/pres-berk/">-->
<!--A short talk about cryptography at the Berkman Klein Center-->
<!--<small>07 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/06/IM-services/">-->
<!--Phone messaging apps comparison-->
<!--<small>06 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/05/arduino_keyboard/">-->
<!--Arduino Uno as HID keyboard-->
<!--<small>05 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/16/lifehacks2/">-->
<!--Lifehacks (2)-->
<!--<small>16 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/15/genetic-alg/">-->
<!--Interpolation using a genetic algorithm-->
<!--<small>15 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--</ul>-->
<!--</div>-->
<li>
<h3>
<a href="/pescewanda/2016/07/07/pres-berk/">
A short talk about cryptography at the Berkman Klein Center
<small>07 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/06/IM-services/">
Phone messaging apps comparison
<small>06 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/05/arduino_keyboard/">
Arduino Uno as HID keyboard
<small>05 Jul 2016</small>
</a>
</h3>
</li>
</ul>
</div>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -280,41 +284,414 @@
</code></pre></div>
</div>
<div class="related">
<h2>Related Posts</h2>
<ul class="related-posts">
<!--<div class="related">-->
<!--<related-posts />-->
<!--<h2>Related Posts</h2>-->
<!--<ul class="related-posts">-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/07/pres-berk/">-->
<!--A short talk about cryptography at the Berkman Klein Center-->
<!--<small>07 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/06/IM-services/">-->
<!--Phone messaging apps comparison-->
<!--<small>06 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/05/arduino_keyboard/">-->
<!--Arduino Uno as HID keyboard-->
<!--<small>05 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/16/lifehacks2/">-->
<!--Lifehacks (2)-->
<!--<small>16 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/15/genetic-alg/">-->
<!--Interpolation using a genetic algorithm-->
<!--<small>15 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--</ul>-->
<!--</div>-->
<li>
<h3>
<a href="/pescewanda/2016/07/07/pres-berk/">
A short talk about cryptography at the Berkman Klein Center
<small>07 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/06/IM-services/">
Phone messaging apps comparison
<small>06 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/05/arduino_keyboard/">
Arduino Uno as HID keyboard
<small>05 Jul 2016</small>
</a>
</h3>
</li>
</ul>
</div>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -201,41 +205,414 @@ Alcuni <a href="https://trac.torproject.org/projects/tor/wiki/doc/GoodBadISPs" t
</div>
<div class="related">
<h2>Related Posts</h2>
<ul class="related-posts">
<!--<div class="related">-->
<!--<related-posts />-->
<!--<h2>Related Posts</h2>-->
<!--<ul class="related-posts">-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/07/pres-berk/">-->
<!--A short talk about cryptography at the Berkman Klein Center-->
<!--<small>07 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/06/IM-services/">-->
<!--Phone messaging apps comparison-->
<!--<small>06 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/05/arduino_keyboard/">-->
<!--Arduino Uno as HID keyboard-->
<!--<small>05 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/16/lifehacks2/">-->
<!--Lifehacks (2)-->
<!--<small>16 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/15/genetic-alg/">-->
<!--Interpolation using a genetic algorithm-->
<!--<small>15 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--</ul>-->
<!--</div>-->
<li>
<h3>
<a href="/pescewanda/2016/07/07/pres-berk/">
A short talk about cryptography at the Berkman Klein Center
<small>07 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/06/IM-services/">
Phone messaging apps comparison
<small>06 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/05/arduino_keyboard/">
Arduino Uno as HID keyboard
<small>05 Jul 2016</small>
</a>
</h3>
</li>
</ul>
</div>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -155,41 +159,174 @@ L&#8217;opera si trova a Berlino.</p>
</div>
<div class="related">
<h2>Related Posts</h2>
<ul class="related-posts">
<!--<div class="related">-->
<!--<related-posts />-->
<!--<h2>Related Posts</h2>-->
<!--<ul class="related-posts">-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/07/pres-berk/">-->
<!--A short talk about cryptography at the Berkman Klein Center-->
<!--<small>07 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/06/IM-services/">-->
<!--Phone messaging apps comparison-->
<!--<small>06 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/05/arduino_keyboard/">-->
<!--Arduino Uno as HID keyboard-->
<!--<small>05 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/16/lifehacks2/">-->
<!--Lifehacks (2)-->
<!--<small>16 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/15/genetic-alg/">-->
<!--Interpolation using a genetic algorithm-->
<!--<small>15 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--</ul>-->
<!--</div>-->
<li>
<h3>
<a href="/pescewanda/2016/07/07/pres-berk/">
A short talk about cryptography at the Berkman Klein Center
<small>07 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/06/IM-services/">
Phone messaging apps comparison
<small>06 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/05/arduino_keyboard/">
Arduino Uno as HID keyboard
<small>05 Jul 2016</small>
</a>
</h3>
</li>
</ul>
</div>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -132,7 +136,7 @@
<div class="content container">
<div class="post">
<h1 class="post-title">Ancora nessuna visita dalla Cina</h1>
<span class="post-date">28 Apr 2015</span>
<span class="post-date">29 Apr 2015</span>
<p><span style="font-family:inherit;">Questo blog non puo<code>essere &lt;a href=&quot;http://www.greatfirewallofchina.org/index.php?siteurl=caught-in-thenet.blogspot.it&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;visualizzato&lt;/a&gt; in Cina.&lt;br /&gt;A partire dal 1993 mentre molti altri Stati si occupavano delle leggi sul cyber crimine il CCP (Chinese Communist Party) ha dato inizio ad una delle piu</code> grandi operazioni di censura moderna mai messa in atto: il Grande Firewall Cinese. </span> </p>
<div style="text-align:center;">
@ -209,41 +213,174 @@
</code></pre></div>
</div>
<div class="related">
<h2>Related Posts</h2>
<ul class="related-posts">
<!--<div class="related">-->
<!--<related-posts />-->
<!--<h2>Related Posts</h2>-->
<!--<ul class="related-posts">-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/07/pres-berk/">-->
<!--A short talk about cryptography at the Berkman Klein Center-->
<!--<small>07 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/06/IM-services/">-->
<!--Phone messaging apps comparison-->
<!--<small>06 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/05/arduino_keyboard/">-->
<!--Arduino Uno as HID keyboard-->
<!--<small>05 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/16/lifehacks2/">-->
<!--Lifehacks (2)-->
<!--<small>16 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/15/genetic-alg/">-->
<!--Interpolation using a genetic algorithm-->
<!--<small>15 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--</ul>-->
<!--</div>-->
<li>
<h3>
<a href="/pescewanda/2016/07/07/pres-berk/">
A short talk about cryptography at the Berkman Klein Center
<small>07 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/06/IM-services/">
Phone messaging apps comparison
<small>06 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/05/arduino_keyboard/">
Arduino Uno as HID keyboard
<small>05 Jul 2016</small>
</a>
</h3>
</li>
</ul>
</div>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -157,41 +161,174 @@ L&#8217;attacco avviene attraverso l&#8217;uso di codice Javascript e analizza l
</div>
<div class="related">
<h2>Related Posts</h2>
<ul class="related-posts">
<!--<div class="related">-->
<!--<related-posts />-->
<!--<h2>Related Posts</h2>-->
<!--<ul class="related-posts">-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/07/pres-berk/">-->
<!--A short talk about cryptography at the Berkman Klein Center-->
<!--<small>07 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/06/IM-services/">-->
<!--Phone messaging apps comparison-->
<!--<small>06 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/05/arduino_keyboard/">-->
<!--Arduino Uno as HID keyboard-->
<!--<small>05 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/16/lifehacks2/">-->
<!--Lifehacks (2)-->
<!--<small>16 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/15/genetic-alg/">-->
<!--Interpolation using a genetic algorithm-->
<!--<small>15 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--</ul>-->
<!--</div>-->
<li>
<h3>
<a href="/pescewanda/2016/07/07/pres-berk/">
A short talk about cryptography at the Berkman Klein Center
<small>07 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/06/IM-services/">
Phone messaging apps comparison
<small>06 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/05/arduino_keyboard/">
Arduino Uno as HID keyboard
<small>05 Jul 2016</small>
</a>
</h3>
</li>
</ul>
</div>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -245,41 +249,174 @@
</div>
<div class="related">
<h2>Related Posts</h2>
<ul class="related-posts">
<!--<div class="related">-->
<!--<related-posts />-->
<!--<h2>Related Posts</h2>-->
<!--<ul class="related-posts">-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/07/pres-berk/">-->
<!--A short talk about cryptography at the Berkman Klein Center-->
<!--<small>07 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/06/IM-services/">-->
<!--Phone messaging apps comparison-->
<!--<small>06 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/05/arduino_keyboard/">-->
<!--Arduino Uno as HID keyboard-->
<!--<small>05 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/16/lifehacks2/">-->
<!--Lifehacks (2)-->
<!--<small>16 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/15/genetic-alg/">-->
<!--Interpolation using a genetic algorithm-->
<!--<small>15 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--</ul>-->
<!--</div>-->
<li>
<h3>
<a href="/pescewanda/2016/07/07/pres-berk/">
A short talk about cryptography at the Berkman Klein Center
<small>07 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/06/IM-services/">
Phone messaging apps comparison
<small>06 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/05/arduino_keyboard/">
Arduino Uno as HID keyboard
<small>05 Jul 2016</small>
</a>
</h3>
</li>
</ul>
</div>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -167,41 +171,174 @@ Secondo alcuni amministartori del sito, tra cui OptimusCrime, Boneless vendette
</div>
<div class="related">
<h2>Related Posts</h2>
<ul class="related-posts">
<!--<div class="related">-->
<!--<related-posts />-->
<!--<h2>Related Posts</h2>-->
<!--<ul class="related-posts">-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/07/pres-berk/">-->
<!--A short talk about cryptography at the Berkman Klein Center-->
<!--<small>07 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/06/IM-services/">-->
<!--Phone messaging apps comparison-->
<!--<small>06 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/05/arduino_keyboard/">-->
<!--Arduino Uno as HID keyboard-->
<!--<small>05 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/16/lifehacks2/">-->
<!--Lifehacks (2)-->
<!--<small>16 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/15/genetic-alg/">-->
<!--Interpolation using a genetic algorithm-->
<!--<small>15 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--</ul>-->
<!--</div>-->
<li>
<h3>
<a href="/pescewanda/2016/07/07/pres-berk/">
A short talk about cryptography at the Berkman Klein Center
<small>07 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/06/IM-services/">
Phone messaging apps comparison
<small>06 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/05/arduino_keyboard/">
Arduino Uno as HID keyboard
<small>05 Jul 2016</small>
</a>
</h3>
</li>
</ul>
</div>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -219,41 +223,508 @@ Estimates of the current size of the body of federal criminal law vary. It has b
</div>
<div class="related">
<h2>Related Posts</h2>
<ul class="related-posts">
<!--<div class="related">-->
<!--<related-posts />-->
<!--<h2>Related Posts</h2>-->
<!--<ul class="related-posts">-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/07/pres-berk/">-->
<!--A short talk about cryptography at the Berkman Klein Center-->
<!--<small>07 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/06/IM-services/">-->
<!--Phone messaging apps comparison-->
<!--<small>06 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/05/arduino_keyboard/">-->
<!--Arduino Uno as HID keyboard-->
<!--<small>05 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/16/lifehacks2/">-->
<!--Lifehacks (2)-->
<!--<small>16 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/15/genetic-alg/">-->
<!--Interpolation using a genetic algorithm-->
<!--<small>15 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--</ul>-->
<!--</div>-->
<li>
<h3>
<a href="/pescewanda/2016/07/07/pres-berk/">
A short talk about cryptography at the Berkman Klein Center
<small>07 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/06/IM-services/">
Phone messaging apps comparison
<small>06 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/05/arduino_keyboard/">
Arduino Uno as HID keyboard
<small>05 Jul 2016</small>
</a>
</h3>
</li>
</ul>
</div>
<h4>Similar Posts</h4>
<ul>
<li class="relatedPost">
<a href="francescomecca.eu/pescewanda/2016/07/07/pres-berk/">A short talk about cryptography at the Berkman Klein Center
</a>
</li>
</ul>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -132,7 +136,7 @@
<div class="content container">
<div class="post">
<h1 class="post-title">Facciamo luce sui profili ombra</h1>
<span class="post-date">12 Apr 2015</span>
<span class="post-date">13 Apr 2015</span>
<p>La BPC, Belgian Privacy Commision, il 31 marzo ha pubblicato un <a href="http://www.law.kuleuven.be/icri/en/news/item/facebooks-revised-policies-and-terms-v1-2.pdf">documento</a> investigativo sulle policy di Facebook e da questa indagine e` emersa una violazione delle leggi europee sul <a href="http://rt.com/news/245769-facebook-spies-eu-laws/">tracciamento online</a>.</p>
<p>Ogni volta che un utente non loggato, o perfino senza account sul social network, visita una pagina che incorpora il bottone “like” o altri plugin sociali riceve un piccolo file di testo chiamato <a href="https://www.facebook.com/help/cookies">cookie</a> che incorpora una miriade di informazioni e la propria attivita` online in toto. Anche se si ha scelto per l&#8217;opt out un particolare cookie chiamato &#8216;<a href="http://www.zdnet.com/article/facebook-tracking-cookie-returns-according-to-hacker/">datr</a>&#8216; contenente un ID unico viene scaricato e mantenuto nella cache del browser identificando il computer dell&#8217;utente in maniera indistinguibile.<br>
@ -185,41 +189,814 @@ In questo modo ed attraverso i cookie Facebook riesce a riunire la maggior parte
</div>
<div class="related">
<h2>Related Posts</h2>
<ul class="related-posts">
<!--<div class="related">-->
<!--<related-posts />-->
<!--<h2>Related Posts</h2>-->
<!--<ul class="related-posts">-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/07/pres-berk/">-->
<!--A short talk about cryptography at the Berkman Klein Center-->
<!--<small>07 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/06/IM-services/">-->
<!--Phone messaging apps comparison-->
<!--<small>06 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/05/arduino_keyboard/">-->
<!--Arduino Uno as HID keyboard-->
<!--<small>05 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/16/lifehacks2/">-->
<!--Lifehacks (2)-->
<!--<small>16 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/15/genetic-alg/">-->
<!--Interpolation using a genetic algorithm-->
<!--<small>15 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--</ul>-->
<!--</div>-->
<li>
<h3>
<a href="/pescewanda/2016/07/07/pres-berk/">
A short talk about cryptography at the Berkman Klein Center
<small>07 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/06/IM-services/">
Phone messaging apps comparison
<small>06 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/05/arduino_keyboard/">
Arduino Uno as HID keyboard
<small>05 Jul 2016</small>
</a>
</h3>
</li>
</ul>
</div>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -132,7 +136,7 @@
<div class="content container">
<div class="post">
<h1 class="post-title">Anonymous: we are legion</h1>
<span class="post-date">12 Apr 2015</span>
<span class="post-date">13 Apr 2015</span>
<div class="MsoNormal" style="text-align:justify;">
Trattando argomenti quali lanonimato e la privacy, non si può fare a meno di parlare di uno dei movimenti più rappresentativi di queste due tematiche, ovvero Anonymous. Questo movimento nasce nel 2003, e per il suo nome prende ispirazione dal nickname usato nei siti di imageboard, siti nei quali un thread può essere iniziato solo con un immagine, quali per esempio 4chan, 711chan, dove chi commentava senza identificarsi appariva come “anonymous”, e da qui si incominciò a identificare anonymous come una persona reale. </p>
</div>
@ -234,41 +238,174 @@
</code></pre></div>
</div>
<div class="related">
<h2>Related Posts</h2>
<ul class="related-posts">
<!--<div class="related">-->
<!--<related-posts />-->
<!--<h2>Related Posts</h2>-->
<!--<ul class="related-posts">-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/07/pres-berk/">-->
<!--A short talk about cryptography at the Berkman Klein Center-->
<!--<small>07 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/06/IM-services/">-->
<!--Phone messaging apps comparison-->
<!--<small>06 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/05/arduino_keyboard/">-->
<!--Arduino Uno as HID keyboard-->
<!--<small>05 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/16/lifehacks2/">-->
<!--Lifehacks (2)-->
<!--<small>16 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/15/genetic-alg/">-->
<!--Interpolation using a genetic algorithm-->
<!--<small>15 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--</ul>-->
<!--</div>-->
<li>
<h3>
<a href="/pescewanda/2016/07/07/pres-berk/">
A short talk about cryptography at the Berkman Klein Center
<small>07 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/06/IM-services/">
Phone messaging apps comparison
<small>06 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/05/arduino_keyboard/">
Arduino Uno as HID keyboard
<small>05 Jul 2016</small>
</a>
</h3>
</li>
</ul>
</div>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -132,7 +136,7 @@
<div class="content container">
<div class="post">
<h1 class="post-title">L&#8217;anonimato violato di TOR</h1>
<span class="post-date">12 Apr 2015</span>
<span class="post-date">13 Apr 2015</span>
<p>Miliardi di persone usano giornalmente internet, ma sono poche quelle a conoscenza del suo lato oscuro, il deep web,nel quale sono presenti siti che gestiscono business illegali (dalla vendita di account rubati alla clonazione di carte di credito) e al quale tutti possono accedere tramite &#8220;Tor&#8221;. Questo è un software che rende chi lo utilizza invisibile, poichè nasconde l&#8217;indirizzo IP del computer tramite la crittografia a strati, da qui il nome scelto che sta per &#8220;The Onion Router&#8221;. Infatti grazie a Tor l&#8217;utente si collega al sito che vuole visitare passando però da una serie di altri server che fungono da router e cifrano la comunicazione.</p>
<div class="separator" style="clear:both;text-align:center;">
@ -157,41 +161,174 @@ Il payload è un tipo di shellcode, ovvero un piccolo pezzo di codice, che sfrut
</div>
<div class="related">
<h2>Related Posts</h2>
<ul class="related-posts">
<!--<div class="related">-->
<!--<related-posts />-->
<!--<h2>Related Posts</h2>-->
<!--<ul class="related-posts">-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/07/pres-berk/">-->
<!--A short talk about cryptography at the Berkman Klein Center-->
<!--<small>07 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/06/IM-services/">-->
<!--Phone messaging apps comparison-->
<!--<small>06 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/05/arduino_keyboard/">-->
<!--Arduino Uno as HID keyboard-->
<!--<small>05 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/16/lifehacks2/">-->
<!--Lifehacks (2)-->
<!--<small>16 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/15/genetic-alg/">-->
<!--Interpolation using a genetic algorithm-->
<!--<small>15 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--</ul>-->
<!--</div>-->
<li>
<h3>
<a href="/pescewanda/2016/07/07/pres-berk/">
A short talk about cryptography at the Berkman Klein Center
<small>07 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/06/IM-services/">
Phone messaging apps comparison
<small>06 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/05/arduino_keyboard/">
Arduino Uno as HID keyboard
<small>05 Jul 2016</small>
</a>
</h3>
</li>
</ul>
</div>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -159,41 +163,174 @@
</div>
<div class="related">
<h2>Related Posts</h2>
<ul class="related-posts">
<!--<div class="related">-->
<!--<related-posts />-->
<!--<h2>Related Posts</h2>-->
<!--<ul class="related-posts">-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/07/pres-berk/">-->
<!--A short talk about cryptography at the Berkman Klein Center-->
<!--<small>07 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/06/IM-services/">-->
<!--Phone messaging apps comparison-->
<!--<small>06 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/05/arduino_keyboard/">-->
<!--Arduino Uno as HID keyboard-->
<!--<small>05 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/16/lifehacks2/">-->
<!--Lifehacks (2)-->
<!--<small>16 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/15/genetic-alg/">-->
<!--Interpolation using a genetic algorithm-->
<!--<small>15 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--</ul>-->
<!--</div>-->
<li>
<h3>
<a href="/pescewanda/2016/07/07/pres-berk/">
A short talk about cryptography at the Berkman Klein Center
<small>07 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/06/IM-services/">
Phone messaging apps comparison
<small>06 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/05/arduino_keyboard/">
Arduino Uno as HID keyboard
<small>05 Jul 2016</small>
</a>
</h3>
</li>
</ul>
</div>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -209,41 +213,174 @@
</div>
<div class="related">
<h2>Related Posts</h2>
<ul class="related-posts">
<!--<div class="related">-->
<!--<related-posts />-->
<!--<h2>Related Posts</h2>-->
<!--<ul class="related-posts">-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/07/pres-berk/">-->
<!--A short talk about cryptography at the Berkman Klein Center-->
<!--<small>07 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/06/IM-services/">-->
<!--Phone messaging apps comparison-->
<!--<small>06 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/05/arduino_keyboard/">-->
<!--Arduino Uno as HID keyboard-->
<!--<small>05 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/16/lifehacks2/">-->
<!--Lifehacks (2)-->
<!--<small>16 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/15/genetic-alg/">-->
<!--Interpolation using a genetic algorithm-->
<!--<small>15 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--</ul>-->
<!--</div>-->
<li>
<h3>
<a href="/pescewanda/2016/07/07/pres-berk/">
A short talk about cryptography at the Berkman Klein Center
<small>07 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/06/IM-services/">
Phone messaging apps comparison
<small>06 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/05/arduino_keyboard/">
Arduino Uno as HID keyboard
<small>05 Jul 2016</small>
</a>
</h3>
</li>
</ul>
</div>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -132,7 +136,7 @@
<div class="content container">
<div class="post">
<h1 class="post-title">Il Big Bang dei Big Data</h1>
<span class="post-date">05 Apr 2015</span>
<span class="post-date">06 Apr 2015</span>
<p>“Perche` sto puntando tutto sul deep learning? Perche&#8217; sara` il nuovo Big Bang”</p>
<p>Cosi` ha parlato il CEO di Nvidia Jensen Huang il 3 marzo scorso alla sua <a href="http://www.gputechconf.com/">GTC 2015</a>.<br>
@ -196,41 +200,574 @@ I dati sono la risposta economica a: “Iscriviti, e&#8217; gratis e lo sarà se
</div>
<div class="related">
<h2>Related Posts</h2>
<ul class="related-posts">
<!--<div class="related">-->
<!--<related-posts />-->
<!--<h2>Related Posts</h2>-->
<!--<ul class="related-posts">-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/07/pres-berk/">-->
<!--A short talk about cryptography at the Berkman Klein Center-->
<!--<small>07 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/06/IM-services/">-->
<!--Phone messaging apps comparison-->
<!--<small>06 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/05/arduino_keyboard/">-->
<!--Arduino Uno as HID keyboard-->
<!--<small>05 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/16/lifehacks2/">-->
<!--Lifehacks (2)-->
<!--<small>16 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/15/genetic-alg/">-->
<!--Interpolation using a genetic algorithm-->
<!--<small>15 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--</ul>-->
<!--</div>-->
<li>
<h3>
<a href="/pescewanda/2016/07/07/pres-berk/">
A short talk about cryptography at the Berkman Klein Center
<small>07 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/06/IM-services/">
Phone messaging apps comparison
<small>06 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/05/arduino_keyboard/">
Arduino Uno as HID keyboard
<small>05 Jul 2016</small>
</a>
</h3>
</li>
</ul>
</div>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -186,41 +190,174 @@
</div>
<div class="related">
<h2>Related Posts</h2>
<ul class="related-posts">
<!--<div class="related">-->
<!--<related-posts />-->
<!--<h2>Related Posts</h2>-->
<!--<ul class="related-posts">-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/07/pres-berk/">-->
<!--A short talk about cryptography at the Berkman Klein Center-->
<!--<small>07 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/06/IM-services/">-->
<!--Phone messaging apps comparison-->
<!--<small>06 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/05/arduino_keyboard/">-->
<!--Arduino Uno as HID keyboard-->
<!--<small>05 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/16/lifehacks2/">-->
<!--Lifehacks (2)-->
<!--<small>16 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/15/genetic-alg/">-->
<!--Interpolation using a genetic algorithm-->
<!--<small>15 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--</ul>-->
<!--</div>-->
<li>
<h3>
<a href="/pescewanda/2016/07/07/pres-berk/">
A short talk about cryptography at the Berkman Klein Center
<small>07 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/06/IM-services/">
Phone messaging apps comparison
<small>06 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/05/arduino_keyboard/">
Arduino Uno as HID keyboard
<small>05 Jul 2016</small>
</a>
</h3>
</li>
</ul>
</div>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -175,41 +179,414 @@ echo Complete.
</div>
<div class="related">
<h2>Related Posts</h2>
<ul class="related-posts">
<!--<div class="related">-->
<!--<related-posts />-->
<!--<h2>Related Posts</h2>-->
<!--<ul class="related-posts">-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/07/pres-berk/">-->
<!--A short talk about cryptography at the Berkman Klein Center-->
<!--<small>07 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/06/IM-services/">-->
<!--Phone messaging apps comparison-->
<!--<small>06 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/05/arduino_keyboard/">-->
<!--Arduino Uno as HID keyboard-->
<!--<small>05 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/16/lifehacks2/">-->
<!--Lifehacks (2)-->
<!--<small>16 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/15/genetic-alg/">-->
<!--Interpolation using a genetic algorithm-->
<!--<small>15 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--</ul>-->
<!--</div>-->
<li>
<h3>
<a href="/pescewanda/2016/07/07/pres-berk/">
A short talk about cryptography at the Berkman Klein Center
<small>07 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/06/IM-services/">
Phone messaging apps comparison
<small>06 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/05/arduino_keyboard/">
Arduino Uno as HID keyboard
<small>05 Jul 2016</small>
</a>
</h3>
</li>
</ul>
</div>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -146,41 +150,174 @@
</div>
<div class="related">
<h2>Related Posts</h2>
<ul class="related-posts">
<!--<div class="related">-->
<!--<related-posts />-->
<!--<h2>Related Posts</h2>-->
<!--<ul class="related-posts">-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/07/pres-berk/">-->
<!--A short talk about cryptography at the Berkman Klein Center-->
<!--<small>07 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/06/IM-services/">-->
<!--Phone messaging apps comparison-->
<!--<small>06 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/05/arduino_keyboard/">-->
<!--Arduino Uno as HID keyboard-->
<!--<small>05 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/16/lifehacks2/">-->
<!--Lifehacks (2)-->
<!--<small>16 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/15/genetic-alg/">-->
<!--Interpolation using a genetic algorithm-->
<!--<small>15 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--</ul>-->
<!--</div>-->
<li>
<h3>
<a href="/pescewanda/2016/07/07/pres-berk/">
A short talk about cryptography at the Berkman Klein Center
<small>07 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/06/IM-services/">
Phone messaging apps comparison
<small>06 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/05/arduino_keyboard/">
Arduino Uno as HID keyboard
<small>05 Jul 2016</small>
</a>
</h3>
</li>
</ul>
</div>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -188,41 +192,414 @@
</div>
<div class="related">
<h2>Related Posts</h2>
<ul class="related-posts">
<!--<div class="related">-->
<!--<related-posts />-->
<!--<h2>Related Posts</h2>-->
<!--<ul class="related-posts">-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/07/pres-berk/">-->
<!--A short talk about cryptography at the Berkman Klein Center-->
<!--<small>07 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/06/IM-services/">-->
<!--Phone messaging apps comparison-->
<!--<small>06 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/05/arduino_keyboard/">-->
<!--Arduino Uno as HID keyboard-->
<!--<small>05 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/16/lifehacks2/">-->
<!--Lifehacks (2)-->
<!--<small>16 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/15/genetic-alg/">-->
<!--Interpolation using a genetic algorithm-->
<!--<small>15 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--</ul>-->
<!--</div>-->
<li>
<h3>
<a href="/pescewanda/2016/07/07/pres-berk/">
A short talk about cryptography at the Berkman Klein Center
<small>07 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/06/IM-services/">
Phone messaging apps comparison
<small>06 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/05/arduino_keyboard/">
Arduino Uno as HID keyboard
<small>05 Jul 2016</small>
</a>
</h3>
</li>
</ul>
</div>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -167,6 +171,7 @@
</div>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -438,6 +442,7 @@ instantaneously.</p></li>
</div>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -447,6 +451,7 @@ perl-cleaner --all</pre>
</div>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -539,6 +543,7 @@
</div>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -269,7 +273,7 @@ echo Complete.
</a>
</h1>
<span class="post-date">12 Jun 2015</span>
<span class="post-date">13 Jun 2015</span>
<p>&nbsp;</p>
@ -544,6 +548,7 @@ Command successful.</pre>
</div>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -915,7 +919,7 @@ Truecrypt permette di creare un volume crittografico che si presenta come un fil
</a>
</h1>
<span class="post-date">08 May 2015</span>
<span class="post-date">09 May 2015</span>
<div class="MsoNormal" style="text-align:justify;">
<table cellpadding="0" cellspacing="0" class="tr-caption-container" style="float:right;margin-left:1em;text-align:right;">
@ -979,7 +983,7 @@ Truecrypt permette di creare un volume crittografico che si presenta come un fil
</a>
</h1>
<span class="post-date">08 May 2015</span>
<span class="post-date">09 May 2015</span>
<div style="text-align:center;">
articolo tradotto da <a href="http://www.bloomberg.com/news/articles/2015-05-07/google-said-ready-to-give-android-users-more-privacy-controls" target="_blank">bloomberg.com</a>
@ -1025,6 +1029,7 @@ Truecrypt permette di creare un volume crittografico che si presenta come un fil
</div>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -403,7 +407,7 @@ L&#8217;opera si trova a Berlino.</p>
</a>
</h1>
<span class="post-date">28 Apr 2015</span>
<span class="post-date">29 Apr 2015</span>
<p><span style="font-family:inherit;">Questo blog non puo<code>essere &lt;a href=&quot;http://www.greatfirewallofchina.org/index.php?siteurl=caught-in-thenet.blogspot.it&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;visualizzato&lt;/a&gt; in Cina.&lt;br /&gt;A partire dal 1993 mentre molti altri Stati si occupavano delle leggi sul cyber crimine il CCP (Chinese Communist Party) ha dato inizio ad una delle piu</code> grandi operazioni di censura moderna mai messa in atto: il Grande Firewall Cinese. </span> </p>
@ -527,6 +531,7 @@ L&#8217;attacco avviene attraverso l&#8217;uso di codice Javascript e analizza l
</div>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -398,7 +402,7 @@ Estimates of the current size of the body of federal criminal law vary. It has b
</a>
</h1>
<span class="post-date">12 Apr 2015</span>
<span class="post-date">13 Apr 2015</span>
<p>La BPC, Belgian Privacy Commision, il 31 marzo ha pubblicato un <a href="http://www.law.kuleuven.be/icri/en/news/item/facebooks-revised-policies-and-terms-v1-2.pdf">documento</a> investigativo sulle policy di Facebook e da questa indagine e` emersa una violazione delle leggi europee sul <a href="http://rt.com/news/245769-facebook-spies-eu-laws/">tracciamento online</a>.</p>
@ -459,7 +463,7 @@ In questo modo ed attraverso i cookie Facebook riesce a riunire la maggior parte
</a>
</h1>
<span class="post-date">12 Apr 2015</span>
<span class="post-date">13 Apr 2015</span>
<div class="MsoNormal" style="text-align:justify;">
Trattando argomenti quali lanonimato e la privacy, non si può fare a meno di parlare di uno dei movimenti più rappresentativi di queste due tematiche, ovvero Anonymous. Questo movimento nasce nel 2003, e per il suo nome prende ispirazione dal nickname usato nei siti di imageboard, siti nei quali un thread può essere iniziato solo con un immagine, quali per esempio 4chan, 711chan, dove chi commentava senza identificarsi appariva come “anonymous”, e da qui si incominciò a identificare anonymous come una persona reale. </p>
@ -575,6 +579,7 @@ In questo modo ed attraverso i cookie Facebook riesce a riunire la maggior parte
</div>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -139,7 +143,7 @@
</a>
</h1>
<span class="post-date">12 Apr 2015</span>
<span class="post-date">13 Apr 2015</span>
<p>Miliardi di persone usano giornalmente internet, ma sono poche quelle a conoscenza del suo lato oscuro, il deep web,nel quale sono presenti siti che gestiscono business illegali (dalla vendita di account rubati alla clonazione di carte di credito) e al quale tutti possono accedere tramite &#8220;Tor&#8221;. Questo è un software che rende chi lo utilizza invisibile, poichè nasconde l&#8217;indirizzo IP del computer tramite la crittografia a strati, da qui il nome scelto che sta per &#8220;The Onion Router&#8221;. Infatti grazie a Tor l&#8217;utente si collega al sito che vuole visitare passando però da una serie di altri server che fungono da router e cifrano la comunicazione.</p>
@ -292,7 +296,7 @@ Il payload è un tipo di shellcode, ovvero un piccolo pezzo di codice, che sfrut
</a>
</h1>
<span class="post-date">05 Apr 2015</span>
<span class="post-date">06 Apr 2015</span>
<p>“Perche` sto puntando tutto sul deep learning? Perche&#8217; sara` il nuovo Big Bang”</p>
@ -432,6 +436,7 @@ I dati sono la risposta economica a: “Iscriviti, e&#8217; gratis e lo sarà se
</div>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -179,41 +183,334 @@ Finally I put a link to the archive, my github page and the atom feed on the sid
</div>
<div class="related">
<h2>Related Posts</h2>
<ul class="related-posts">
<!--<div class="related">-->
<!--<related-posts />-->
<!--<h2>Related Posts</h2>-->
<!--<ul class="related-posts">-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/07/pres-berk/">-->
<!--A short talk about cryptography at the Berkman Klein Center-->
<!--<small>07 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/06/IM-services/">-->
<!--Phone messaging apps comparison-->
<!--<small>06 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/05/arduino_keyboard/">-->
<!--Arduino Uno as HID keyboard-->
<!--<small>05 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/16/lifehacks2/">-->
<!--Lifehacks (2)-->
<!--<small>16 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/15/genetic-alg/">-->
<!--Interpolation using a genetic algorithm-->
<!--<small>15 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--</ul>-->
<!--</div>-->
<li>
<h3>
<a href="/pescewanda/2016/07/07/pres-berk/">
A short talk about cryptography at the Berkman Klein Center
<small>07 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/06/IM-services/">
Phone messaging apps comparison
<small>06 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/05/arduino_keyboard/">
Arduino Uno as HID keyboard
<small>05 Jul 2016</small>
</a>
</h3>
</li>
</ul>
</div>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -163,41 +167,517 @@ The bot can be added to your contact list by simply searching for <a href="http:
</div>
<div class="related">
<h2>Related Posts</h2>
<ul class="related-posts">
<!--<div class="related">-->
<!--<related-posts />-->
<!--<h2>Related Posts</h2>-->
<!--<ul class="related-posts">-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/07/pres-berk/">-->
<!--A short talk about cryptography at the Berkman Klein Center-->
<!--<small>07 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/06/IM-services/">-->
<!--Phone messaging apps comparison-->
<!--<small>06 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/05/arduino_keyboard/">-->
<!--Arduino Uno as HID keyboard-->
<!--<small>05 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/16/lifehacks2/">-->
<!--Lifehacks (2)-->
<!--<small>16 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/15/genetic-alg/">-->
<!--Interpolation using a genetic algorithm-->
<!--<small>15 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--</ul>-->
<!--</div>-->
<li>
<h3>
<a href="/pescewanda/2016/07/07/pres-berk/">
A short talk about cryptography at the Berkman Klein Center
<small>07 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/06/IM-services/">
Phone messaging apps comparison
<small>06 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/05/arduino_keyboard/">
Arduino Uno as HID keyboard
<small>05 Jul 2016</small>
</a>
</h3>
</li>
</ul>
</div>
<h4>Similar Posts</h4>
<ul>
<li class="relatedPost">
<a href="francescomecca.eu/pescewanda/2016/05/15/genetic-alg/">Interpolation using a genetic algorithm
</a>
</li>
<li class="relatedPost">
<a href="francescomecca.eu/pescewanda/2016/04/17/kpd-player/">Kyuss Music Player
</a>
</li>
</ul>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -147,41 +151,360 @@ instantaneously.</p></li>
</div>
<div class="related">
<h2>Related Posts</h2>
<ul class="related-posts">
<!--<div class="related">-->
<!--<related-posts />-->
<!--<h2>Related Posts</h2>-->
<!--<ul class="related-posts">-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/07/pres-berk/">-->
<!--A short talk about cryptography at the Berkman Klein Center-->
<!--<small>07 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/06/IM-services/">-->
<!--Phone messaging apps comparison-->
<!--<small>06 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/05/arduino_keyboard/">-->
<!--Arduino Uno as HID keyboard-->
<!--<small>05 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/16/lifehacks2/">-->
<!--Lifehacks (2)-->
<!--<small>16 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/15/genetic-alg/">-->
<!--Interpolation using a genetic algorithm-->
<!--<small>15 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--</ul>-->
<!--</div>-->
<li>
<h3>
<a href="/pescewanda/2016/07/07/pres-berk/">
A short talk about cryptography at the Berkman Klein Center
<small>07 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/06/IM-services/">
Phone messaging apps comparison
<small>06 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/05/arduino_keyboard/">
Arduino Uno as HID keyboard
<small>05 Jul 2016</small>
</a>
</h3>
</li>
</ul>
</div>
<h4>Similar Posts</h4>
<ul>
<li class="relatedPost">
<a href="francescomecca.eu/pescewanda/2016/05/16/lifehacks2/">Lifehacks (2)
</a>
</li>
</ul>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -141,41 +145,346 @@
</div>
<div class="related">
<h2>Related Posts</h2>
<ul class="related-posts">
<!--<div class="related">-->
<!--<related-posts />-->
<!--<h2>Related Posts</h2>-->
<!--<ul class="related-posts">-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/07/pres-berk/">-->
<!--A short talk about cryptography at the Berkman Klein Center-->
<!--<small>07 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/06/IM-services/">-->
<!--Phone messaging apps comparison-->
<!--<small>06 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/05/arduino_keyboard/">-->
<!--Arduino Uno as HID keyboard-->
<!--<small>05 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/16/lifehacks2/">-->
<!--Lifehacks (2)-->
<!--<small>16 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/15/genetic-alg/">-->
<!--Interpolation using a genetic algorithm-->
<!--<small>15 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--</ul>-->
<!--</div>-->
<li>
<h3>
<a href="/pescewanda/2016/07/07/pres-berk/">
A short talk about cryptography at the Berkman Klein Center
<small>07 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/06/IM-services/">
Phone messaging apps comparison
<small>06 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/05/arduino_keyboard/">
Arduino Uno as HID keyboard
<small>05 Jul 2016</small>
</a>
</h3>
</li>
</ul>
</div>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -186,41 +190,526 @@ The source for our program is stored in my git <a href="http://francescomecca.eu
</div>
<div class="related">
<h2>Related Posts</h2>
<ul class="related-posts">
<!--<div class="related">-->
<!--<related-posts />-->
<!--<h2>Related Posts</h2>-->
<!--<ul class="related-posts">-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/07/pres-berk/">-->
<!--A short talk about cryptography at the Berkman Klein Center-->
<!--<small>07 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/06/IM-services/">-->
<!--Phone messaging apps comparison-->
<!--<small>06 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/05/arduino_keyboard/">-->
<!--Arduino Uno as HID keyboard-->
<!--<small>05 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/16/lifehacks2/">-->
<!--Lifehacks (2)-->
<!--<small>16 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/15/genetic-alg/">-->
<!--Interpolation using a genetic algorithm-->
<!--<small>15 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--</ul>-->
<!--</div>-->
<li>
<h3>
<a href="/pescewanda/2016/07/07/pres-berk/">
A short talk about cryptography at the Berkman Klein Center
<small>07 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/06/IM-services/">
Phone messaging apps comparison
<small>06 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/05/arduino_keyboard/">
Arduino Uno as HID keyboard
<small>05 Jul 2016</small>
</a>
</h3>
</li>
</ul>
</div>
<h4>Similar Posts</h4>
<ul>
<li class="relatedPost">
<a href="francescomecca.eu/pescewanda/2016/07/05/arduino_keyboard/">Arduino Uno as HID keyboard
</a>
</li>
<li class="relatedPost">
<a href="francescomecca.eu/pescewanda/2016/05/15/genetic-alg/">Interpolation using a genetic algorithm
</a>
</li>
<li class="relatedPost">
<a href="francescomecca.eu/pescewanda/2016/04/02/buridan_donkey/">The Buridan's donkey in python
</a>
</li>
</ul>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -228,41 +232,576 @@ Ogni altra prova è discutibile e non necessaria.</p>
</div>
<div class="related">
<h2>Related Posts</h2>
<ul class="related-posts">
<!--<div class="related">-->
<!--<related-posts />-->
<!--<h2>Related Posts</h2>-->
<!--<ul class="related-posts">-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/07/pres-berk/">-->
<!--A short talk about cryptography at the Berkman Klein Center-->
<!--<small>07 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/06/IM-services/">-->
<!--Phone messaging apps comparison-->
<!--<small>06 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/05/arduino_keyboard/">-->
<!--Arduino Uno as HID keyboard-->
<!--<small>05 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/16/lifehacks2/">-->
<!--Lifehacks (2)-->
<!--<small>16 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/15/genetic-alg/">-->
<!--Interpolation using a genetic algorithm-->
<!--<small>15 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--</ul>-->
<!--</div>-->
<li>
<h3>
<a href="/pescewanda/2016/07/07/pres-berk/">
A short talk about cryptography at the Berkman Klein Center
<small>07 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/06/IM-services/">
Phone messaging apps comparison
<small>06 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/05/arduino_keyboard/">
Arduino Uno as HID keyboard
<small>05 Jul 2016</small>
</a>
</h3>
</li>
</ul>
</div>
<h4>Similar Posts</h4>
<ul>
<li class="relatedPost">
<a href="francescomecca.eu/pescewanda/2016/05/03/satoshisignature/">Why Wright's proof is a fake
</a>
</li>
</ul>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -211,41 +215,508 @@ At the end, I ask, why would you choose anything else than the easiest and most
</div>
<div class="related">
<h2>Related Posts</h2>
<ul class="related-posts">
<!--<div class="related">-->
<!--<related-posts />-->
<!--<h2>Related Posts</h2>-->
<!--<ul class="related-posts">-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/07/pres-berk/">-->
<!--A short talk about cryptography at the Berkman Klein Center-->
<!--<small>07 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/06/IM-services/">-->
<!--Phone messaging apps comparison-->
<!--<small>06 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/05/arduino_keyboard/">-->
<!--Arduino Uno as HID keyboard-->
<!--<small>05 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/16/lifehacks2/">-->
<!--Lifehacks (2)-->
<!--<small>16 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/15/genetic-alg/">-->
<!--Interpolation using a genetic algorithm-->
<!--<small>15 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--</ul>-->
<!--</div>-->
<li>
<h3>
<a href="/pescewanda/2016/07/07/pres-berk/">
A short talk about cryptography at the Berkman Klein Center
<small>07 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/06/IM-services/">
Phone messaging apps comparison
<small>06 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/05/arduino_keyboard/">
Arduino Uno as HID keyboard
<small>05 Jul 2016</small>
</a>
</h3>
</li>
</ul>
</div>
<h4>Similar Posts</h4>
<ul>
<li class="relatedPost">
<a href="francescomecca.eu/pescewanda/2016/04/17/wright-nakamoto/">#JeSuisSatoshiNakamoto
</a>
</li>
</ul>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -215,41 +219,526 @@ Anyway for simple cases the GA yields good results, as an example for points (0
</div>
<div class="related">
<h2>Related Posts</h2>
<ul class="related-posts">
<!--<div class="related">-->
<!--<related-posts />-->
<!--<h2>Related Posts</h2>-->
<!--<ul class="related-posts">-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/07/pres-berk/">-->
<!--A short talk about cryptography at the Berkman Klein Center-->
<!--<small>07 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/06/IM-services/">-->
<!--Phone messaging apps comparison-->
<!--<small>06 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/05/arduino_keyboard/">-->
<!--Arduino Uno as HID keyboard-->
<!--<small>05 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/16/lifehacks2/">-->
<!--Lifehacks (2)-->
<!--<small>16 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/03/satoshisignature/">-->
<!--Why Wright's proof is a fake-->
<!--<small>03 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--</ul>-->
<!--</div>-->
<li>
<h3>
<a href="/pescewanda/2016/07/07/pres-berk/">
A short talk about cryptography at the Berkman Klein Center
<small>07 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/06/IM-services/">
Phone messaging apps comparison
<small>06 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/05/arduino_keyboard/">
Arduino Uno as HID keyboard
<small>05 Jul 2016</small>
</a>
</h3>
</li>
</ul>
</div>
<h4>Similar Posts</h4>
<ul>
<li class="relatedPost">
<a href="francescomecca.eu/pescewanda/2016/07/05/arduino_keyboard/">Arduino Uno as HID keyboard
</a>
</li>
<li class="relatedPost">
<a href="francescomecca.eu/pescewanda/2016/04/17/kpd-player/">Kyuss Music Player
</a>
</li>
<li class="relatedPost">
<a href="francescomecca.eu/pescewanda/2016/04/02/buridan_donkey/">The Buridan's donkey in python
</a>
</li>
</ul>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -143,41 +147,360 @@
</div>
<div class="related">
<h2>Related Posts</h2>
<ul class="related-posts">
<!--<div class="related">-->
<!--<related-posts />-->
<!--<h2>Related Posts</h2>-->
<!--<ul class="related-posts">-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/07/pres-berk/">-->
<!--A short talk about cryptography at the Berkman Klein Center-->
<!--<small>07 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/06/IM-services/">-->
<!--Phone messaging apps comparison-->
<!--<small>06 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/05/arduino_keyboard/">-->
<!--Arduino Uno as HID keyboard-->
<!--<small>05 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/15/genetic-alg/">-->
<!--Interpolation using a genetic algorithm-->
<!--<small>15 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/03/satoshisignature/">-->
<!--Why Wright's proof is a fake-->
<!--<small>03 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--</ul>-->
<!--</div>-->
<li>
<h3>
<a href="/pescewanda/2016/07/07/pres-berk/">
A short talk about cryptography at the Berkman Klein Center
<small>07 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/06/IM-services/">
Phone messaging apps comparison
<small>06 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/05/arduino_keyboard/">
Arduino Uno as HID keyboard
<small>05 Jul 2016</small>
</a>
</h3>
</li>
</ul>
</div>
<h4>Similar Posts</h4>
<ul>
<li class="relatedPost">
<a href="francescomecca.eu/pescewanda/2016/04/10/lifehacks/">Lifehacks
</a>
</li>
</ul>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -204,41 +208,585 @@ dfu-programmer atmega16u2 reset
</div>
<div class="related">
<h2>Related Posts</h2>
<ul class="related-posts">
<!--<div class="related">-->
<!--<related-posts />-->
<!--<h2>Related Posts</h2>-->
<!--<ul class="related-posts">-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/07/pres-berk/">-->
<!--A short talk about cryptography at the Berkman Klein Center-->
<!--<small>07 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/06/IM-services/">-->
<!--Phone messaging apps comparison-->
<!--<small>06 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/16/lifehacks2/">-->
<!--Lifehacks (2)-->
<!--<small>16 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/15/genetic-alg/">-->
<!--Interpolation using a genetic algorithm-->
<!--<small>15 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/03/satoshisignature/">-->
<!--Why Wright's proof is a fake-->
<!--<small>03 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--</ul>-->
<!--</div>-->
<li>
<h3>
<a href="/pescewanda/2016/07/07/pres-berk/">
A short talk about cryptography at the Berkman Klein Center
<small>07 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/06/IM-services/">
Phone messaging apps comparison
<small>06 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/05/16/lifehacks2/">
Lifehacks (2)
<small>16 May 2016</small>
</a>
</h3>
</li>
</ul>
</div>
<h4>Similar Posts</h4>
<ul>
<li class="relatedPost">
<a href="francescomecca.eu/pescewanda/2016/05/15/genetic-alg/">Interpolation using a genetic algorithm
</a>
</li>
<li class="relatedPost">
<a href="francescomecca.eu/pescewanda/2016/04/17/kpd-player/">Kyuss Music Player
</a>
</li>
</ul>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -231,41 +235,562 @@
</div>
<div class="related">
<h2>Related Posts</h2>
<ul class="related-posts">
<!--<div class="related">-->
<!--<related-posts />-->
<!--<h2>Related Posts</h2>-->
<!--<ul class="related-posts">-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/07/pres-berk/">-->
<!--A short talk about cryptography at the Berkman Klein Center-->
<!--<small>07 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/05/arduino_keyboard/">-->
<!--Arduino Uno as HID keyboard-->
<!--<small>05 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/16/lifehacks2/">-->
<!--Lifehacks (2)-->
<!--<small>16 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/15/genetic-alg/">-->
<!--Interpolation using a genetic algorithm-->
<!--<small>15 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/03/satoshisignature/">-->
<!--Why Wright's proof is a fake-->
<!--<small>03 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--</ul>-->
<!--</div>-->
<li>
<h3>
<a href="/pescewanda/2016/07/07/pres-berk/">
A short talk about cryptography at the Berkman Klein Center
<small>07 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/05/arduino_keyboard/">
Arduino Uno as HID keyboard
<small>05 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/05/16/lifehacks2/">
Lifehacks (2)
<small>16 May 2016</small>
</a>
</h3>
</li>
</ul>
</div>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

View file

@ -74,6 +74,8 @@
@ -111,10 +113,12 @@
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
<a class="sidebar-nav-item" href="/feed.xml">RSS</a>
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
</nav>
@ -161,10 +165,10 @@
<p>We can distinguish four layers of security:</p>
<ul>
<li>Device Security;</li>
<li>Network Security;</li>
<li>Message Security;</li>
<li>Human Security.</li>
<li>Device Security</li>
<li>Network Security</li>
<li>Message Security</li>
<li>Human Security</li>
</ul>
<h6 id="device-security-where-everything-happens">Device Security, where everything happens</h6>
@ -180,9 +184,9 @@
<p>Some precautions for this purpose:</p>
<ul>
<li>full disk encryption;</li>
<li>minimal set of application installed;</li>
<li>open source operating systems.</li>
<li>full disk encryption</li>
<li>minimal set of application installed</li>
<li>open source operating systems</li>
</ul>
<h6 id="network-security">Network Security</h6>
@ -194,18 +198,18 @@
<p>Some tools that may help in this case:</p>
<ul>
<li>vpn;</li>
<li>tor;</li>
<li>p2p networks;</li>
<li>mesh networks.</li>
<li>vpn</li>
<li>tor</li>
<li>p2p networks</li>
<li>mesh networks</li>
</ul>
<p>And for the web:</p>
<ul>
<li>opensource web browsers (such as firefox);</li>
<li>no google apps on android phones;</li>
<li>https.</li>
<li>opensource web browsers (such as firefox)</li>
<li>no google apps on android phones</li>
<li>https</li>
</ul>
<h6 id="message-security">Message Security</h6>
@ -217,10 +221,10 @@
<p>The tools we can use in this context:</p>
<ul>
<li>OTR;</li>
<li>opensource messaging protocols (XMPP, matrix);</li>
<li>Signal;</li>
<li>PGP.</li>
<li>OTR</li>
<li>opensource messaging protocols (XMPP, matrix)</li>
<li>Signal</li>
<li>PGP</li>
</ul>
<p>Also, always remember that encrypting the content of the message doesn&#39;t guarantee that your identity and the metadata are hidden.</p>
@ -248,8 +252,8 @@
<p>That is the content of a connection. Inside this packets there are a multitude of information of two kinds:</p>
<ul>
<li>the web page or the content we are trying to visualize;</li>
<li>information on the status of both the server and the client.</li>
<li>the web page or the content we are trying to visualize</li>
<li>information on the status of both the server and the client</li>
</ul>
<p>The informations contained in every packet can be analized to understand the &quot;identity&quot; of the client that is requesting the content on the server, first of all the IP that is a sort of web address that every computer on the net has.</p>
@ -288,14 +292,14 @@ I personally host one right now and there are many others that share a little fr
<p>Such factors are:</p>
<ul>
<li>the size of the screen and the colors supported by it;</li>
<li>the timezone;</li>
<li>canvas and images that the server asks your computer to generate;</li>
<li>information about your OS that are sent through packets;</li>
<li>the fonts available on your system;</li>
<li>touch support;</li>
<li>cookies;</li>
<li>ads and cross site requests;</li>
<li>the size of the screen and the colors supported by it</li>
<li>the timezone</li>
<li>canvas and images that the server asks your computer to generate</li>
<li>information about your OS that are sent through packets</li>
<li>the fonts available on your system</li>
<li>touch support</li>
<li>cookies</li>
<li>ads and cross site requests</li>
</ul>
<p>In particular, most of these are exploitable using a web programming language, javascript, that lots of web pages uses to render content. TOR users should avoid the use of javascript.</p>
@ -393,41 +397,686 @@ What if, when the person walks into a mall, we record the time, the location, th
</div>
<div class="related">
<h2>Related Posts</h2>
<ul class="related-posts">
<!--<div class="related">-->
<!--<related-posts />-->
<!--<h2>Related Posts</h2>-->
<!--<ul class="related-posts">-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/06/IM-services/">-->
<!--Phone messaging apps comparison-->
<!--<small>06 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/07/05/arduino_keyboard/">-->
<!--Arduino Uno as HID keyboard-->
<!--<small>05 Jul 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/16/lifehacks2/">-->
<!--Lifehacks (2)-->
<!--<small>16 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/15/genetic-alg/">-->
<!--Interpolation using a genetic algorithm-->
<!--<small>15 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--<li>-->
<!--<h3>-->
<!--<a href="/pescewanda/2016/05/03/satoshisignature/">-->
<!--Why Wright's proof is a fake-->
<!--<small>03 May 2016</small>-->
<!--</a>-->
<!--</h3>-->
<!--</li>-->
<!---->
<!--</ul>-->
<!--</div>-->
<li>
<h3>
<a href="/pescewanda/2016/07/06/IM-services/">
Phone messaging apps comparison
<small>06 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/07/05/arduino_keyboard/">
Arduino Uno as HID keyboard
<small>05 Jul 2016</small>
</a>
</h3>
</li>
<li>
<h3>
<a href="/pescewanda/2016/05/16/lifehacks2/">
Lifehacks (2)
<small>16 May 2016</small>
</a>
</h3>
</li>
</ul>
</div>
</div>
<!--<link rel="alternate" type="application/rss+xml" title="Francesco Mecca RSS" href="/feed.xml">-->
</body>
</html>

22
feed.xml Normal file
View file

@ -0,0 +1,22 @@
---
layout: null
---
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title> Caught in the Net - Articles</title>
<description>Your latest baking news</description>
<link>{{ site.url }}</link>
{% for post in site.posts %}
{% unless post.draft %}
<item>
<title>{{ post.title | xml_escape }}</title>
<description>{{ post.content | xml_escape }}</description>
<pubDate>{{ post.date | date_to_xmlschema }}</pubDate>
<link>{{ post.url | prepend: site.url }}</link>
<guid isPermaLink="true">{{ post.url | prepend: site.url }}</guid>
</item>
{% endunless %}
{% endfor %}
</channel>
</rss>