post on fake wright proof
This commit is contained in:
parent
e38621f13d
commit
e494b98a7f
57 changed files with 1761 additions and 862 deletions
95
_posts/2016-05-03-satoshisignature.md
Normal file
95
_posts/2016-05-03-satoshisignature.md
Normal file
|
@ -0,0 +1,95 @@
|
|||
---
|
||||
title: Why Wright's proof is a fake
|
||||
date: 2016-05-03
|
||||
author: pesceWanda
|
||||
layout: post
|
||||
categories:
|
||||
- PesceWanda
|
||||
tags:
|
||||
- bitcoin
|
||||
- wright
|
||||
- scam
|
||||
- satoshi nakamoto scam
|
||||
---
|
||||
I explained in my previous [post](http://francescomecca.eu/pescewanda/2016/04/17/wright-nakamoto/) (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.
|
||||
The key in Wright's [post](http://www.drcraigwright.net/jean-paul-sartre-signing-significance/) is this:
|
||||
|
||||
```
|
||||
------------------------- Signature File -------------------------
|
||||
MEUCIQDBKn1Uly8m0UyzETObUSL4wYdBfd4ejvtoQfVcNCIK4AIgZmMsXNQWHvo6KDd2Tu6euEl1
|
||||
3VTC3ihl6XUlhcU+fM4=
|
||||
------------------------- End Signature --------------------------
|
||||
```
|
||||
|
||||
Now we can use some bash utilities:
|
||||
|
||||
- base64, that translates encoded ASCII text;
|
||||
- hexdump, that displays hexadecimal contents from the input;
|
||||
- cut, used to remove the binary part of the input;
|
||||
- tr, used to delete spaces and carriage return from the input;
|
||||
|
||||
```
|
||||
base64 -d <<<'MEUCIQDBKn1Uly8m0UyzETObUSL4wYdBfd4ejvtoQfVcNCIK4AIgZmMsXNQWHvo6KDd2Tu6euEl13VTC3ihl6XUlhcU+fM4=' | hexdump -C| cut -b 11-60| tr -d ' \n'
|
||||
|
||||
3045022100c12a7d54972f26d14cb311339b5122f8c187417dde1e8efb6841f55c34220ae0022066632c5cd4161efa3a2837764eee9eb84975dd54c2de2865e9752585c53e7cce
|
||||
```
|
||||
|
||||
Let's analyze the command one by one:
|
||||
|
||||
- `base64 -d` decodes the redirected string, the output is some gibberish characters so I won't display them here;
|
||||
- `hexdump -C` is used with a pipe to convert to hexadecimal:
|
||||
|
||||
```
|
||||
00000000 30 45 02 21 00 c1 2a 7d 54 97 2f 26 d1 4c b3 11 |0E.!..*}T./&.L..|
|
||||
00000010 33 9b 51 22 f8 c1 87 41 7d de 1e 8e fb 68 41 f5 |3.Q"...A}....hA.|
|
||||
00000020 5c 34 22 0a e0 02 20 66 63 2c 5c d4 16 1e fa 3a |\4"... fc,\....:|
|
||||
00000030 28 37 76 4e ee 9e b8 49 75 dd 54 c2 de 28 65 e9 |(7vN...Iu.T..(e.|
|
||||
00000040 75 25 85 c5 3e 7c ce |u%..>|.|
|
||||
```
|
||||
|
||||
- cut -b 11-60 displays only the character from column 11 to 60:
|
||||
|
||||
```
|
||||
30 45 02 21 00 c1 2a 7d 54 97 2f 26 d1 4c b3 11
|
||||
33 9b 51 22 f8 c1 87 41 7d de 1e 8e fb 68 41 f5
|
||||
5c 34 22 0a e0 02 20 66 63 2c 5c d4 16 1e fa 3a
|
||||
28 37 76 4e ee 9e b8 49 75 dd 54 c2 de 28 65 e9
|
||||
75 25 85 c5 3e 7c ce
|
||||
```
|
||||
|
||||
- `tr -d ' \n'` is used to delete spaces and carriage return from the output so that is shown in one line and gives us the final result:
|
||||
|
||||
```
|
||||
3045022100c12a7d54972f26d14cb311339b5122f8c187417dde1e8efb6841f55c34220ae0022066632c5cd4161efa3a2837764eee9eb84975dd54c2de2865e9752585c53e7cce
|
||||
```
|
||||
|
||||
There is also another cleartext string at the beginning of Wright's post:
|
||||
|
||||
```
|
||||
$ base64 -d <<<'IFdyaWdodCwgaXQgaXMgbm90IHRoZSBzYW1lIGFzIGlmIEkgc2lnbiBDcmFpZyBXcmlnaHQsIFNhdG9zaGkuCgo='
|
||||
Wright, it is not the same as if I sign Craig Wright, Satoshi.
|
||||
```
|
||||
|
||||
Now let's head to blockchain.info.
|
||||
Blockchain.info has a little [utility] (https://blockchain.info/decode-tx) to get hexadecimal informations out of a transaction on the blockchain, so let's use it to get the related info about this transaction:
|
||||
|
||||
[tx/828ef3b079f9c23829c56fe86e85b4a69d9e06e5b54ea597eef5fb3ffef509fe](https://blockchain.info/tx/828ef3b079f9c23829c56fe86e85b4a69d9e06e5b54ea597eef5fb3ffef509fe)
|
||||
[tx/828ef3b079f9... in hexadecimal](https://blockchain.info/tx/828ef3b079f9c23829c56fe86e85b4a69d9e06e5b54ea597eef5fb3ffef509fe?format=hex)
|
||||
|
||||
As you can see the entire output of the first bash command, that is
|
||||
```
|
||||
3045022100c12a7d54972f26d14cb311339b5122f8c187417dde1e8efb6841f55c34220ae0022066632c5cd4161efa3a2837764eee9eb84975dd54c2de2865e9752585c53e7cce
|
||||
```
|
||||
is contained in:
|
||||
```
|
||||
"script":"483045022100c12a7d54972f26d14cb311339b5122f8c187417dde1e8efb6841f55c34220ae0022066632c5cd4161efa3a2837764eee9eb84975dd54c2de2865e9752585c53e7cce01"
|
||||
```
|
||||
except for the 48 at the beginning and the 01 at the end.
|
||||
|
||||
That is a signature hash:
|
||||
this [page](https://en.bitcoin.it/wiki/List_of_address_prefixes) explains that the 48 is just a decimal prefix given to uncompressed transactions, and the 01 at the end is just a SIGHASH_ALL [code](https://bitcoin.org/en/glossary/signature-hash) that flags the end of the signature.
|
||||
|
||||
## So, is it a fake?
|
||||
Yes, indeed.
|
||||
At the end, I ask, why would you choose anything else than the easiest and most conclusive way to prove something?
|
|
@ -72,3 +72,9 @@ Charlie Lee, il creatore dei Litecoin su medium ci ha dato una [dimostrazione](h
|
|||
Non abbiamo bisogno di colloqui privati, laptop nuovi di fabbrica e screenshot di script. Nei primi blocchi, i genesis blocks, rimangono registatrate un numero sufficiente di chiavi pubbliche appartenenti al creatore della blockchain.
|
||||
Chiunque dichiari di essere Satoshi deve poter firmare un messaggio utilizzando una di quelle chiavi. Questo è quello che il creatore dei Litecoin mostra in 4 righe.
|
||||
Ogni altra prova è discutibile e non necessaria.
|
||||
|
||||
## EDIT 22:12
|
||||
Su Twitter il profilo ufficiale di Electrum [scrive](https://mobile.twitter.com/ElectrumWallet/status/727366861592076288):
|
||||
>Note: There was no download of a signature file of electrum (.asc file) from a UK IP on Apr 7th.
|
||||
|
||||
Questo significa che il 7 Aprile, quando Wright ha mostrato a Gavin le sue chiavi utilizzando Electrum, nessuna delle due parti si è preoccupata di verificare che il client fosse autentico. Questo invalida ulteriormente tutte le affermazioni di Gavin.
|
||||
|
|
|
@ -100,6 +100,10 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -100,6 +100,10 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -100,6 +100,10 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -128,6 +132,7 @@
|
|||
<h2>Blog Posts</h2>
|
||||
|
||||
<ul>
|
||||
<li><p>03 May 2016 » <a href="/pescewanda/2016/05/03/satoshisignature/"> Why Wright's proof is a fake </a></p></li>
|
||||
<li><p>17 Apr 2016 » <a href="/pescewanda/2016/04/17/wright-nakamoto/"> #JeSuisSatoshiNakamoto </a></p></li>
|
||||
<li><p>17 Apr 2016 » <a href="/pescewanda/2016/04/17/kpd-player/"> Kyuss Music Player </a></p></li>
|
||||
<li><p>10 Apr 2016 » <a href="/pescewanda/2016/04/10/short-lesson-from-reddit/"> Bright Father </a></p></li>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<title>Caught in the Net</title>
|
||||
<link href="francescomecca.eu/atom.xml" rel="self"/>
|
||||
<link href="francescomecca.eu/"/>
|
||||
<updated>2016-05-03T14:40:10+02:00</updated>
|
||||
<updated>2016-05-03T23:37:09+02:00</updated>
|
||||
<id>francescomecca.eu</id>
|
||||
<author>
|
||||
<name>Francesco Mecca</name>
|
||||
|
@ -12,6 +12,87 @@
|
|||
</author>
|
||||
|
||||
|
||||
<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+02:00</updated>
|
||||
<id>francescomecca.eu/pescewanda/2016/05/03/satoshisignature</id>
|
||||
<content type="html"><p>I explained in my previous <a href="http://francescomecca.eu/pescewanda/2016/04/17/wright-nakamoto/">post</a> (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.
|
||||
The key in Wright&#39;s <a href="http://www.drcraigwright.net/jean-paul-sartre-signing-significance/">post</a> is this:</p>
|
||||
<div class="highlight"><pre><code class="language-" data-lang="">------------------------- Signature File -------------------------
|
||||
MEUCIQDBKn1Uly8m0UyzETObUSL4wYdBfd4ejvtoQfVcNCIK4AIgZmMsXNQWHvo6KDd2Tu6euEl1
|
||||
3VTC3ihl6XUlhcU+fM4=
|
||||
------------------------- End Signature --------------------------
|
||||
</code></pre></div>
|
||||
<p>Now we can use some bash utilities:</p>
|
||||
|
||||
<ul>
|
||||
<li>base64, that translates encoded ASCII text;</li>
|
||||
<li>hexdump, that displays hexadecimal contents from the input;</li>
|
||||
<li>cut, used to remove the binary part of the input;</li>
|
||||
<li>tr, used to delete spaces and carriage return from the input;</li>
|
||||
</ul>
|
||||
<div class="highlight"><pre><code class="language-" data-lang="">base64 -d &lt;&lt;&lt;'MEUCIQDBKn1Uly8m0UyzETObUSL4wYdBfd4ejvtoQfVcNCIK4AIgZmMsXNQWHvo6KDd2Tu6euEl13VTC3ihl6XUlhcU+fM4=' | hexdump -C| cut -b 11-60| tr -d ' \n'
|
||||
|
||||
3045022100c12a7d54972f26d14cb311339b5122f8c187417dde1e8efb6841f55c34220ae0022066632c5cd4161efa3a2837764eee9eb84975dd54c2de2865e9752585c53e7cce
|
||||
</code></pre></div>
|
||||
<p>Let&#39;s analyze the command one by one:</p>
|
||||
|
||||
<ul>
|
||||
<li><code>base64 -d</code> decodes the redirected string, the output is some gibberish characters so I won&#39;t display them here;</li>
|
||||
<li><code>hexdump -C</code> is used with a pipe to convert to hexadecimal:</li>
|
||||
</ul>
|
||||
<div class="highlight"><pre><code class="language-" data-lang="">00000000 30 45 02 21 00 c1 2a 7d 54 97 2f 26 d1 4c b3 11 |0E.!..*}T./&amp;.L..|
|
||||
00000010 33 9b 51 22 f8 c1 87 41 7d de 1e 8e fb 68 41 f5 |3.Q"...A}....hA.|
|
||||
00000020 5c 34 22 0a e0 02 20 66 63 2c 5c d4 16 1e fa 3a |\4"... fc,\....:|
|
||||
00000030 28 37 76 4e ee 9e b8 49 75 dd 54 c2 de 28 65 e9 |(7vN...Iu.T..(e.|
|
||||
00000040 75 25 85 c5 3e 7c ce |u%..&gt;|.|
|
||||
</code></pre></div>
|
||||
<ul>
|
||||
<li>cut -b 11-60 displays only the character from column 11 to 60:</li>
|
||||
</ul>
|
||||
<div class="highlight"><pre><code class="language-" data-lang="">30 45 02 21 00 c1 2a 7d 54 97 2f 26 d1 4c b3 11
|
||||
33 9b 51 22 f8 c1 87 41 7d de 1e 8e fb 68 41 f5
|
||||
5c 34 22 0a e0 02 20 66 63 2c 5c d4 16 1e fa 3a
|
||||
28 37 76 4e ee 9e b8 49 75 dd 54 c2 de 28 65 e9
|
||||
75 25 85 c5 3e 7c ce
|
||||
</code></pre></div>
|
||||
<ul>
|
||||
<li><code>tr -d &#39; \n&#39;</code> is used to delete spaces and carriage return from the output so that is shown in one line and gives us the final result:</li>
|
||||
</ul>
|
||||
<div class="highlight"><pre><code class="language-" data-lang="">3045022100c12a7d54972f26d14cb311339b5122f8c187417dde1e8efb6841f55c34220ae0022066632c5cd4161efa3a2837764eee9eb84975dd54c2de2865e9752585c53e7cce
|
||||
</code></pre></div>
|
||||
<p>There is also another cleartext string at the beginning of Wright&#39;s post:</p>
|
||||
<div class="highlight"><pre><code class="language-" data-lang="">$ base64 -d &lt;&lt;&lt;'IFdyaWdodCwgaXQgaXMgbm90IHRoZSBzYW1lIGFzIGlmIEkgc2lnbiBDcmFpZyBXcmlnaHQsIFNhdG9zaGkuCgo='
|
||||
Wright, it is not the same as if I sign Craig Wright, Satoshi.
|
||||
</code></pre></div>
|
||||
<p>Now let&#39;s head to blockchain.info.
|
||||
Blockchain.info has a little <a href="https://blockchain.info/decode-tx">utility</a> to get hexadecimal informations out of a transaction on the blockchain, so let&#39;s use it to get the related info about this transaction:</p>
|
||||
|
||||
<p><a href="https://blockchain.info/tx/828ef3b079f9c23829c56fe86e85b4a69d9e06e5b54ea597eef5fb3ffef509fe">tx/828ef3b079f9c23829c56fe86e85b4a69d9e06e5b54ea597eef5fb3ffef509fe</a>
|
||||
<a href="https://blockchain.info/tx/828ef3b079f9c23829c56fe86e85b4a69d9e06e5b54ea597eef5fb3ffef509fe?format=hex">tx/828ef3b079f9... in hexadecimal</a></p>
|
||||
|
||||
<p>As you can see the entire output of the first bash command, that is
|
||||
<code>
|
||||
3045022100c12a7d54972f26d14cb311339b5122f8c187417dde1e8efb6841f55c34220ae0022066632c5cd4161efa3a2837764eee9eb84975dd54c2de2865e9752585c53e7cce
|
||||
</code>
|
||||
is contained in:
|
||||
<code>
|
||||
&quot;script&quot;:&quot;483045022100c12a7d54972f26d14cb311339b5122f8c187417dde1e8efb6841f55c34220ae0022066632c5cd4161efa3a2837764eee9eb84975dd54c2de2865e9752585c53e7cce01&quot;
|
||||
</code>
|
||||
except for the 48 at the beginning and the 01 at the end.</p>
|
||||
|
||||
<p>That is a signature hash:
|
||||
this <a href="https://en.bitcoin.it/wiki/List_of_address_prefixes">page</a> explains that the 48 is just a decimal prefix given to uncompressed transactions, and the 01 at the end is just a SIGHASH_ALL <a href="https://bitcoin.org/en/glossary/signature-hash">code</a> that flags the end of the signature.</p>
|
||||
|
||||
<h2>So, is it a fake?</h2>
|
||||
|
||||
<p>Yes, indeed.
|
||||
At the end, I ask, why would you choose anything else than the easiest and most conclusive way to prove something?</p>
|
||||
</content>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<title>#JeSuisSatoshiNakamoto</title>
|
||||
<link href="francescomecca.eu/pescewanda/2016/04/17/wright-nakamoto/"/>
|
||||
|
@ -99,6 +180,16 @@ Quella stringa (in base64) non è affatto una firma, bensì è un messaggio in c
|
|||
Non abbiamo bisogno di colloqui privati, laptop nuovi di fabbrica e screenshot di script. Nei primi blocchi, i genesis blocks, rimangono registatrate un numero sufficiente di chiavi pubbliche appartenenti al creatore della blockchain.
|
||||
Chiunque dichiari di essere Satoshi deve poter firmare un messaggio utilizzando una di quelle chiavi. Questo è quello che il creatore dei Litecoin mostra in 4 righe.
|
||||
Ogni altra prova è discutibile e non necessaria.</p>
|
||||
|
||||
<h2>EDIT 22:12</h2>
|
||||
|
||||
<p>Su Twitter il profilo ufficiale di Electrum <a href="https://mobile.twitter.com/ElectrumWallet/status/727366861592076288">scrive</a>:</p>
|
||||
|
||||
<blockquote>
|
||||
<p>Note: There was no download of a signature file of electrum (.asc file) from a UK IP on Apr 7th.</p>
|
||||
</blockquote>
|
||||
|
||||
<p>Questo significa che il 7 Aprile, quando Wright ha mostrato a Gavin le sue chiavi utilizzando Electrum, nessuna delle due parti si è preoccupata di verificare che il client fosse autentico. Questo invalida ulteriormente tutte le affermazioni di Gavin.</p>
|
||||
</content>
|
||||
</entry>
|
||||
|
||||
|
|
|
@ -100,6 +100,10 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
138
_site/index.html
138
_site/index.html
|
@ -100,6 +100,10 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -125,6 +129,91 @@
|
|||
<div class="content container">
|
||||
<div class="posts">
|
||||
|
||||
<div class="post">
|
||||
<h1 class="post-title">
|
||||
<a href="/pescewanda/2016/05/03/satoshisignature/">
|
||||
Why Wright's proof is a fake
|
||||
</a>
|
||||
</h1>
|
||||
|
||||
<span class="post-date">03 May 2016</span>
|
||||
|
||||
<p>I explained in my previous <a href="http://francescomecca.eu/pescewanda/2016/04/17/wright-nakamoto/">post</a> (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.
|
||||
The key in Wright's <a href="http://www.drcraigwright.net/jean-paul-sartre-signing-significance/">post</a> is this:</p>
|
||||
<div class="highlight"><pre><code class="language-" data-lang="">------------------------- Signature File -------------------------
|
||||
MEUCIQDBKn1Uly8m0UyzETObUSL4wYdBfd4ejvtoQfVcNCIK4AIgZmMsXNQWHvo6KDd2Tu6euEl1
|
||||
3VTC3ihl6XUlhcU+fM4=
|
||||
------------------------- End Signature --------------------------
|
||||
</code></pre></div>
|
||||
<p>Now we can use some bash utilities:</p>
|
||||
|
||||
<ul>
|
||||
<li>base64, that translates encoded ASCII text;</li>
|
||||
<li>hexdump, that displays hexadecimal contents from the input;</li>
|
||||
<li>cut, used to remove the binary part of the input;</li>
|
||||
<li>tr, used to delete spaces and carriage return from the input;</li>
|
||||
</ul>
|
||||
<div class="highlight"><pre><code class="language-" data-lang="">base64 -d <<<'MEUCIQDBKn1Uly8m0UyzETObUSL4wYdBfd4ejvtoQfVcNCIK4AIgZmMsXNQWHvo6KDd2Tu6euEl13VTC3ihl6XUlhcU+fM4=' | hexdump -C| cut -b 11-60| tr -d ' \n'
|
||||
|
||||
3045022100c12a7d54972f26d14cb311339b5122f8c187417dde1e8efb6841f55c34220ae0022066632c5cd4161efa3a2837764eee9eb84975dd54c2de2865e9752585c53e7cce
|
||||
</code></pre></div>
|
||||
<p>Let's analyze the command one by one:</p>
|
||||
|
||||
<ul>
|
||||
<li><code>base64 -d</code> decodes the redirected string, the output is some gibberish characters so I won't display them here;</li>
|
||||
<li><code>hexdump -C</code> is used with a pipe to convert to hexadecimal:</li>
|
||||
</ul>
|
||||
<div class="highlight"><pre><code class="language-" data-lang="">00000000 30 45 02 21 00 c1 2a 7d 54 97 2f 26 d1 4c b3 11 |0E.!..*}T./&.L..|
|
||||
00000010 33 9b 51 22 f8 c1 87 41 7d de 1e 8e fb 68 41 f5 |3.Q"...A}....hA.|
|
||||
00000020 5c 34 22 0a e0 02 20 66 63 2c 5c d4 16 1e fa 3a |\4"... fc,\....:|
|
||||
00000030 28 37 76 4e ee 9e b8 49 75 dd 54 c2 de 28 65 e9 |(7vN...Iu.T..(e.|
|
||||
00000040 75 25 85 c5 3e 7c ce |u%..>|.|
|
||||
</code></pre></div>
|
||||
<ul>
|
||||
<li>cut -b 11-60 displays only the character from column 11 to 60:</li>
|
||||
</ul>
|
||||
<div class="highlight"><pre><code class="language-" data-lang="">30 45 02 21 00 c1 2a 7d 54 97 2f 26 d1 4c b3 11
|
||||
33 9b 51 22 f8 c1 87 41 7d de 1e 8e fb 68 41 f5
|
||||
5c 34 22 0a e0 02 20 66 63 2c 5c d4 16 1e fa 3a
|
||||
28 37 76 4e ee 9e b8 49 75 dd 54 c2 de 28 65 e9
|
||||
75 25 85 c5 3e 7c ce
|
||||
</code></pre></div>
|
||||
<ul>
|
||||
<li><code>tr -d ' \n'</code> is used to delete spaces and carriage return from the output so that is shown in one line and gives us the final result:</li>
|
||||
</ul>
|
||||
<div class="highlight"><pre><code class="language-" data-lang="">3045022100c12a7d54972f26d14cb311339b5122f8c187417dde1e8efb6841f55c34220ae0022066632c5cd4161efa3a2837764eee9eb84975dd54c2de2865e9752585c53e7cce
|
||||
</code></pre></div>
|
||||
<p>There is also another cleartext string at the beginning of Wright's post:</p>
|
||||
<div class="highlight"><pre><code class="language-" data-lang="">$ base64 -d <<<'IFdyaWdodCwgaXQgaXMgbm90IHRoZSBzYW1lIGFzIGlmIEkgc2lnbiBDcmFpZyBXcmlnaHQsIFNhdG9zaGkuCgo='
|
||||
Wright, it is not the same as if I sign Craig Wright, Satoshi.
|
||||
</code></pre></div>
|
||||
<p>Now let's head to blockchain.info.
|
||||
Blockchain.info has a little <a href="https://blockchain.info/decode-tx">utility</a> to get hexadecimal informations out of a transaction on the blockchain, so let's use it to get the related info about this transaction:</p>
|
||||
|
||||
<p><a href="https://blockchain.info/tx/828ef3b079f9c23829c56fe86e85b4a69d9e06e5b54ea597eef5fb3ffef509fe">tx/828ef3b079f9c23829c56fe86e85b4a69d9e06e5b54ea597eef5fb3ffef509fe</a>
|
||||
<a href="https://blockchain.info/tx/828ef3b079f9c23829c56fe86e85b4a69d9e06e5b54ea597eef5fb3ffef509fe?format=hex">tx/828ef3b079f9... in hexadecimal</a></p>
|
||||
|
||||
<p>As you can see the entire output of the first bash command, that is
|
||||
<code>
|
||||
3045022100c12a7d54972f26d14cb311339b5122f8c187417dde1e8efb6841f55c34220ae0022066632c5cd4161efa3a2837764eee9eb84975dd54c2de2865e9752585c53e7cce
|
||||
</code>
|
||||
is contained in:
|
||||
<code>
|
||||
"script":"483045022100c12a7d54972f26d14cb311339b5122f8c187417dde1e8efb6841f55c34220ae0022066632c5cd4161efa3a2837764eee9eb84975dd54c2de2865e9752585c53e7cce01"
|
||||
</code>
|
||||
except for the 48 at the beginning and the 01 at the end.</p>
|
||||
|
||||
<p>That is a signature hash:
|
||||
this <a href="https://en.bitcoin.it/wiki/List_of_address_prefixes">page</a> explains that the 48 is just a decimal prefix given to uncompressed transactions, and the 01 at the end is just a SIGHASH_ALL <a href="https://bitcoin.org/en/glossary/signature-hash">code</a> that flags the end of the signature.</p>
|
||||
|
||||
<h2>So, is it a fake?</h2>
|
||||
|
||||
<p>Yes, indeed.
|
||||
At the end, I ask, why would you choose anything else than the easiest and most conclusive way to prove something?</p>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="post">
|
||||
<h1 class="post-title">
|
||||
<a href="/pescewanda/2016/04/17/wright-nakamoto/">
|
||||
|
@ -217,6 +306,16 @@ Non abbiamo bisogno di colloqui privati, laptop nuovi di fabbrica e screenshot d
|
|||
Chiunque dichiari di essere Satoshi deve poter firmare un messaggio utilizzando una di quelle chiavi. Questo è quello che il creatore dei Litecoin mostra in 4 righe.
|
||||
Ogni altra prova è discutibile e non necessaria.</p>
|
||||
|
||||
<h2>EDIT 22:12</h2>
|
||||
|
||||
<p>Su Twitter il profilo ufficiale di Electrum <a href="https://mobile.twitter.com/ElectrumWallet/status/727366861592076288">scrive</a>:</p>
|
||||
|
||||
<blockquote>
|
||||
<p>Note: There was no download of a signature file of electrum (.asc file) from a UK IP on Apr 7th.</p>
|
||||
</blockquote>
|
||||
|
||||
<p>Questo significa che il 7 Aprile, quando Wright ha mostrato a Gavin le sue chiavi utilizzando Electrum, nessuna delle due parti si è preoccupata di verificare che il client fosse autentico. Questo invalida ulteriormente tutte le affermazioni di Gavin.</p>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="post">
|
||||
|
@ -321,45 +420,6 @@ instantaneously.</p></li>
|
|||
|
||||
</div>
|
||||
|
||||
<div class="post">
|
||||
<h1 class="post-title">
|
||||
<a href="/pescewanda/2016/04/02/buridan_donkey/">
|
||||
The Buridan's donkey in python
|
||||
</a>
|
||||
</h1>
|
||||
|
||||
<span class="post-date">02 Apr 2016</span>
|
||||
|
||||
<p>During the final weeks of my exam session I started reading a bit about python 3 using an excellent book: <a href="http://www.diveintopython.net/">Dive into Python</a>.
|
||||
When I noted that python uses the <a href="https://en.wikipedia.org/wiki/Mersenne_Twister">Mersenne Twister PRNG</a> as well I decided to write another version of my <a href="http://francescomecca.eu/index.php/archives/207">Buridan's donkey program</a>.</p>
|
||||
|
||||
<figure class="highlight"><pre><code class="language-python" data-lang="python"> <span class="kn">import</span> <span class="nn">random</span><span class="o">,</span> <span class="nn">sys</span>
|
||||
|
||||
<span class="k">if</span> <span class="n">__name__</span> <span class="o">==</span> <span class="s">'__main__'</span><span class="p">:</span>
|
||||
<span class="n">args</span> <span class="o">=</span> <span class="nb">list</span><span class="p">()</span>
|
||||
<span class="k">if</span> <span class="ow">not</span> <span class="n">sys</span><span class="o">.</span><span class="n">stdin</span><span class="o">.</span><span class="n">isatty</span><span class="p">():</span>
|
||||
<span class="k">for</span> <span class="n">line</span> <span class="ow">in</span> <span class="n">sys</span><span class="o">.</span><span class="n">stdin</span><span class="p">:</span>
|
||||
<span class="k">if</span> <span class="n">line</span><span class="p">[</span><span class="o">-</span><span class="mi">1</span><span class="p">]</span> <span class="ow">is</span> <span class="s">'</span><span class="se">\n</span><span class="s">'</span><span class="p">:</span>
|
||||
<span class="n">line</span> <span class="o">=</span> <span class="n">line</span><span class="p">[:</span><span class="o">-</span><span class="mi">1</span><span class="p">]</span>
|
||||
<span class="n">args</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="n">line</span><span class="p">)</span>
|
||||
<span class="k">else</span><span class="p">:</span>
|
||||
<span class="n">args</span> <span class="o">=</span> <span class="n">sys</span><span class="o">.</span><span class="n">argv</span><span class="p">[</span><span class="mi">1</span><span class="p">:]</span>
|
||||
<span class="n">argRange</span> <span class="o">=</span> <span class="nb">len</span><span class="p">(</span><span class="n">args</span><span class="p">)</span>
|
||||
<span class="k">for</span> <span class="n">i</span> <span class="ow">in</span> <span class="nb">range</span><span class="p">(</span><span class="n">argRange</span><span class="p">):</span>
|
||||
<span class="k">print</span><span class="p">(</span><span class="nb">str</span><span class="p">(</span><span class="n">i</span><span class="o">+</span><span class="mi">1</span><span class="p">)</span> <span class="o">+</span> <span class="s">'.'</span><span class="p">,</span> <span class="n">args</span><span class="o">.</span><span class="n">pop</span><span class="p">(</span><span class="n">random</span><span class="o">.</span><span class="n">randrange</span><span class="p">(</span><span class="mi">0</span><span class="p">,</span> <span class="nb">len</span><span class="p">(</span><span class="n">args</span><span class="p">))))</span></code></pre></figure>
|
||||
|
||||
<p>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.</p>
|
||||
|
||||
<p>Not satisfied enough, I wrote also a telegram bot using the <a href="https://github.com/eternnoir/pyTelegramBotAPI">telebot library</a> that works as the script above but inside the telegram app.
|
||||
The bot can be added to your contact list by simply searching for <a href="http://telegram.me/duridan_donkey_bot">@duridan_donkey_bot</a> (yes, a typo!)</p>
|
||||
|
||||
<p>All the code is opensource and can be found on my github page.</p>
|
||||
|
||||
<p>Francesco Mecca</p>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="pagination">
|
||||
|
|
|
@ -100,6 +100,10 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -216,6 +220,15 @@
|
|||
<h2>Related Posts</h2>
|
||||
<ul class="related-posts">
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/05/03/satoshisignature/">
|
||||
Why Wright's proof is a fake
|
||||
<small>03 May 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/17/wright-nakamoto/">
|
||||
|
@ -234,15 +247,6 @@
|
|||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/10/short-lesson-from-reddit/">
|
||||
Bright Father
|
||||
<small>10 Apr 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -100,6 +100,10 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -246,6 +250,15 @@
|
|||
<h2>Related Posts</h2>
|
||||
<ul class="related-posts">
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/05/03/satoshisignature/">
|
||||
Why Wright's proof is a fake
|
||||
<small>03 May 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/17/wright-nakamoto/">
|
||||
|
@ -264,15 +277,6 @@
|
|||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/10/short-lesson-from-reddit/">
|
||||
Bright Father
|
||||
<small>10 Apr 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -100,6 +100,10 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -210,6 +214,15 @@
|
|||
<h2>Related Posts</h2>
|
||||
<ul class="related-posts">
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/05/03/satoshisignature/">
|
||||
Why Wright's proof is a fake
|
||||
<small>03 May 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/17/wright-nakamoto/">
|
||||
|
@ -228,15 +241,6 @@
|
|||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/10/short-lesson-from-reddit/">
|
||||
Bright Father
|
||||
<small>10 Apr 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -100,6 +100,10 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -200,6 +204,15 @@
|
|||
<h2>Related Posts</h2>
|
||||
<ul class="related-posts">
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/05/03/satoshisignature/">
|
||||
Why Wright's proof is a fake
|
||||
<small>03 May 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/17/wright-nakamoto/">
|
||||
|
@ -218,15 +231,6 @@
|
|||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/10/short-lesson-from-reddit/">
|
||||
Bright Father
|
||||
<small>10 Apr 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -100,6 +100,10 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -204,6 +208,15 @@
|
|||
<h2>Related Posts</h2>
|
||||
<ul class="related-posts">
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/05/03/satoshisignature/">
|
||||
Why Wright's proof is a fake
|
||||
<small>03 May 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/17/wright-nakamoto/">
|
||||
|
@ -222,15 +235,6 @@
|
|||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/10/short-lesson-from-reddit/">
|
||||
Bright Father
|
||||
<small>10 Apr 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -100,6 +100,10 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -169,6 +173,15 @@ David Gomez, un ex agente dell’FBI , ha detto che il velivolo di sorveglia
|
|||
<h2>Related Posts</h2>
|
||||
<ul class="related-posts">
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/05/03/satoshisignature/">
|
||||
Why Wright's proof is a fake
|
||||
<small>03 May 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/17/wright-nakamoto/">
|
||||
|
@ -187,15 +200,6 @@ David Gomez, un ex agente dell’FBI , ha detto che il velivolo di sorveglia
|
|||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/10/short-lesson-from-reddit/">
|
||||
Bright Father
|
||||
<small>10 Apr 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -100,6 +100,10 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -142,6 +146,15 @@
|
|||
<h2>Related Posts</h2>
|
||||
<ul class="related-posts">
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/05/03/satoshisignature/">
|
||||
Why Wright's proof is a fake
|
||||
<small>03 May 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/17/wright-nakamoto/">
|
||||
|
@ -160,15 +173,6 @@
|
|||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/10/short-lesson-from-reddit/">
|
||||
Bright Father
|
||||
<small>10 Apr 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -100,6 +100,10 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -186,6 +190,15 @@
|
|||
<h2>Related Posts</h2>
|
||||
<ul class="related-posts">
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/05/03/satoshisignature/">
|
||||
Why Wright's proof is a fake
|
||||
<small>03 May 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/17/wright-nakamoto/">
|
||||
|
@ -204,15 +217,6 @@
|
|||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/10/short-lesson-from-reddit/">
|
||||
Bright Father
|
||||
<small>10 Apr 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -100,6 +100,10 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -259,6 +263,15 @@ Command successful.</pre>
|
|||
<h2>Related Posts</h2>
|
||||
<ul class="related-posts">
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/05/03/satoshisignature/">
|
||||
Why Wright's proof is a fake
|
||||
<small>03 May 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/17/wright-nakamoto/">
|
||||
|
@ -277,15 +290,6 @@ Command successful.</pre>
|
|||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/10/short-lesson-from-reddit/">
|
||||
Bright Father
|
||||
<small>10 Apr 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -100,6 +100,10 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -162,6 +166,15 @@ perl-cleaner --all</pre>
|
|||
<h2>Related Posts</h2>
|
||||
<ul class="related-posts">
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/05/03/satoshisignature/">
|
||||
Why Wright's proof is a fake
|
||||
<small>03 May 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/17/wright-nakamoto/">
|
||||
|
@ -180,15 +193,6 @@ perl-cleaner --all</pre>
|
|||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/10/short-lesson-from-reddit/">
|
||||
Bright Father
|
||||
<small>10 Apr 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -100,6 +100,10 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -223,6 +227,15 @@ The original idea for the Buridan's donkey came from my mentor <a href="http
|
|||
<h2>Related Posts</h2>
|
||||
<ul class="related-posts">
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/05/03/satoshisignature/">
|
||||
Why Wright's proof is a fake
|
||||
<small>03 May 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/17/wright-nakamoto/">
|
||||
|
@ -241,15 +254,6 @@ The original idea for the Buridan's donkey came from my mentor <a href="http
|
|||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/10/short-lesson-from-reddit/">
|
||||
Bright Father
|
||||
<small>10 Apr 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -100,6 +100,10 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -178,6 +182,15 @@
|
|||
<h2>Related Posts</h2>
|
||||
<ul class="related-posts">
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/05/03/satoshisignature/">
|
||||
Why Wright's proof is a fake
|
||||
<small>03 May 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/17/wright-nakamoto/">
|
||||
|
@ -196,15 +209,6 @@
|
|||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/10/short-lesson-from-reddit/">
|
||||
Bright Father
|
||||
<small>10 Apr 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -100,6 +100,10 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -201,6 +205,15 @@ Truecrypt permette di creare un volume crittografico che si presenta come un fil
|
|||
<h2>Related Posts</h2>
|
||||
<ul class="related-posts">
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/05/03/satoshisignature/">
|
||||
Why Wright's proof is a fake
|
||||
<small>03 May 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/17/wright-nakamoto/">
|
||||
|
@ -219,15 +232,6 @@ Truecrypt permette di creare un volume crittografico che si presenta come un fil
|
|||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/10/short-lesson-from-reddit/">
|
||||
Bright Father
|
||||
<small>10 Apr 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -100,6 +100,10 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -760,6 +764,15 @@
|
|||
<h2>Related Posts</h2>
|
||||
<ul class="related-posts">
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/05/03/satoshisignature/">
|
||||
Why Wright's proof is a fake
|
||||
<small>03 May 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/17/wright-nakamoto/">
|
||||
|
@ -778,15 +791,6 @@
|
|||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/10/short-lesson-from-reddit/">
|
||||
Bright Father
|
||||
<small>10 Apr 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -100,6 +100,10 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -185,6 +189,15 @@
|
|||
<h2>Related Posts</h2>
|
||||
<ul class="related-posts">
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/05/03/satoshisignature/">
|
||||
Why Wright's proof is a fake
|
||||
<small>03 May 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/17/wright-nakamoto/">
|
||||
|
@ -203,15 +216,6 @@
|
|||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/10/short-lesson-from-reddit/">
|
||||
Bright Father
|
||||
<small>10 Apr 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -100,6 +100,10 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -161,6 +165,15 @@
|
|||
<h2>Related Posts</h2>
|
||||
<ul class="related-posts">
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/05/03/satoshisignature/">
|
||||
Why Wright's proof is a fake
|
||||
<small>03 May 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/17/wright-nakamoto/">
|
||||
|
@ -179,15 +192,6 @@
|
|||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/10/short-lesson-from-reddit/">
|
||||
Bright Father
|
||||
<small>10 Apr 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -100,6 +100,10 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -277,6 +281,15 @@
|
|||
<h2>Related Posts</h2>
|
||||
<ul class="related-posts">
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/05/03/satoshisignature/">
|
||||
Why Wright's proof is a fake
|
||||
<small>03 May 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/17/wright-nakamoto/">
|
||||
|
@ -295,15 +308,6 @@
|
|||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/10/short-lesson-from-reddit/">
|
||||
Bright Father
|
||||
<small>10 Apr 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -100,6 +100,10 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -198,6 +202,15 @@ Alcuni <a href="https://trac.torproject.org/projects/tor/wiki/doc/GoodBadISPs" t
|
|||
<h2>Related Posts</h2>
|
||||
<ul class="related-posts">
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/05/03/satoshisignature/">
|
||||
Why Wright's proof is a fake
|
||||
<small>03 May 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/17/wright-nakamoto/">
|
||||
|
@ -216,15 +229,6 @@ Alcuni <a href="https://trac.torproject.org/projects/tor/wiki/doc/GoodBadISPs" t
|
|||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/10/short-lesson-from-reddit/">
|
||||
Bright Father
|
||||
<small>10 Apr 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -100,6 +100,10 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -152,6 +156,15 @@ L’opera si trova a Berlino.</p>
|
|||
<h2>Related Posts</h2>
|
||||
<ul class="related-posts">
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/05/03/satoshisignature/">
|
||||
Why Wright's proof is a fake
|
||||
<small>03 May 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/17/wright-nakamoto/">
|
||||
|
@ -170,15 +183,6 @@ L’opera si trova a Berlino.</p>
|
|||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/10/short-lesson-from-reddit/">
|
||||
Bright Father
|
||||
<small>10 Apr 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -100,6 +100,10 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -206,6 +210,15 @@
|
|||
<h2>Related Posts</h2>
|
||||
<ul class="related-posts">
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/05/03/satoshisignature/">
|
||||
Why Wright's proof is a fake
|
||||
<small>03 May 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/17/wright-nakamoto/">
|
||||
|
@ -224,15 +237,6 @@
|
|||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/10/short-lesson-from-reddit/">
|
||||
Bright Father
|
||||
<small>10 Apr 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -100,6 +100,10 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -154,6 +158,15 @@ L’attacco avviene attraverso l’uso di codice Javascript e analizza l
|
|||
<h2>Related Posts</h2>
|
||||
<ul class="related-posts">
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/05/03/satoshisignature/">
|
||||
Why Wright's proof is a fake
|
||||
<small>03 May 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/17/wright-nakamoto/">
|
||||
|
@ -172,15 +185,6 @@ L’attacco avviene attraverso l’uso di codice Javascript e analizza l
|
|||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/10/short-lesson-from-reddit/">
|
||||
Bright Father
|
||||
<small>10 Apr 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -100,6 +100,10 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -242,6 +246,15 @@
|
|||
<h2>Related Posts</h2>
|
||||
<ul class="related-posts">
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/05/03/satoshisignature/">
|
||||
Why Wright's proof is a fake
|
||||
<small>03 May 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/17/wright-nakamoto/">
|
||||
|
@ -260,15 +273,6 @@
|
|||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/10/short-lesson-from-reddit/">
|
||||
Bright Father
|
||||
<small>10 Apr 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -100,6 +100,10 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -164,6 +168,15 @@ Secondo alcuni amministartori del sito, tra cui OptimusCrime, Boneless vendette
|
|||
<h2>Related Posts</h2>
|
||||
<ul class="related-posts">
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/05/03/satoshisignature/">
|
||||
Why Wright's proof is a fake
|
||||
<small>03 May 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/17/wright-nakamoto/">
|
||||
|
@ -182,15 +195,6 @@ Secondo alcuni amministartori del sito, tra cui OptimusCrime, Boneless vendette
|
|||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/10/short-lesson-from-reddit/">
|
||||
Bright Father
|
||||
<small>10 Apr 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -100,6 +100,10 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -213,6 +217,15 @@
|
|||
<h2>Related Posts</h2>
|
||||
<ul class="related-posts">
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/05/03/satoshisignature/">
|
||||
Why Wright's proof is a fake
|
||||
<small>03 May 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/17/wright-nakamoto/">
|
||||
|
@ -231,15 +244,6 @@
|
|||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/10/short-lesson-from-reddit/">
|
||||
Bright Father
|
||||
<small>10 Apr 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -100,6 +100,10 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -182,6 +186,15 @@ In questo modo ed attraverso i cookie Facebook riesce a riunire la maggior parte
|
|||
<h2>Related Posts</h2>
|
||||
<ul class="related-posts">
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/05/03/satoshisignature/">
|
||||
Why Wright's proof is a fake
|
||||
<small>03 May 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/17/wright-nakamoto/">
|
||||
|
@ -200,15 +213,6 @@ In questo modo ed attraverso i cookie Facebook riesce a riunire la maggior parte
|
|||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/10/short-lesson-from-reddit/">
|
||||
Bright Father
|
||||
<small>10 Apr 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -100,6 +100,10 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -231,6 +235,15 @@
|
|||
<h2>Related Posts</h2>
|
||||
<ul class="related-posts">
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/05/03/satoshisignature/">
|
||||
Why Wright's proof is a fake
|
||||
<small>03 May 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/17/wright-nakamoto/">
|
||||
|
@ -249,15 +262,6 @@
|
|||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/10/short-lesson-from-reddit/">
|
||||
Bright Father
|
||||
<small>10 Apr 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -100,6 +100,10 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -154,6 +158,15 @@ Il payload è un tipo di shellcode, ovvero un piccolo pezzo di codice, che sfrut
|
|||
<h2>Related Posts</h2>
|
||||
<ul class="related-posts">
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/05/03/satoshisignature/">
|
||||
Why Wright's proof is a fake
|
||||
<small>03 May 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/17/wright-nakamoto/">
|
||||
|
@ -172,15 +185,6 @@ Il payload è un tipo di shellcode, ovvero un piccolo pezzo di codice, che sfrut
|
|||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/10/short-lesson-from-reddit/">
|
||||
Bright Father
|
||||
<small>10 Apr 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -100,6 +100,10 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -156,6 +160,15 @@
|
|||
<h2>Related Posts</h2>
|
||||
<ul class="related-posts">
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/05/03/satoshisignature/">
|
||||
Why Wright's proof is a fake
|
||||
<small>03 May 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/17/wright-nakamoto/">
|
||||
|
@ -174,15 +187,6 @@
|
|||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/10/short-lesson-from-reddit/">
|
||||
Bright Father
|
||||
<small>10 Apr 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -100,6 +100,10 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -206,6 +210,15 @@
|
|||
<h2>Related Posts</h2>
|
||||
<ul class="related-posts">
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/05/03/satoshisignature/">
|
||||
Why Wright's proof is a fake
|
||||
<small>03 May 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/17/wright-nakamoto/">
|
||||
|
@ -224,15 +237,6 @@
|
|||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/10/short-lesson-from-reddit/">
|
||||
Bright Father
|
||||
<small>10 Apr 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -100,6 +100,10 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -193,6 +197,15 @@ I dati sono la risposta economica a: “Iscriviti, e’ gratis e lo sarà se
|
|||
<h2>Related Posts</h2>
|
||||
<ul class="related-posts">
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/05/03/satoshisignature/">
|
||||
Why Wright's proof is a fake
|
||||
<small>03 May 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/17/wright-nakamoto/">
|
||||
|
@ -211,15 +224,6 @@ I dati sono la risposta economica a: “Iscriviti, e’ gratis e lo sarà se
|
|||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/10/short-lesson-from-reddit/">
|
||||
Bright Father
|
||||
<small>10 Apr 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -100,6 +100,10 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -183,6 +187,15 @@
|
|||
<h2>Related Posts</h2>
|
||||
<ul class="related-posts">
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/05/03/satoshisignature/">
|
||||
Why Wright's proof is a fake
|
||||
<small>03 May 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/17/wright-nakamoto/">
|
||||
|
@ -201,15 +214,6 @@
|
|||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/10/short-lesson-from-reddit/">
|
||||
Bright Father
|
||||
<small>10 Apr 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -100,6 +100,10 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -172,6 +176,15 @@ echo Complete.
|
|||
<h2>Related Posts</h2>
|
||||
<ul class="related-posts">
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/05/03/satoshisignature/">
|
||||
Why Wright's proof is a fake
|
||||
<small>03 May 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/17/wright-nakamoto/">
|
||||
|
@ -190,15 +203,6 @@ echo Complete.
|
|||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/10/short-lesson-from-reddit/">
|
||||
Bright Father
|
||||
<small>10 Apr 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -100,6 +100,10 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -143,6 +147,15 @@
|
|||
<h2>Related Posts</h2>
|
||||
<ul class="related-posts">
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/05/03/satoshisignature/">
|
||||
Why Wright's proof is a fake
|
||||
<small>03 May 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/17/wright-nakamoto/">
|
||||
|
@ -161,15 +174,6 @@
|
|||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/10/short-lesson-from-reddit/">
|
||||
Bright Father
|
||||
<small>10 Apr 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -100,6 +100,10 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -185,6 +189,15 @@
|
|||
<h2>Related Posts</h2>
|
||||
<ul class="related-posts">
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/05/03/satoshisignature/">
|
||||
Why Wright's proof is a fake
|
||||
<small>03 May 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/17/wright-nakamoto/">
|
||||
|
@ -203,15 +216,6 @@
|
|||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/10/short-lesson-from-reddit/">
|
||||
Bright Father
|
||||
<small>10 Apr 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -100,6 +100,10 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -125,6 +129,45 @@
|
|||
<div class="content container">
|
||||
<div class="posts">
|
||||
|
||||
<div class="post">
|
||||
<h1 class="post-title">
|
||||
<a href="/pescewanda/2016/04/02/buridan_donkey/">
|
||||
The Buridan's donkey in python
|
||||
</a>
|
||||
</h1>
|
||||
|
||||
<span class="post-date">02 Apr 2016</span>
|
||||
|
||||
<p>During the final weeks of my exam session I started reading a bit about python 3 using an excellent book: <a href="http://www.diveintopython.net/">Dive into Python</a>.
|
||||
When I noted that python uses the <a href="https://en.wikipedia.org/wiki/Mersenne_Twister">Mersenne Twister PRNG</a> as well I decided to write another version of my <a href="http://francescomecca.eu/index.php/archives/207">Buridan's donkey program</a>.</p>
|
||||
|
||||
<figure class="highlight"><pre><code class="language-python" data-lang="python"> <span class="kn">import</span> <span class="nn">random</span><span class="o">,</span> <span class="nn">sys</span>
|
||||
|
||||
<span class="k">if</span> <span class="n">__name__</span> <span class="o">==</span> <span class="s">'__main__'</span><span class="p">:</span>
|
||||
<span class="n">args</span> <span class="o">=</span> <span class="nb">list</span><span class="p">()</span>
|
||||
<span class="k">if</span> <span class="ow">not</span> <span class="n">sys</span><span class="o">.</span><span class="n">stdin</span><span class="o">.</span><span class="n">isatty</span><span class="p">():</span>
|
||||
<span class="k">for</span> <span class="n">line</span> <span class="ow">in</span> <span class="n">sys</span><span class="o">.</span><span class="n">stdin</span><span class="p">:</span>
|
||||
<span class="k">if</span> <span class="n">line</span><span class="p">[</span><span class="o">-</span><span class="mi">1</span><span class="p">]</span> <span class="ow">is</span> <span class="s">'</span><span class="se">\n</span><span class="s">'</span><span class="p">:</span>
|
||||
<span class="n">line</span> <span class="o">=</span> <span class="n">line</span><span class="p">[:</span><span class="o">-</span><span class="mi">1</span><span class="p">]</span>
|
||||
<span class="n">args</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="n">line</span><span class="p">)</span>
|
||||
<span class="k">else</span><span class="p">:</span>
|
||||
<span class="n">args</span> <span class="o">=</span> <span class="n">sys</span><span class="o">.</span><span class="n">argv</span><span class="p">[</span><span class="mi">1</span><span class="p">:]</span>
|
||||
<span class="n">argRange</span> <span class="o">=</span> <span class="nb">len</span><span class="p">(</span><span class="n">args</span><span class="p">)</span>
|
||||
<span class="k">for</span> <span class="n">i</span> <span class="ow">in</span> <span class="nb">range</span><span class="p">(</span><span class="n">argRange</span><span class="p">):</span>
|
||||
<span class="k">print</span><span class="p">(</span><span class="nb">str</span><span class="p">(</span><span class="n">i</span><span class="o">+</span><span class="mi">1</span><span class="p">)</span> <span class="o">+</span> <span class="s">'.'</span><span class="p">,</span> <span class="n">args</span><span class="o">.</span><span class="n">pop</span><span class="p">(</span><span class="n">random</span><span class="o">.</span><span class="n">randrange</span><span class="p">(</span><span class="mi">0</span><span class="p">,</span> <span class="nb">len</span><span class="p">(</span><span class="n">args</span><span class="p">))))</span></code></pre></figure>
|
||||
|
||||
<p>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.</p>
|
||||
|
||||
<p>Not satisfied enough, I wrote also a telegram bot using the <a href="https://github.com/eternnoir/pyTelegramBotAPI">telebot library</a> that works as the script above but inside the telegram app.
|
||||
The bot can be added to your contact list by simply searching for <a href="http://telegram.me/duridan_donkey_bot">@duridan_donkey_bot</a> (yes, a typo!)</p>
|
||||
|
||||
<p>All the code is opensource and can be found on my github page.</p>
|
||||
|
||||
<p>Francesco Mecca</p>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="post">
|
||||
<h1 class="post-title">
|
||||
<a href="/pescewanda/2016/04/02/blog-migrated/">
|
||||
|
@ -388,27 +431,6 @@ perl-cleaner --all</pre>
|
|||
|
||||
</div>
|
||||
|
||||
<div class="post">
|
||||
<h1 class="post-title">
|
||||
<a href="/index.php/archives/171">
|
||||
Addio Blogspot
|
||||
</a>
|
||||
</h1>
|
||||
|
||||
<span class="post-date">25 Aug 2015</span>
|
||||
|
||||
<p><a href="http://dashburst.com/nsa-needs-google-eye-in-sky/"><img class="aligncenter wp-image-172 size-medium" src="http://francescomecca.eu/wp-content/uploads/2015/08/googlebigbrother-296x300.jpg" alt="" width="296" height="300" srcset="http://francescomecca.eu/wp-content/uploads/2015/08/googlebigbrother-296x300.jpg 296w, http://francescomecca.eu/wp-content/uploads/2015/08/googlebigbrother.jpg 669w" sizes="(max-width: 296px) 100vw, 296px" /></a>Ho deciso di abbandonare Blogspot per le stesse ragioni per cui ho smesso di utilizzare i servizi Google due anni fa: privacy e controllo.</p>
|
||||
|
||||
<p>Ora il blog e` disponibile a questo indirizzo ed e` fisicamente sul mio Raspberry PI che utilizza Raspbian + WordPress.</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="pagination">
|
||||
|
|
|
@ -100,6 +100,10 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -125,6 +129,27 @@
|
|||
<div class="content container">
|
||||
<div class="posts">
|
||||
|
||||
<div class="post">
|
||||
<h1 class="post-title">
|
||||
<a href="/index.php/archives/171">
|
||||
Addio Blogspot
|
||||
</a>
|
||||
</h1>
|
||||
|
||||
<span class="post-date">25 Aug 2015</span>
|
||||
|
||||
<p><a href="http://dashburst.com/nsa-needs-google-eye-in-sky/"><img class="aligncenter wp-image-172 size-medium" src="http://francescomecca.eu/wp-content/uploads/2015/08/googlebigbrother-296x300.jpg" alt="" width="296" height="300" srcset="http://francescomecca.eu/wp-content/uploads/2015/08/googlebigbrother-296x300.jpg 296w, http://francescomecca.eu/wp-content/uploads/2015/08/googlebigbrother.jpg 669w" sizes="(max-width: 296px) 100vw, 296px" /></a>Ho deciso di abbandonare Blogspot per le stesse ragioni per cui ho smesso di utilizzare i servizi Google due anni fa: privacy e controllo.</p>
|
||||
|
||||
<p>Ora il blog e` disponibile a questo indirizzo ed e` fisicamente sul mio Raspberry PI che utilizza Raspbian + WordPress.</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="post">
|
||||
<h1 class="post-title">
|
||||
<a href="/index.php/archives/99">
|
||||
|
@ -498,57 +523,6 @@
|
|||
|
||||
</div>
|
||||
|
||||
<div class="post">
|
||||
<h1 class="post-title">
|
||||
<a href="/index.php/archives/9">
|
||||
Script per il bulk download da Archive.org
|
||||
</a>
|
||||
</h1>
|
||||
|
||||
<span class="post-date">30 Jun 2015</span>
|
||||
|
||||
<p>In questi giorni mi e` capitato di dover scaricare varie collezioni da <a href="https://en.wikipedia.org/wiki/Internet_Archive">archive.org</a>, una libreria digitale multimediale la cui missione e` l’accesso universale a tutta la conoscenza.</p>
|
||||
|
||||
<p>Principalmente lo uso per scaricare tantissime registrazioni live di vari concerti registrati a mio avviso in maniera impeccabile.</p>
|
||||
|
||||
<p>Nel sito si trova una guida per scaricare in bulk usando wget e gli strumenti del sito, ma risulta piuttosto prolissa e complicata se si vuole fare un download al volo.</p>
|
||||
|
||||
<p>Questo e` lo script che uso, modificato da <a href="https://github.com/ghalfacree/bash-scripts/blob/master/archivedownload.sh">questo</a> script: e` scritto in bash e funziona su tutte le distribuzioni sulle quali e` installato wget, tail e sed.</p>
|
||||
|
||||
<pre class="wp-code-highlight prettyprint linenums:1">#!/bin/bash
|
||||
|
||||
# Write here the extension of the file that you want to accept
|
||||
#filetype =.flac
|
||||
#append this to line 24
|
||||
#-A .$filetype
|
||||
#Write here the extension of the file that you want to reject, divided by a comma
|
||||
fileremove = .null
|
||||
|
||||
if [ “$1” = “” ]; then
|
||||
echo USAGE: archivedownload.sh collectionname
|
||||
echo See Archive.org entry page for the collection name.
|
||||
echo Collection name must be entered exactly as shown: lower case, with hyphens.
|
||||
exit
|
||||
fi
|
||||
echo Downloading list of entries for collection name $1…
|
||||
wget -nd -q “http://archive.org/advancedsearch.php?q=collection%3A$1&fl%5B%5D=identifier&sort%5B%5D=identifier+asc&sort%5B%5D=&sort%5B%5D=&rows=9999&page=1&callback=callback&save=yes&output=csv” -O identifiers.txt
|
||||
echo Processing entry list for wget parsing…
|
||||
tail -n +2 identifiers.txt | sed ‘s/”//g’ > processedidentifiers.txt
|
||||
if [ “`cat processedidentifiers.txt | wc -l`” = “0” ]; then
|
||||
echo No identifiers found for collection $1. Check name and try again.
|
||||
rm processedidentifiers.txt identifiers.txt
|
||||
exit
|
||||
fi
|
||||
echo Beginning wget download of `cat processedidentifiers.txt | wc -l` identifiers…
|
||||
wget -r -H -nc -np -nH -nd -e -R $fileremove robots=off -i processedidentifiers.txt -B ‘http://archive.org/download/’
|
||||
rm identifiers.txt processedidentifiers.txt
|
||||
echo Complete.
|
||||
</pre>
|
||||
|
||||
<p>Francesco Mecca</p>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="pagination">
|
||||
|
|
|
@ -100,6 +100,10 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -125,6 +129,57 @@
|
|||
<div class="content container">
|
||||
<div class="posts">
|
||||
|
||||
<div class="post">
|
||||
<h1 class="post-title">
|
||||
<a href="/index.php/archives/9">
|
||||
Script per il bulk download da Archive.org
|
||||
</a>
|
||||
</h1>
|
||||
|
||||
<span class="post-date">30 Jun 2015</span>
|
||||
|
||||
<p>In questi giorni mi e` capitato di dover scaricare varie collezioni da <a href="https://en.wikipedia.org/wiki/Internet_Archive">archive.org</a>, una libreria digitale multimediale la cui missione e` l’accesso universale a tutta la conoscenza.</p>
|
||||
|
||||
<p>Principalmente lo uso per scaricare tantissime registrazioni live di vari concerti registrati a mio avviso in maniera impeccabile.</p>
|
||||
|
||||
<p>Nel sito si trova una guida per scaricare in bulk usando wget e gli strumenti del sito, ma risulta piuttosto prolissa e complicata se si vuole fare un download al volo.</p>
|
||||
|
||||
<p>Questo e` lo script che uso, modificato da <a href="https://github.com/ghalfacree/bash-scripts/blob/master/archivedownload.sh">questo</a> script: e` scritto in bash e funziona su tutte le distribuzioni sulle quali e` installato wget, tail e sed.</p>
|
||||
|
||||
<pre class="wp-code-highlight prettyprint linenums:1">#!/bin/bash
|
||||
|
||||
# Write here the extension of the file that you want to accept
|
||||
#filetype =.flac
|
||||
#append this to line 24
|
||||
#-A .$filetype
|
||||
#Write here the extension of the file that you want to reject, divided by a comma
|
||||
fileremove = .null
|
||||
|
||||
if [ “$1” = “” ]; then
|
||||
echo USAGE: archivedownload.sh collectionname
|
||||
echo See Archive.org entry page for the collection name.
|
||||
echo Collection name must be entered exactly as shown: lower case, with hyphens.
|
||||
exit
|
||||
fi
|
||||
echo Downloading list of entries for collection name $1…
|
||||
wget -nd -q “http://archive.org/advancedsearch.php?q=collection%3A$1&fl%5B%5D=identifier&sort%5B%5D=identifier+asc&sort%5B%5D=&sort%5B%5D=&rows=9999&page=1&callback=callback&save=yes&output=csv” -O identifiers.txt
|
||||
echo Processing entry list for wget parsing…
|
||||
tail -n +2 identifiers.txt | sed ‘s/”//g’ > processedidentifiers.txt
|
||||
if [ “`cat processedidentifiers.txt | wc -l`” = “0” ]; then
|
||||
echo No identifiers found for collection $1. Check name and try again.
|
||||
rm processedidentifiers.txt identifiers.txt
|
||||
exit
|
||||
fi
|
||||
echo Beginning wget download of `cat processedidentifiers.txt | wc -l` identifiers…
|
||||
wget -r -H -nc -np -nH -nd -e -R $fileremove robots=off -i processedidentifiers.txt -B ‘http://archive.org/download/’
|
||||
rm identifiers.txt processedidentifiers.txt
|
||||
echo Complete.
|
||||
</pre>
|
||||
|
||||
<p>Francesco Mecca</p>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="post">
|
||||
<h1 class="post-title">
|
||||
<a href="/index.php/archives/104">
|
||||
|
@ -467,63 +522,6 @@ Command successful.</pre>
|
|||
questa opzione non richiede password ed e` irreversibile.
|
||||
</p>
|
||||
|
||||
<p style="text-align: right;">
|
||||
Francesco Mecca
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="post">
|
||||
<h1 class="post-title">
|
||||
<a href="/index.php/archives/23">
|
||||
La taglia unica del Web 2.0
|
||||
</a>
|
||||
</h1>
|
||||
|
||||
<span class="post-date">01 Jun 2015</span>
|
||||
|
||||
<p><a href="https://www.youtube.com/embed/e3Zs74IH0mc?feature=player_embedded">In questo discorso</a> 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’introduzione del Web 2.0.</p>
|
||||
|
||||
<p>Nel mare di Internet assistiamo a due spiagge molto lontane che delimitano lo spazio della nostra attivita`: l’anonimato e l’identita` virtuale (che ci identifica nel mondo reale).</p>
|
||||
|
||||
<p>E` un po` come misurare i due poli opposti, Facebook e Google Plus che richiedono il tuo nome vero e quindi ogni attivita` online e` un riflesso del proprio io reale, e 4chan, una delle poche risorse anonime nel Web che permette a ciascun utente di fare post anonimi e discutere quindi senza una forma di censura.</p>
|
||||
|
||||
<h3><span style="font-size: large;"><span style="font-weight: normal;"> </span></span></h3>
|
||||
|
||||
<h4><span style="font-size: large;"><span style="font-weight: normal;">The core problem is not the audience, is who you share out</span></span></h4>
|
||||
|
||||
<p>Secondo Chris Poole, quando Google introdusse sul proprio social network la feature “circles”, ovvero la possibilita` di condividere i propri post solo con una parte dei propri followers (l’equivalente delle smart list di Facebook), si e` perso di vista il problema principale, ovvero che non importa l’audience bensi` quale versione di te condividi ).</p>
|
||||
|
||||
<table class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;" cellspacing="0" cellpadding="0" align="center">
|
||||
<tr>
|
||||
<td style="text-align: center;">
|
||||
<a style="margin-left: auto; margin-right: auto;" href="http://francescomecca.eu/wp-content/uploads/2015/08/d574d-twoheads.png"><img src="http://francescomecca.eu/wp-content/uploads/2015/08/d574d-twoheads.png?w=300" alt="" width="400" height="200" border="0" /></a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="tr-caption" style="text-align: center;">
|
||||
<a href="http://www.jisc.ac.uk/blog/whats-the-cost-of-curating-content-in-the-digital-age-01-apr-2015">fonte</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<p>Il Chris che parla al summit e` un Chris diverso dal Chris figlio, Chris fondatore di una startup, Chris admin di 4chan e magari, in un ipotetico futuro, Chris padre.</p>
|
||||
|
||||
<p><u>L’ identita` e` un prisma.</u></p>
|
||||
|
||||
<p>Facebook e gli altri giganti del web vogliono invece essere uno specchio della nostra identita`.</p>
|
||||
|
||||
<h4><span style="font-size: large;"><span style="font-weight: normal;">One size fits all</span></span></h4>
|
||||
|
||||
<p>Il modello della taglia unica e` completamente opposto al principio per cui molte persone gestiscono vari account online. Su ogni account scegli di mostrare una parte di te e con il tempo ti costruisci un’identita` unica ed altrettanto vera.</p>
|
||||
|
||||
<p>E` preoccupante che con il passare del tempo queste possibilita` vengano erose dai giganti del web.</p>
|
||||
|
||||
<p>Spostiamo la nostra attenzione sulle generazioni future: da giovani si compiono naturalmente degli errori che poi ci lasciamo alle spalle crescendo.</p>
|
||||
|
||||
<p>In un mondo dove la linea offline/online sta sbiadendo e non si puo` prendere le distanze da una monolitica identita` virtuale non solo perdiamo la possibilita` di lasciarci alle spalle delle scelte o degli sbagli, ma corriamo incontro al rischio di veder scomparire ogni sfumatura della nostra personalita`.</p>
|
||||
|
||||
<p style="text-align: right;">
|
||||
Francesco Mecca
|
||||
</p>
|
||||
|
|
|
@ -100,6 +100,10 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -125,6 +129,63 @@
|
|||
<div class="content container">
|
||||
<div class="posts">
|
||||
|
||||
<div class="post">
|
||||
<h1 class="post-title">
|
||||
<a href="/index.php/archives/23">
|
||||
La taglia unica del Web 2.0
|
||||
</a>
|
||||
</h1>
|
||||
|
||||
<span class="post-date">01 Jun 2015</span>
|
||||
|
||||
<p><a href="https://www.youtube.com/embed/e3Zs74IH0mc?feature=player_embedded">In questo discorso</a> 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’introduzione del Web 2.0.</p>
|
||||
|
||||
<p>Nel mare di Internet assistiamo a due spiagge molto lontane che delimitano lo spazio della nostra attivita`: l’anonimato e l’identita` virtuale (che ci identifica nel mondo reale).</p>
|
||||
|
||||
<p>E` un po` come misurare i due poli opposti, Facebook e Google Plus che richiedono il tuo nome vero e quindi ogni attivita` online e` un riflesso del proprio io reale, e 4chan, una delle poche risorse anonime nel Web che permette a ciascun utente di fare post anonimi e discutere quindi senza una forma di censura.</p>
|
||||
|
||||
<h3><span style="font-size: large;"><span style="font-weight: normal;"> </span></span></h3>
|
||||
|
||||
<h4><span style="font-size: large;"><span style="font-weight: normal;">The core problem is not the audience, is who you share out</span></span></h4>
|
||||
|
||||
<p>Secondo Chris Poole, quando Google introdusse sul proprio social network la feature “circles”, ovvero la possibilita` di condividere i propri post solo con una parte dei propri followers (l’equivalente delle smart list di Facebook), si e` perso di vista il problema principale, ovvero che non importa l’audience bensi` quale versione di te condividi ).</p>
|
||||
|
||||
<table class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;" cellspacing="0" cellpadding="0" align="center">
|
||||
<tr>
|
||||
<td style="text-align: center;">
|
||||
<a style="margin-left: auto; margin-right: auto;" href="http://francescomecca.eu/wp-content/uploads/2015/08/d574d-twoheads.png"><img src="http://francescomecca.eu/wp-content/uploads/2015/08/d574d-twoheads.png?w=300" alt="" width="400" height="200" border="0" /></a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="tr-caption" style="text-align: center;">
|
||||
<a href="http://www.jisc.ac.uk/blog/whats-the-cost-of-curating-content-in-the-digital-age-01-apr-2015">fonte</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<p>Il Chris che parla al summit e` un Chris diverso dal Chris figlio, Chris fondatore di una startup, Chris admin di 4chan e magari, in un ipotetico futuro, Chris padre.</p>
|
||||
|
||||
<p><u>L’ identita` e` un prisma.</u></p>
|
||||
|
||||
<p>Facebook e gli altri giganti del web vogliono invece essere uno specchio della nostra identita`.</p>
|
||||
|
||||
<h4><span style="font-size: large;"><span style="font-weight: normal;">One size fits all</span></span></h4>
|
||||
|
||||
<p>Il modello della taglia unica e` completamente opposto al principio per cui molte persone gestiscono vari account online. Su ogni account scegli di mostrare una parte di te e con il tempo ti costruisci un’identita` unica ed altrettanto vera.</p>
|
||||
|
||||
<p>E` preoccupante che con il passare del tempo queste possibilita` vengano erose dai giganti del web.</p>
|
||||
|
||||
<p>Spostiamo la nostra attenzione sulle generazioni future: da giovani si compiono naturalmente degli errori che poi ci lasciamo alle spalle crescendo.</p>
|
||||
|
||||
<p>In un mondo dove la linea offline/online sta sbiadendo e non si puo` prendere le distanze da una monolitica identita` virtuale non solo perdiamo la possibilita` di lasciarci alle spalle delle scelte o degli sbagli, ma corriamo incontro al rischio di veder scomparire ogni sfumatura della nostra personalita`.</p>
|
||||
|
||||
<p style="text-align: right;">
|
||||
Francesco Mecca
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="post">
|
||||
<h1 class="post-title">
|
||||
<a href="/index.php/archives/27">
|
||||
|
@ -948,162 +1009,6 @@ Truecrypt permette di creare un volume crittografico che si presenta come un fil
|
|||
|
||||
</div>
|
||||
|
||||
<div class="post">
|
||||
<h1 class="post-title">
|
||||
<a href="/index.php/archives/44">
|
||||
La prima volta non si scorda mai!
|
||||
</a>
|
||||
</h1>
|
||||
|
||||
<span class="post-date">08 May 2015</span>
|
||||
|
||||
<p><span style="font-family:inherit;">Questa e` un’ 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. </span></p>
|
||||
|
||||
<h4><strong><span style="font-weight:normal;"><span style="font-family:inherit;"> </span></span></strong></h4>
|
||||
|
||||
<h4><strong><span style="font-weight:normal;"><span style="font-family:inherit;"></span></span></strong><span style="font-weight:normal;"><span style="font-family:inherit;">A che eta` hai utilizzato per la prima volta il computer?</span></span></h4>
|
||||
|
||||
<h4><span style="font-weight:normal;"><span style="font-family:inherit;"> </span></span></h4>
|
||||
|
||||
<p><span style="font-family:inherit;"><b>Francesco: </b>Mi ricordo che la prima volta che un computer varco<code>la soglia di casa era l&#8217;anno 2000 poiche</code> i miei genitori per lavoro si son trovati e si trovano tutt’ora ad usare giornalmente il computer ed ogni tanto permettevano anche a me di giocarci un pochino. A 6 anni ricevetti come regalo un grigio computer fisso che divenne da allora il mio personale. </span><br>
|
||||
<span style="font-family:inherit;"><b><br />Eugenio: </b>La prima volta che utilizzai il computer avevo circa 10 anni, prima l’avevo visto solo utilizzare ai miei genitori, poi quando incominciai a fare le medie iniziai a utilizzare il computer per imparare a usare power point, con il quale scrissi e presentai la tesina degli esami di terza media, e questo mi fece acquisire una certa familiarita’ con il computer, anche se molto limitata. <br /> </span><br>
|
||||
<span style="font-family:inherit;"><b>Gabriele:</b> La prima volta che ho utilizzato il computer ero un po’ piccolo, risale a nove anni fa e avevo dieci anni, spinto dalla curiosità di questo nuovo oggetto misterioso, mi piacque molto sin da subito, ovviamente a causa della presenza dei giochi, che erano le uniche cose che a quell’epoca usavo, naturalmente ero ignaro del suo vero potenziale e lo vedevo solo come un oggetto di divertimento. </span></p>
|
||||
|
||||
<h4><span style="font-family:inherit;"> <br /></h4>
|
||||
|
||||
<table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left:auto;margin-right:auto;text-align:center;">
|
||||
<tr>
|
||||
<td style="text-align:center;">
|
||||
<a href="http://francescomecca.eu/wp-content/uploads/2015/08/dac55-9297-windows-start-button-on-a-computer-screen-pv.jpg" style="margin-left:auto;margin-right:auto;"><img border="0" height="265" src="http://francescomecca.eu/wp-content/uploads/2015/08/dac55-9297-windows-start-button-on-a-computer-screen-pv.jpg?w=300" width="400" /></a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="tr-caption" style="text-align:center;">
|
||||
<a href="http://www.publicdomainpictures.net/view-image.php?image=1829&picture=internet-browsing" target="_blank"><span style="font-family:inherit;">f<span style="font-family:inherit;">onte</span></span></a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<div class="separator" style="clear:both;text-align:center;">
|
||||
</div>
|
||||
|
||||
<p>
|
||||
<div class="separator" style="clear:both;text-align:center;">
|
||||
</div>
|
||||
|
||||
<p>
|
||||
</span></h4>
|
||||
|
||||
<h4>
|
||||
<span style="font-family:inherit;">Quando ti sei approcciato ad Internet la prima volta e cosa ti ha spinto? </span>
|
||||
</h4>
|
||||
|
||||
<h4>
|
||||
<span style="font-family:inherit;"> </span>
|
||||
</h4>
|
||||
|
||||
<h4>
|
||||
<span style="font-family:inherit;"></span>
|
||||
</h4>
|
||||
|
||||
<p>
|
||||
<span style="font-family:inherit;"><b><span style="font-family:inherit;"><span style="font-size:small;">Francesco: </span></span></b>Facevo la seconda elementare quando in casa arrivo` un modem ISDN 128kb/s e nel 2004 adottammo la banda larga con Telecom. Ero incuriosito dal mondo del Web che per me rappresentava il grande mare che Ulisse navigava con il suo equipaggio. </span><br /><span style="font-family:inherit;">La curiosita` e` stat<span style="font-family:inherit;">o</span> <span style="font-family:inherit;">il</span> principale <span style="font-family:inherit;">motivo </span>del mio approdo nel mondo del Web e tutt’ora mi spinge ad affrontare nuove sfide tecnologiche. <br /> </span><br /><span style="font-family:inherit;"><span style="font-size:small;"><b>Eugenio:</b></span> Risale al periodo in cui iniziai le medie la prima volta che andai su internet, il motivo fu che I professori chiedevano di fare ricerce su vari tipi di argomenti e io trovai comodo andare su Internet per trovare le informazioni che mi servivano, visto che sapevo di poterle trovare istantaneamente li’. Così, dopo aver chiesto il permesso ai miei genitori, aprii internet explorer e iniziai a navigare nel Web. <br /> </span><br /><span style="font-family:inherit;"><span style="font-size:small;"><b>Gabriele:</b></span> Qualche tempo dopo aver iniziato a utilizzare il computer venni a conoscenza di questo immenso mondo virtuale al quale si poteva accedere avendo una connessione. Il motivo principale era quello di dover fare una ricerca per la scuola, e internet risultava lo strumento perfetto per ciò a causa della grande quantità di dati che contiene e dell’immediatezza con cui si possono reperire. </span><br />
|
||||
|
||||
<h4>
|
||||
<span style="font-family:inherit;"> </span>
|
||||
</h4>
|
||||
|
||||
<h4>
|
||||
<span style="font-family:inherit;"> </span>
|
||||
</h4>
|
||||
|
||||
<h4>
|
||||
<span style="font-family:inherit;">Internet e Web: come si e` sviluppata in te la consapevolezza che non fossero la stessa cosa? </span>
|
||||
</h4>
|
||||
|
||||
<h4>
|
||||
<span style="font-family:inherit;"> </span>
|
||||
</h4>
|
||||
|
||||
<h4>
|
||||
<span style="font-family:inherit;"></span>
|
||||
</h4>
|
||||
|
||||
<p>
|
||||
<span style="font-family:inherit;"><b>Francesco:</b> Inizialmente non ero cosciente che Internet fosse solo la base su cui si fonda il Web e che in realta` si completa con molti altri strumenti; quando organizzavo con i miei compagni LAN party e giocavamo in rete locale iniziai a chiedermi se effettivamente Internet avesse molto altro da offrire che le sole pagine online (indicizzate dai motori di ricerca) e cosa c’era al di la` del Web che fino ad allora conoscevo. <br /> </span><br /><span style="font-family:inherit;"><b>Eugenio:</b> Questa consapevolezza l’ho sviluppata non all’inizio, ma con il passare del tempo aumentando la mia esperienza con il computer, ma fin dai primi anni di utilizzo capivo che c’era una distinzione tra I due grazie anche al fatto dell’utilizzo di messanger o la posta elettronica, in breve mi rendevo sempre piu’ conto che il web era solo una piccola parte di Internet e dei servizi che puo’ offrire che va oltre le pagine Web da visitare. <br /><u> </u></span><br /><span style="font-family:inherit;"><b><span style="font-size:small;">Gabriele:</span> </b>Col passare del tempo e usando sempre più il computer, mi resi conto che quello che io chiamavo internet era un insieme più vasto di quel che pensavo. La consapevolezza venne quando scoprii che non si poteva solo visitare siti, ma anche che esistevano servizi di posta elettronica per poter inviare le e-mail, oppure altri dove poter scaricare tutto ciò di cui avevo bisogno. </span><br />
|
||||
|
||||
<h4>
|
||||
<br />
|
||||
|
||||
<table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left:auto;margin-right:auto;text-align:center;">
|
||||
<tr>
|
||||
<td style="text-align:center;">
|
||||
<a href="http://planeta.wikispaces.com/digitalnatives" style="margin-left:auto;margin-right:auto;" target="_blank"><img alt=" fonte" border="0" height="480" src="http://francescomecca.eu/wp-content/uploads/2015/08/f2a10-url.jpe" width="640" /></a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="tr-caption" style="text-align:center;">
|
||||
<a href="http://planeta.wikispaces.com/digitalnatives">fonte</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</h4>
|
||||
|
||||
<h4>
|
||||
<span style="font-family:inherit;">Ti sei mai reso sentito di far parte di una nuova classe che molti definiscono con il termine “nativi digitali”? </span>
|
||||
</h4>
|
||||
|
||||
<h4>
|
||||
</h4>
|
||||
|
||||
<h4>
|
||||
<span style="font-family:inherit;"></span>
|
||||
</h4>
|
||||
|
||||
<p>
|
||||
<span style="font-family:inherit;"><b>Francesco:</b> Sono cresciuto con il computer e i computer sono cresciuti con me. Tecnicamente sono un nativo digitale, mi sono sempre approcciato alle nuove tecnologie con molto interesse e un’ innata naturalezza. Mi sento figlio del digitale ma non mi sento allineato con la visione che i grandi giganti della rete hanno adottato e stanno cercando di diffondere. Spesso il web mi offre rifugio, spesso sono io stesso che lo rifuggo. </span><br /><span style="font-family:inherit;"><b><br />Eugenio:</b> All’inizio no, pensavo che usare il computer e saperne utilizzare gli strumenti base fosse una cosa normale che tutti sapessero fare, ma poi mi accorsi che non era cosi<span style="font-family:inherit;">`</span>, il fatto che io sapessi utilzzare il computer sin da bambino e che mi ci trovassi a mio agio era legato al fatto di far parte di un periodo storico che ha visto I computer sempre piu<span style="font-family:inherit;">`</span> presenti nella vita quotidiana delle persone. Quindi quelli nati nel mio stesso periodo vedevano <span style="font-family:inherit;">i</span> computer come una cosa che e<span style="font-family:inherit;">`</span> sempre stata presente nella nosta quotidianita<span style="font-family:inherit;">`</span>,per questo molti ci definiscono con il termine “nativi digitali”, mentre le persone che appartengono a generazioni passate si sono trovate a fare <span style="font-family:inherit;">i</span> conti con questa nuova tecnologia a loro poco familiare e con cui, magari, hanno avuto difficolta’ ad approcciarsi. </span><br /><span style="font-family:inherit;"><br /><b>Gabriele: </b>Non <span style="font-family:inherit;">e<span style="font-family:inherit;">`</span></span> un pensiero che <span style="font-family:inherit;">e`</span> nato subito quello di far parte della classe dei nativi digitali, si riscontra col tempo, quando scopri che il modo di crescere delle persone di generazioni precedenti era diverso, perch<span style="font-family:inherit;">e`</span> non avevano nessun rapporto con la tecnologia perché era meno presente, infatti per noi <span style="font-family:inherit;">e`</span> qualcosa che siamo abituati a vedere sin da piccoli e ci cresciamo, mentre le altre generazioni hanno visto e vissuto il cambiamento dovendosi adattare. </span><br />
|
||||
|
||||
<h4>
|
||||
<br />
|
||||
|
||||
<table cellpadding="0" cellspacing="0" class="tr-caption-container" style="float:left;margin-right:1em;text-align:left;">
|
||||
<tr>
|
||||
<td style="text-align:center;">
|
||||
<a href="http://www.allpurposeguru.com/2011/09/information-seeking-the-internet-vs-bookstores-vs-the-library" style="clear:left;margin-bottom:1em;margin-left:auto;margin-right:auto;"><img alt="" border="0" height="566" src="http://francescomecca.eu/wp-content/uploads/2015/08/035d8-5727308332_8635bee3d9_o.jpg" title="" width="640" /></a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="tr-caption" style="text-align:center;">
|
||||
<a href="http://www.allpurposeguru.com/2011/09/information-seeking-the-internet-vs-bookstores-vs-the-library/">fonte</a><a href="http://www.allpurposeguru.com/2011/09/information-seeking-the-internet-vs-bookstores-vs-the-library"></a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</h4>
|
||||
|
||||
<h4>
|
||||
<span style="font-family:inherit;">In questi anni il tuo rapporto con Internet e` sicuramente cambiato. Che punto di vista hai maturato? Pensi di aver maturato una “coscienza digitale” consapevole?</span>
|
||||
</h4>
|
||||
|
||||
<h4>
|
||||
<span style="font-family:inherit;"> </span>
|
||||
</h4>
|
||||
|
||||
<p>
|
||||
<span style="font-family:inherit;"><b>Francesco: </b>Ne<span style="font-family:inherit;">i</span> primi anni tutta la mia attivita` informatica si concentrava <span style="font-family:inherit;">nello</span> scoprire cosa internet aveva da offrire. Appena venni a conoscenza del protocollo Bittorrent (era appena il 2004) iniziai ad approfondire il vasto campo del p2p e la condivisione online dei contenuti. La maggior parte del tempo la trascorrevo provando e approfondendo vari protocolli di messaggistica, scambio dati e successivamente, con gli strumenti necessari, algoritmi crittografici. </span><br /><span style="font-family:inherit;"><span style="font-family:inherit;">Nei p<span style="font-family:inherit;">rimi anni</span></span> Internet e` stato per me un cappello magico dal quale potevo estrarre conigli o nascondere me stesso. Dalle scuole medie in poi scopri nel mondo digitale un tempio di cultura e di conoscenza (non sempre ortodossa e ancora piu` affascinante). A partire dalla diffusione del “Web 2.0” la mia coscienza digitale e` evoluta sempre piu` in fretta mentre vedevo una piccola parte del mio mondo invasa dai “colossi” dell’industria moderna che per <span style="font-family:inherit;">p<span style="font-family:inherit;">er <span style="font-family:inherit;">un ingenuo ragazzo liceale, quale io ero,</span></span></span> non avevano ancora peso. Mentre lo spazio in rete si <span style="font-family:inherit;">re</span>stringeva la mia consapevolezza del mondo digitale aumentava: tutt’ora assisto a cambiamenti forti nel panorama dell’informatica che si discostano dalla mia visione<span style="font-family:inherit;">, </span>e dal mio utilizzo del web<span style="font-family:inherit;">,</span> ma che per il principio di azione e reazione mi fanno comprendere chi sono e che tipo di nativo digitale voglio essere. </p>
|
||||
|
||||
<div class="highlight"><pre><code class="language-" data-lang=""> <p>
|
||||
<b>Eugenio:</b> Sicuramente il mio rapporto con internet e<span style="font-family:inherit;">`</span> cambiato nel corso degli anni, infatti nei primi tempi usavo internet per fare ricerche sul web o chattare con I miei amici tramite servizi quali messenger, ma con il passare del tempo divenni sempre piu<span style="font-family:inherit;">`</span> consapevole dei servizi che internet offriva, iniziai a informarmi su argomenti di attualita&#8217; o che mi interessavano, giocare a giochi online o anche in rete locale con amici, fare acquisti su vari siti di e-commerce e intrattenermi sulle varie piattaforme che si possono trovare che si sono sostituite alla televisione. Posso dire dal mio punto di vista che internet e<span style="font-family:inherit;">`</span> senz&#8217;altro un vastissimo luogo che offre molte occasioni sia di crescita culturale, vista la quantita&#8217; di informazioni che vi si possono trovare, sia personale, poiche<span style="font-family:inherit;">`</span> e<span style="font-family:inherit;">`</span> anche un luogo di incontro tra persone che si confrontano tra loro, anche se a volte possono trovarsi contenuti espliciti. Vista l&#8217;importanza di internet e<span style="font-family:inherit;">`</span> bene maturare una coscienza diditale quanto piu<span style="font-family:inherit;">`</span> consapevole per far in modo che le nostre azioni sulla rete siano eticamente corrette e quindi evitare di scaricare file piratati, o evitare azioni di cyberbullismo contro altre persone e tutti quei comportamenti che possono danneggiare gli altri. </span><br /><span style="font-family:inherit;"><br /><b>Gabriele:</b> Crescendo ovviamente il mio rapporto con Internet <span style="font-family:inherit;">e`</span> cambiato, mentre prima quando ero piccolo lo usavo per giocare, col passare del tempo ho scoperto che Internet <span style="font-family:inherit;">e`</span> molto di pi<span style="font-family:inherit;">u`</span>, mette in contatto le persone, è un mezzo per la diffusione di informazioni, musica e molto altro. Oggi lo uso principalmente per <span style="font-family:inherit;">i</span> social, ascoltare musica, comprare articoli e anche quando posso restare informato. Durante questi anni <span style="font-family:inherit;">e`</span> cambiata anche la mia considerazione su Internet, infatti pensavo erroneamente che fosse un posto innocuo, ma mi dovetti ricredere perch<span style="font-family:inherit;">e`</span> non è un luogo adatto a tutti a causa dei contenuti espliciti che contiene. Per quanto riguarda la coscienza digitale questa è una caratteristica che si può sviluppare una volta che si è a conoscenza di averla, perché ogni cosa che facciamo su Internet ha un peso, grande o piccolo che sia, e dobbiamo esserne a conoscenza per limitare eventuali danni o per trarne beneficio, infatti personalmente ogni volta che faccio qualcosa su Internet mi chiedo sempre quali potrebbero essere le conseguenze della mia azione, cosa che dovrebbe fare chiunque. </span>
|
||||
</p>
|
||||
|
||||
<div style="text-align:right;">
|
||||
<span style="font-family:inherit;">Fran<span style="font-family:inherit;">cesco <span style="font-family:inherit;">Mecca</span>, Eugenio Corso, Gabriele</span> <span style="font-family:inherit;">Cor<span style="font-family:inherit;">so</span></span></span>
|
||||
</div>
|
||||
</code></pre></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="pagination">
|
||||
|
|
|
@ -100,6 +100,10 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -125,6 +129,162 @@
|
|||
<div class="content container">
|
||||
<div class="posts">
|
||||
|
||||
<div class="post">
|
||||
<h1 class="post-title">
|
||||
<a href="/index.php/archives/44">
|
||||
La prima volta non si scorda mai!
|
||||
</a>
|
||||
</h1>
|
||||
|
||||
<span class="post-date">08 May 2015</span>
|
||||
|
||||
<p><span style="font-family:inherit;">Questa e` un’ 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. </span></p>
|
||||
|
||||
<h4><strong><span style="font-weight:normal;"><span style="font-family:inherit;"> </span></span></strong></h4>
|
||||
|
||||
<h4><strong><span style="font-weight:normal;"><span style="font-family:inherit;"></span></span></strong><span style="font-weight:normal;"><span style="font-family:inherit;">A che eta` hai utilizzato per la prima volta il computer?</span></span></h4>
|
||||
|
||||
<h4><span style="font-weight:normal;"><span style="font-family:inherit;"> </span></span></h4>
|
||||
|
||||
<p><span style="font-family:inherit;"><b>Francesco: </b>Mi ricordo che la prima volta che un computer varco<code>la soglia di casa era l&#8217;anno 2000 poiche</code> i miei genitori per lavoro si son trovati e si trovano tutt’ora ad usare giornalmente il computer ed ogni tanto permettevano anche a me di giocarci un pochino. A 6 anni ricevetti come regalo un grigio computer fisso che divenne da allora il mio personale. </span><br>
|
||||
<span style="font-family:inherit;"><b><br />Eugenio: </b>La prima volta che utilizzai il computer avevo circa 10 anni, prima l’avevo visto solo utilizzare ai miei genitori, poi quando incominciai a fare le medie iniziai a utilizzare il computer per imparare a usare power point, con il quale scrissi e presentai la tesina degli esami di terza media, e questo mi fece acquisire una certa familiarita’ con il computer, anche se molto limitata. <br /> </span><br>
|
||||
<span style="font-family:inherit;"><b>Gabriele:</b> La prima volta che ho utilizzato il computer ero un po’ piccolo, risale a nove anni fa e avevo dieci anni, spinto dalla curiosità di questo nuovo oggetto misterioso, mi piacque molto sin da subito, ovviamente a causa della presenza dei giochi, che erano le uniche cose che a quell’epoca usavo, naturalmente ero ignaro del suo vero potenziale e lo vedevo solo come un oggetto di divertimento. </span></p>
|
||||
|
||||
<h4><span style="font-family:inherit;"> <br /></h4>
|
||||
|
||||
<table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left:auto;margin-right:auto;text-align:center;">
|
||||
<tr>
|
||||
<td style="text-align:center;">
|
||||
<a href="http://francescomecca.eu/wp-content/uploads/2015/08/dac55-9297-windows-start-button-on-a-computer-screen-pv.jpg" style="margin-left:auto;margin-right:auto;"><img border="0" height="265" src="http://francescomecca.eu/wp-content/uploads/2015/08/dac55-9297-windows-start-button-on-a-computer-screen-pv.jpg?w=300" width="400" /></a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="tr-caption" style="text-align:center;">
|
||||
<a href="http://www.publicdomainpictures.net/view-image.php?image=1829&picture=internet-browsing" target="_blank"><span style="font-family:inherit;">f<span style="font-family:inherit;">onte</span></span></a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<div class="separator" style="clear:both;text-align:center;">
|
||||
</div>
|
||||
|
||||
<p>
|
||||
<div class="separator" style="clear:both;text-align:center;">
|
||||
</div>
|
||||
|
||||
<p>
|
||||
</span></h4>
|
||||
|
||||
<h4>
|
||||
<span style="font-family:inherit;">Quando ti sei approcciato ad Internet la prima volta e cosa ti ha spinto? </span>
|
||||
</h4>
|
||||
|
||||
<h4>
|
||||
<span style="font-family:inherit;"> </span>
|
||||
</h4>
|
||||
|
||||
<h4>
|
||||
<span style="font-family:inherit;"></span>
|
||||
</h4>
|
||||
|
||||
<p>
|
||||
<span style="font-family:inherit;"><b><span style="font-family:inherit;"><span style="font-size:small;">Francesco: </span></span></b>Facevo la seconda elementare quando in casa arrivo` un modem ISDN 128kb/s e nel 2004 adottammo la banda larga con Telecom. Ero incuriosito dal mondo del Web che per me rappresentava il grande mare che Ulisse navigava con il suo equipaggio. </span><br /><span style="font-family:inherit;">La curiosita` e` stat<span style="font-family:inherit;">o</span> <span style="font-family:inherit;">il</span> principale <span style="font-family:inherit;">motivo </span>del mio approdo nel mondo del Web e tutt’ora mi spinge ad affrontare nuove sfide tecnologiche. <br /> </span><br /><span style="font-family:inherit;"><span style="font-size:small;"><b>Eugenio:</b></span> Risale al periodo in cui iniziai le medie la prima volta che andai su internet, il motivo fu che I professori chiedevano di fare ricerce su vari tipi di argomenti e io trovai comodo andare su Internet per trovare le informazioni che mi servivano, visto che sapevo di poterle trovare istantaneamente li’. Così, dopo aver chiesto il permesso ai miei genitori, aprii internet explorer e iniziai a navigare nel Web. <br /> </span><br /><span style="font-family:inherit;"><span style="font-size:small;"><b>Gabriele:</b></span> Qualche tempo dopo aver iniziato a utilizzare il computer venni a conoscenza di questo immenso mondo virtuale al quale si poteva accedere avendo una connessione. Il motivo principale era quello di dover fare una ricerca per la scuola, e internet risultava lo strumento perfetto per ciò a causa della grande quantità di dati che contiene e dell’immediatezza con cui si possono reperire. </span><br />
|
||||
|
||||
<h4>
|
||||
<span style="font-family:inherit;"> </span>
|
||||
</h4>
|
||||
|
||||
<h4>
|
||||
<span style="font-family:inherit;"> </span>
|
||||
</h4>
|
||||
|
||||
<h4>
|
||||
<span style="font-family:inherit;">Internet e Web: come si e` sviluppata in te la consapevolezza che non fossero la stessa cosa? </span>
|
||||
</h4>
|
||||
|
||||
<h4>
|
||||
<span style="font-family:inherit;"> </span>
|
||||
</h4>
|
||||
|
||||
<h4>
|
||||
<span style="font-family:inherit;"></span>
|
||||
</h4>
|
||||
|
||||
<p>
|
||||
<span style="font-family:inherit;"><b>Francesco:</b> Inizialmente non ero cosciente che Internet fosse solo la base su cui si fonda il Web e che in realta` si completa con molti altri strumenti; quando organizzavo con i miei compagni LAN party e giocavamo in rete locale iniziai a chiedermi se effettivamente Internet avesse molto altro da offrire che le sole pagine online (indicizzate dai motori di ricerca) e cosa c’era al di la` del Web che fino ad allora conoscevo. <br /> </span><br /><span style="font-family:inherit;"><b>Eugenio:</b> Questa consapevolezza l’ho sviluppata non all’inizio, ma con il passare del tempo aumentando la mia esperienza con il computer, ma fin dai primi anni di utilizzo capivo che c’era una distinzione tra I due grazie anche al fatto dell’utilizzo di messanger o la posta elettronica, in breve mi rendevo sempre piu’ conto che il web era solo una piccola parte di Internet e dei servizi che puo’ offrire che va oltre le pagine Web da visitare. <br /><u> </u></span><br /><span style="font-family:inherit;"><b><span style="font-size:small;">Gabriele:</span> </b>Col passare del tempo e usando sempre più il computer, mi resi conto che quello che io chiamavo internet era un insieme più vasto di quel che pensavo. La consapevolezza venne quando scoprii che non si poteva solo visitare siti, ma anche che esistevano servizi di posta elettronica per poter inviare le e-mail, oppure altri dove poter scaricare tutto ciò di cui avevo bisogno. </span><br />
|
||||
|
||||
<h4>
|
||||
<br />
|
||||
|
||||
<table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left:auto;margin-right:auto;text-align:center;">
|
||||
<tr>
|
||||
<td style="text-align:center;">
|
||||
<a href="http://planeta.wikispaces.com/digitalnatives" style="margin-left:auto;margin-right:auto;" target="_blank"><img alt=" fonte" border="0" height="480" src="http://francescomecca.eu/wp-content/uploads/2015/08/f2a10-url.jpe" width="640" /></a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="tr-caption" style="text-align:center;">
|
||||
<a href="http://planeta.wikispaces.com/digitalnatives">fonte</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</h4>
|
||||
|
||||
<h4>
|
||||
<span style="font-family:inherit;">Ti sei mai reso sentito di far parte di una nuova classe che molti definiscono con il termine “nativi digitali”? </span>
|
||||
</h4>
|
||||
|
||||
<h4>
|
||||
</h4>
|
||||
|
||||
<h4>
|
||||
<span style="font-family:inherit;"></span>
|
||||
</h4>
|
||||
|
||||
<p>
|
||||
<span style="font-family:inherit;"><b>Francesco:</b> Sono cresciuto con il computer e i computer sono cresciuti con me. Tecnicamente sono un nativo digitale, mi sono sempre approcciato alle nuove tecnologie con molto interesse e un’ innata naturalezza. Mi sento figlio del digitale ma non mi sento allineato con la visione che i grandi giganti della rete hanno adottato e stanno cercando di diffondere. Spesso il web mi offre rifugio, spesso sono io stesso che lo rifuggo. </span><br /><span style="font-family:inherit;"><b><br />Eugenio:</b> All’inizio no, pensavo che usare il computer e saperne utilizzare gli strumenti base fosse una cosa normale che tutti sapessero fare, ma poi mi accorsi che non era cosi<span style="font-family:inherit;">`</span>, il fatto che io sapessi utilzzare il computer sin da bambino e che mi ci trovassi a mio agio era legato al fatto di far parte di un periodo storico che ha visto I computer sempre piu<span style="font-family:inherit;">`</span> presenti nella vita quotidiana delle persone. Quindi quelli nati nel mio stesso periodo vedevano <span style="font-family:inherit;">i</span> computer come una cosa che e<span style="font-family:inherit;">`</span> sempre stata presente nella nosta quotidianita<span style="font-family:inherit;">`</span>,per questo molti ci definiscono con il termine “nativi digitali”, mentre le persone che appartengono a generazioni passate si sono trovate a fare <span style="font-family:inherit;">i</span> conti con questa nuova tecnologia a loro poco familiare e con cui, magari, hanno avuto difficolta’ ad approcciarsi. </span><br /><span style="font-family:inherit;"><br /><b>Gabriele: </b>Non <span style="font-family:inherit;">e<span style="font-family:inherit;">`</span></span> un pensiero che <span style="font-family:inherit;">e`</span> nato subito quello di far parte della classe dei nativi digitali, si riscontra col tempo, quando scopri che il modo di crescere delle persone di generazioni precedenti era diverso, perch<span style="font-family:inherit;">e`</span> non avevano nessun rapporto con la tecnologia perché era meno presente, infatti per noi <span style="font-family:inherit;">e`</span> qualcosa che siamo abituati a vedere sin da piccoli e ci cresciamo, mentre le altre generazioni hanno visto e vissuto il cambiamento dovendosi adattare. </span><br />
|
||||
|
||||
<h4>
|
||||
<br />
|
||||
|
||||
<table cellpadding="0" cellspacing="0" class="tr-caption-container" style="float:left;margin-right:1em;text-align:left;">
|
||||
<tr>
|
||||
<td style="text-align:center;">
|
||||
<a href="http://www.allpurposeguru.com/2011/09/information-seeking-the-internet-vs-bookstores-vs-the-library" style="clear:left;margin-bottom:1em;margin-left:auto;margin-right:auto;"><img alt="" border="0" height="566" src="http://francescomecca.eu/wp-content/uploads/2015/08/035d8-5727308332_8635bee3d9_o.jpg" title="" width="640" /></a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="tr-caption" style="text-align:center;">
|
||||
<a href="http://www.allpurposeguru.com/2011/09/information-seeking-the-internet-vs-bookstores-vs-the-library/">fonte</a><a href="http://www.allpurposeguru.com/2011/09/information-seeking-the-internet-vs-bookstores-vs-the-library"></a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</h4>
|
||||
|
||||
<h4>
|
||||
<span style="font-family:inherit;">In questi anni il tuo rapporto con Internet e` sicuramente cambiato. Che punto di vista hai maturato? Pensi di aver maturato una “coscienza digitale” consapevole?</span>
|
||||
</h4>
|
||||
|
||||
<h4>
|
||||
<span style="font-family:inherit;"> </span>
|
||||
</h4>
|
||||
|
||||
<p>
|
||||
<span style="font-family:inherit;"><b>Francesco: </b>Ne<span style="font-family:inherit;">i</span> primi anni tutta la mia attivita` informatica si concentrava <span style="font-family:inherit;">nello</span> scoprire cosa internet aveva da offrire. Appena venni a conoscenza del protocollo Bittorrent (era appena il 2004) iniziai ad approfondire il vasto campo del p2p e la condivisione online dei contenuti. La maggior parte del tempo la trascorrevo provando e approfondendo vari protocolli di messaggistica, scambio dati e successivamente, con gli strumenti necessari, algoritmi crittografici. </span><br /><span style="font-family:inherit;"><span style="font-family:inherit;">Nei p<span style="font-family:inherit;">rimi anni</span></span> Internet e` stato per me un cappello magico dal quale potevo estrarre conigli o nascondere me stesso. Dalle scuole medie in poi scopri nel mondo digitale un tempio di cultura e di conoscenza (non sempre ortodossa e ancora piu` affascinante). A partire dalla diffusione del “Web 2.0” la mia coscienza digitale e` evoluta sempre piu` in fretta mentre vedevo una piccola parte del mio mondo invasa dai “colossi” dell’industria moderna che per <span style="font-family:inherit;">p<span style="font-family:inherit;">er <span style="font-family:inherit;">un ingenuo ragazzo liceale, quale io ero,</span></span></span> non avevano ancora peso. Mentre lo spazio in rete si <span style="font-family:inherit;">re</span>stringeva la mia consapevolezza del mondo digitale aumentava: tutt’ora assisto a cambiamenti forti nel panorama dell’informatica che si discostano dalla mia visione<span style="font-family:inherit;">, </span>e dal mio utilizzo del web<span style="font-family:inherit;">,</span> ma che per il principio di azione e reazione mi fanno comprendere chi sono e che tipo di nativo digitale voglio essere. </p>
|
||||
|
||||
<div class="highlight"><pre><code class="language-" data-lang=""> <p>
|
||||
<b>Eugenio:</b> Sicuramente il mio rapporto con internet e<span style="font-family:inherit;">`</span> cambiato nel corso degli anni, infatti nei primi tempi usavo internet per fare ricerche sul web o chattare con I miei amici tramite servizi quali messenger, ma con il passare del tempo divenni sempre piu<span style="font-family:inherit;">`</span> consapevole dei servizi che internet offriva, iniziai a informarmi su argomenti di attualita&#8217; o che mi interessavano, giocare a giochi online o anche in rete locale con amici, fare acquisti su vari siti di e-commerce e intrattenermi sulle varie piattaforme che si possono trovare che si sono sostituite alla televisione. Posso dire dal mio punto di vista che internet e<span style="font-family:inherit;">`</span> senz&#8217;altro un vastissimo luogo che offre molte occasioni sia di crescita culturale, vista la quantita&#8217; di informazioni che vi si possono trovare, sia personale, poiche<span style="font-family:inherit;">`</span> e<span style="font-family:inherit;">`</span> anche un luogo di incontro tra persone che si confrontano tra loro, anche se a volte possono trovarsi contenuti espliciti. Vista l&#8217;importanza di internet e<span style="font-family:inherit;">`</span> bene maturare una coscienza diditale quanto piu<span style="font-family:inherit;">`</span> consapevole per far in modo che le nostre azioni sulla rete siano eticamente corrette e quindi evitare di scaricare file piratati, o evitare azioni di cyberbullismo contro altre persone e tutti quei comportamenti che possono danneggiare gli altri. </span><br /><span style="font-family:inherit;"><br /><b>Gabriele:</b> Crescendo ovviamente il mio rapporto con Internet <span style="font-family:inherit;">e`</span> cambiato, mentre prima quando ero piccolo lo usavo per giocare, col passare del tempo ho scoperto che Internet <span style="font-family:inherit;">e`</span> molto di pi<span style="font-family:inherit;">u`</span>, mette in contatto le persone, è un mezzo per la diffusione di informazioni, musica e molto altro. Oggi lo uso principalmente per <span style="font-family:inherit;">i</span> social, ascoltare musica, comprare articoli e anche quando posso restare informato. Durante questi anni <span style="font-family:inherit;">e`</span> cambiata anche la mia considerazione su Internet, infatti pensavo erroneamente che fosse un posto innocuo, ma mi dovetti ricredere perch<span style="font-family:inherit;">e`</span> non è un luogo adatto a tutti a causa dei contenuti espliciti che contiene. Per quanto riguarda la coscienza digitale questa è una caratteristica che si può sviluppare una volta che si è a conoscenza di averla, perché ogni cosa che facciamo su Internet ha un peso, grande o piccolo che sia, e dobbiamo esserne a conoscenza per limitare eventuali danni o per trarne beneficio, infatti personalmente ogni volta che faccio qualcosa su Internet mi chiedo sempre quali potrebbero essere le conseguenze della mia azione, cosa che dovrebbe fare chiunque. </span>
|
||||
</p>
|
||||
|
||||
<div style="text-align:right;">
|
||||
<span style="font-family:inherit;">Fran<span style="font-family:inherit;">cesco <span style="font-family:inherit;">Mecca</span>, Eugenio Corso, Gabriele</span> <span style="font-family:inherit;">Cor<span style="font-family:inherit;">so</span></span></span>
|
||||
</div>
|
||||
</code></pre></div>
|
||||
</div>
|
||||
|
||||
<div class="post">
|
||||
<h1 class="post-title">
|
||||
<a href="/index.php/archives/46">
|
||||
|
@ -351,127 +511,6 @@ L’attacco avviene attraverso l’uso di codice Javascript e analizza l
|
|||
|
||||
</div>
|
||||
|
||||
<div class="post">
|
||||
<h1 class="post-title">
|
||||
<a href="/index.php/archives/57">
|
||||
Suicide Linux
|
||||
</a>
|
||||
</h1>
|
||||
|
||||
<span class="post-date">19 Apr 2015</span>
|
||||
|
||||
<div class="MsoNormal" style="text-align:center;">
|
||||
</div>
|
||||
|
||||
<div class="MsoNormal" style="text-align:center;">
|
||||
Tradotto da:<a href="http://qntm.org/suicide">http://qntm.org/suicide</a>
|
||||
</div>
|
||||
|
||||
<div class="MsoNormal" style="text-align:justify;">
|
||||
</div>
|
||||
|
||||
<div class="MsoNormal">
|
||||
</div>
|
||||
|
||||
<div class="MsoNormal" style="text-align:justify;">
|
||||
Sai come qualche volta se sbagli a digitare il nome di un file nella bash, questa corregge il tuo spelling e fa comunque partire il comando? Come quando si cambia directory, o si apre un file.
|
||||
</div>
|
||||
|
||||
<div class="MsoNormal" style="text-align:justify;">
|
||||
</div>
|
||||
|
||||
<div class="MsoNormal" style="text-align:justify;">
|
||||
Io ho inventato Suicide Linux. Ogni volta –<i>ogni</i> volta- scrivi qualsiasi comando remoto non corretto, l’interprete lo risolve creativamente in un<span style="color:red;"> rm –rf</span> / e pulisce il tuo hard drive.
|
||||
</div>
|
||||
|
||||
<div class="MsoNormal" style="text-align:justify;">
|
||||
</div>
|
||||
|
||||
<div class="MsoNormal" style="text-align:justify;">
|
||||
È un gioco. Come camminare sul filo di un rasoio. Devi vedere quanto a lungo puoi continuare a usare il sistema operativo prima di perdere tutti i tuoi dati.</p>
|
||||
|
||||
<table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left:auto;margin-right:auto;text-align:center;">
|
||||
<tr>
|
||||
<td style="text-align:center;">
|
||||
<a href="http://francescomecca.eu/wp-content/uploads/2015/08/06c29-suicide2blinux.png" style="margin-left:auto;margin-right:auto;"><img border="0" height="300" src="http://francescomecca.eu/wp-content/uploads/2015/08/06c29-suicide2blinux.png?w=300" width="400" /></a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="tr-caption" style="text-align:center;">
|
||||
<a href="https://d.maxfile.ro/pswtpazxfd.png">fonte</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<div style="text-align:center;">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="MsoNormal" style="text-align:justify;">
|
||||
</div>
|
||||
|
||||
<div class="MsoNormal" style="text-align:justify;">
|
||||
<b>Aggiornamento 2011-12-26</b>
|
||||
</div>
|
||||
|
||||
<div class="MsoNormal" style="text-align:justify;">
|
||||
</div>
|
||||
|
||||
<div class="MsoNormal" style="text-align:justify;">
|
||||
Suicide Linux ora sembra essere un pacchetto di Debian. Spettacolare!
|
||||
</div>
|
||||
|
||||
<div class="MsoNormal" style="text-align:justify;">
|
||||
</div>
|
||||
|
||||
<div class="MsoNormal" style="text-align:justify;">
|
||||
Una video dimostrazione è disponibile. La reazione del sistema operativo è attualmente piuttosto deludente. Penseresti che il sistema operativo faccia spuntare alcuni errori piuttosto urgenti se vai in giro a cancellare parti di esso?
|
||||
</div>
|
||||
|
||||
<div class="MsoNormal" style="text-align:justify;">
|
||||
</div>
|
||||
|
||||
<div class="MsoNormal" style="text-align:justify;">
|
||||
Forse <span style="color:red;">rm –rf / </span>dovrebbe essere rimpiazzato con qualcosa che abbia impostato più flags dettagliati. In questo modo, quando esegui un comando sbagliato, ti viene detto immediatamente che le cose stanno per essere cancellate e tu hai una possibilità di combattere per annullare l’operazione prima che il tuo sistema diventi inoperabile. Questo ti permette di vedere quanto a lungo puoi lavorare e quanti documenti puoi perdere prima che il sistema fallisca interamente.
|
||||
</div>
|
||||
|
||||
<div class="MsoNormal" style="text-align:justify;">
|
||||
</div>
|
||||
|
||||
<div class="MsoNormal" style="text-align:justify;">
|
||||
Un altro, un suggerimento un po’ più serio, se Suicide Linux cancella in maniera casuale un singolo file senza dirtelo ogni volta che fai un errore tipografico, può essere uno sguardo interessante nella stabilità del tuo sistema operativo e uno strumento educativo per la diagnosi e la riparazione dei sistemi corrotti. Non sto pretendendo che Suicide Linux abbia qualche merito genuino, certamente.
|
||||
</div>
|
||||
|
||||
<div class="MsoNormal" style="text-align:justify;">
|
||||
</div>
|
||||
|
||||
<div class="MsoNormal" style="text-align:justify;">
|
||||
<b>Aggiornamento 2015-04-18</b>
|
||||
</div>
|
||||
|
||||
<div class="MsoNormal" style="text-align:justify;">
|
||||
</div>
|
||||
|
||||
<div class="MsoNormal" style="text-align:justify;">
|
||||
La funzionalità correzione automatica che io ho originariamente descritto qui fu una caratteristica del primo sistema Linux che io abbia mai usato, così ho assunto che fosse come ogni sistema Linux lavorato di default. Da quando sono venuto a conoscenza che è un doodad extra completamente opzionale.
|
||||
</div>
|
||||
|
||||
<div class="MsoNormal" style="text-align:justify;">
|
||||
</div>
|
||||
|
||||
<div class="MsoNormal" style="text-align:justify;">
|
||||
</div>
|
||||
|
||||
<div class="MsoNormal" style="text-align:justify;">
|
||||
</div>
|
||||
|
||||
<div style="text-align:right;">
|
||||
<span style="font-family:Calibri, sans-serif;font-size:11pt;">Gabriele Corso </span>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="pagination">
|
||||
|
|
|
@ -100,6 +100,10 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -125,6 +129,127 @@
|
|||
<div class="content container">
|
||||
<div class="posts">
|
||||
|
||||
<div class="post">
|
||||
<h1 class="post-title">
|
||||
<a href="/index.php/archives/57">
|
||||
Suicide Linux
|
||||
</a>
|
||||
</h1>
|
||||
|
||||
<span class="post-date">19 Apr 2015</span>
|
||||
|
||||
<div class="MsoNormal" style="text-align:center;">
|
||||
</div>
|
||||
|
||||
<div class="MsoNormal" style="text-align:center;">
|
||||
Tradotto da:<a href="http://qntm.org/suicide">http://qntm.org/suicide</a>
|
||||
</div>
|
||||
|
||||
<div class="MsoNormal" style="text-align:justify;">
|
||||
</div>
|
||||
|
||||
<div class="MsoNormal">
|
||||
</div>
|
||||
|
||||
<div class="MsoNormal" style="text-align:justify;">
|
||||
Sai come qualche volta se sbagli a digitare il nome di un file nella bash, questa corregge il tuo spelling e fa comunque partire il comando? Come quando si cambia directory, o si apre un file.
|
||||
</div>
|
||||
|
||||
<div class="MsoNormal" style="text-align:justify;">
|
||||
</div>
|
||||
|
||||
<div class="MsoNormal" style="text-align:justify;">
|
||||
Io ho inventato Suicide Linux. Ogni volta –<i>ogni</i> volta- scrivi qualsiasi comando remoto non corretto, l’interprete lo risolve creativamente in un<span style="color:red;"> rm –rf</span> / e pulisce il tuo hard drive.
|
||||
</div>
|
||||
|
||||
<div class="MsoNormal" style="text-align:justify;">
|
||||
</div>
|
||||
|
||||
<div class="MsoNormal" style="text-align:justify;">
|
||||
È un gioco. Come camminare sul filo di un rasoio. Devi vedere quanto a lungo puoi continuare a usare il sistema operativo prima di perdere tutti i tuoi dati.</p>
|
||||
|
||||
<table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left:auto;margin-right:auto;text-align:center;">
|
||||
<tr>
|
||||
<td style="text-align:center;">
|
||||
<a href="http://francescomecca.eu/wp-content/uploads/2015/08/06c29-suicide2blinux.png" style="margin-left:auto;margin-right:auto;"><img border="0" height="300" src="http://francescomecca.eu/wp-content/uploads/2015/08/06c29-suicide2blinux.png?w=300" width="400" /></a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="tr-caption" style="text-align:center;">
|
||||
<a href="https://d.maxfile.ro/pswtpazxfd.png">fonte</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<div style="text-align:center;">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="MsoNormal" style="text-align:justify;">
|
||||
</div>
|
||||
|
||||
<div class="MsoNormal" style="text-align:justify;">
|
||||
<b>Aggiornamento 2011-12-26</b>
|
||||
</div>
|
||||
|
||||
<div class="MsoNormal" style="text-align:justify;">
|
||||
</div>
|
||||
|
||||
<div class="MsoNormal" style="text-align:justify;">
|
||||
Suicide Linux ora sembra essere un pacchetto di Debian. Spettacolare!
|
||||
</div>
|
||||
|
||||
<div class="MsoNormal" style="text-align:justify;">
|
||||
</div>
|
||||
|
||||
<div class="MsoNormal" style="text-align:justify;">
|
||||
Una video dimostrazione è disponibile. La reazione del sistema operativo è attualmente piuttosto deludente. Penseresti che il sistema operativo faccia spuntare alcuni errori piuttosto urgenti se vai in giro a cancellare parti di esso?
|
||||
</div>
|
||||
|
||||
<div class="MsoNormal" style="text-align:justify;">
|
||||
</div>
|
||||
|
||||
<div class="MsoNormal" style="text-align:justify;">
|
||||
Forse <span style="color:red;">rm –rf / </span>dovrebbe essere rimpiazzato con qualcosa che abbia impostato più flags dettagliati. In questo modo, quando esegui un comando sbagliato, ti viene detto immediatamente che le cose stanno per essere cancellate e tu hai una possibilità di combattere per annullare l’operazione prima che il tuo sistema diventi inoperabile. Questo ti permette di vedere quanto a lungo puoi lavorare e quanti documenti puoi perdere prima che il sistema fallisca interamente.
|
||||
</div>
|
||||
|
||||
<div class="MsoNormal" style="text-align:justify;">
|
||||
</div>
|
||||
|
||||
<div class="MsoNormal" style="text-align:justify;">
|
||||
Un altro, un suggerimento un po’ più serio, se Suicide Linux cancella in maniera casuale un singolo file senza dirtelo ogni volta che fai un errore tipografico, può essere uno sguardo interessante nella stabilità del tuo sistema operativo e uno strumento educativo per la diagnosi e la riparazione dei sistemi corrotti. Non sto pretendendo che Suicide Linux abbia qualche merito genuino, certamente.
|
||||
</div>
|
||||
|
||||
<div class="MsoNormal" style="text-align:justify;">
|
||||
</div>
|
||||
|
||||
<div class="MsoNormal" style="text-align:justify;">
|
||||
<b>Aggiornamento 2015-04-18</b>
|
||||
</div>
|
||||
|
||||
<div class="MsoNormal" style="text-align:justify;">
|
||||
</div>
|
||||
|
||||
<div class="MsoNormal" style="text-align:justify;">
|
||||
La funzionalità correzione automatica che io ho originariamente descritto qui fu una caratteristica del primo sistema Linux che io abbia mai usato, così ho assunto che fosse come ogni sistema Linux lavorato di default. Da quando sono venuto a conoscenza che è un doodad extra completamente opzionale.
|
||||
</div>
|
||||
|
||||
<div class="MsoNormal" style="text-align:justify;">
|
||||
</div>
|
||||
|
||||
<div class="MsoNormal" style="text-align:justify;">
|
||||
</div>
|
||||
|
||||
<div class="MsoNormal" style="text-align:justify;">
|
||||
</div>
|
||||
|
||||
<div style="text-align:right;">
|
||||
<span style="font-family:Calibri, sans-serif;font-size:11pt;">Gabriele Corso </span>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="post">
|
||||
<h1 class="post-title">
|
||||
<a href="/index.php/archives/60">
|
||||
|
@ -431,39 +556,6 @@ In questo modo ed attraverso i cookie Facebook riesce a riunire la maggior parte
|
|||
</code></pre></div>
|
||||
</div>
|
||||
|
||||
<div class="post">
|
||||
<h1 class="post-title">
|
||||
<a href="/index.php/archives/73">
|
||||
L’anonimato violato di TOR
|
||||
</a>
|
||||
</h1>
|
||||
|
||||
<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 “Tor”. Questo è un software che rende chi lo utilizza invisibile, poichè nasconde l’indirizzo IP del computer tramite la crittografia a strati, da qui il nome scelto che sta per “The Onion Router”. Infatti grazie a Tor l’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;">
|
||||
<a href="http://francescomecca.eu/wp-content/uploads/2015/08/a2cc6-tor_newsbitcoin.jpg" style="margin-left:1em;margin-right:1em;"><img border="0" height="196" src="http://francescomecca.eu/wp-content/uploads/2015/08/a2cc6-tor_newsbitcoin.jpg" width="320" /></a>
|
||||
</div>
|
||||
|
||||
<div class="separator" style="clear:both;text-align:center;">
|
||||
foto presa da <a href="http://www.newsbitcoin.it/190/tor-installazione-e-configurazione/" target="_blank">newsbitcoin.it</a>
|
||||
</div>
|
||||
|
||||
<p>Tuttavia, dal 30 Gennaio al 4 Luglio 2014, Tor è stato colpito da attacchi da parte dell’FBI che miravano a togliere l’anonimato. Il bersaglio dell’attacco non sono state solo le persone che hanno utilizzato il software per la navigazione anonima, ma anche chi creava e gestiva siti web e servizi online in maniera anonima. Le persone a rischio infatti erano quelle che visitavano i siti che erano stati precedentemente compromessi, ovvero quei siti che incorporavano nel loro codice il payload.<br>
|
||||
Il payload è un tipo di shellcode, ovvero un piccolo pezzo di codice, che sfrutta una vulnerabilità del software per lanciare un command shell dal pc infetto ed eseguire determinate funzioni. Questo payload, chiamato magneto, si avviava in un pezzo non mappato di memoria e mandava comandi ARP all’host e in seguito si connetteva tramite una semplice richiesta HTTP a un indirizzo localizzato in Virginia USA. Questa richiesta avveniva al di fuori di TOR, in maniera tale da esporre, oltre l’indirizzo MAC, l’IP del computer.</p>
|
||||
|
||||
<p>Sullo smascheramento delle identità di persone che fanno uso di software come TOR però si sono create due correnti di pensiero diverse. Una da più peso all’aspetto negativo che deriva dal fatto di concedere l’anonimato e si schiera a favore di questi metodi per rivelare l’identità di chi naviga su tali software, come per esempio la Russia che è arrivata a offrire 3,9 milioni di rubli a chiunque trovasse un modo per togliere l’anonimato agli utenti del sistema. L’altra corrente di pensiero, della quale fa parte anche il movimento “Anonymous”, crede sia necessario avere un modo per restare invisibili sulla rete poichè questi sistemi sono usati anche da attivisti politici che si trovano in paesi in cui vige una forte censura e quindi l’anonimato gli permette di non essere rintracciati dai loro governi.</p>
|
||||
|
||||
<p>fonti[<a href="http://www.ilsole24ore.com/art/tecnologie/2014-07-31/tor-attacco-hacker-ha-violato-mesi-anonimato-utenti-204102.shtml?uuid=ABCPcFgB">ilsole24ore.com</a> , <a href="http://it.ibtimes.com/lanonimato-sul-web-violato-6-mesi-la-rete-tor-colpita-dagli-hacker-1353982">ibtimes.com</a>]</p>
|
||||
|
||||
<p> Eugenio Corso </p>
|
||||
|
||||
<div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="pagination">
|
||||
|
|
|
@ -100,6 +100,10 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -125,6 +129,39 @@
|
|||
<div class="content container">
|
||||
<div class="posts">
|
||||
|
||||
<div class="post">
|
||||
<h1 class="post-title">
|
||||
<a href="/index.php/archives/73">
|
||||
L’anonimato violato di TOR
|
||||
</a>
|
||||
</h1>
|
||||
|
||||
<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 “Tor”. Questo è un software che rende chi lo utilizza invisibile, poichè nasconde l’indirizzo IP del computer tramite la crittografia a strati, da qui il nome scelto che sta per “The Onion Router”. Infatti grazie a Tor l’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;">
|
||||
<a href="http://francescomecca.eu/wp-content/uploads/2015/08/a2cc6-tor_newsbitcoin.jpg" style="margin-left:1em;margin-right:1em;"><img border="0" height="196" src="http://francescomecca.eu/wp-content/uploads/2015/08/a2cc6-tor_newsbitcoin.jpg" width="320" /></a>
|
||||
</div>
|
||||
|
||||
<div class="separator" style="clear:both;text-align:center;">
|
||||
foto presa da <a href="http://www.newsbitcoin.it/190/tor-installazione-e-configurazione/" target="_blank">newsbitcoin.it</a>
|
||||
</div>
|
||||
|
||||
<p>Tuttavia, dal 30 Gennaio al 4 Luglio 2014, Tor è stato colpito da attacchi da parte dell’FBI che miravano a togliere l’anonimato. Il bersaglio dell’attacco non sono state solo le persone che hanno utilizzato il software per la navigazione anonima, ma anche chi creava e gestiva siti web e servizi online in maniera anonima. Le persone a rischio infatti erano quelle che visitavano i siti che erano stati precedentemente compromessi, ovvero quei siti che incorporavano nel loro codice il payload.<br>
|
||||
Il payload è un tipo di shellcode, ovvero un piccolo pezzo di codice, che sfrutta una vulnerabilità del software per lanciare un command shell dal pc infetto ed eseguire determinate funzioni. Questo payload, chiamato magneto, si avviava in un pezzo non mappato di memoria e mandava comandi ARP all’host e in seguito si connetteva tramite una semplice richiesta HTTP a un indirizzo localizzato in Virginia USA. Questa richiesta avveniva al di fuori di TOR, in maniera tale da esporre, oltre l’indirizzo MAC, l’IP del computer.</p>
|
||||
|
||||
<p>Sullo smascheramento delle identità di persone che fanno uso di software come TOR però si sono create due correnti di pensiero diverse. Una da più peso all’aspetto negativo che deriva dal fatto di concedere l’anonimato e si schiera a favore di questi metodi per rivelare l’identità di chi naviga su tali software, come per esempio la Russia che è arrivata a offrire 3,9 milioni di rubli a chiunque trovasse un modo per togliere l’anonimato agli utenti del sistema. L’altra corrente di pensiero, della quale fa parte anche il movimento “Anonymous”, crede sia necessario avere un modo per restare invisibili sulla rete poichè questi sistemi sono usati anche da attivisti politici che si trovano in paesi in cui vige una forte censura e quindi l’anonimato gli permette di non essere rintracciati dai loro governi.</p>
|
||||
|
||||
<p>fonti[<a href="http://www.ilsole24ore.com/art/tecnologie/2014-07-31/tor-attacco-hacker-ha-violato-mesi-anonimato-utenti-204102.shtml?uuid=ABCPcFgB">ilsole24ore.com</a> , <a href="http://it.ibtimes.com/lanonimato-sul-web-violato-6-mesi-la-rete-tor-colpita-dagli-hacker-1353982">ibtimes.com</a>]</p>
|
||||
|
||||
<p> Eugenio Corso </p>
|
||||
|
||||
<div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="post">
|
||||
<h1 class="post-title">
|
||||
<a href="/index.php/archives/78">
|
||||
|
@ -379,33 +416,11 @@ I dati sono la risposta economica a: “Iscriviti, e’ gratis e lo sarà se
|
|||
|
||||
</div>
|
||||
|
||||
<div class="post">
|
||||
<h1 class="post-title">
|
||||
<a href="/index.php/archives/90">
|
||||
Chiave PGP
|
||||
</a>
|
||||
</h1>
|
||||
|
||||
<span class="post-date">31 Mar 2015</span>
|
||||
|
||||
<p>Questa e` la nostra chiave PGP con la quale possiamo essere contattati all’indirizzo<br>
|
||||
<strong>pescewanda3 [at] gmail.com</strong></p>
|
||||
|
||||
<div class="code">
|
||||
—–BEGIN PGP PUBLIC KEY BLOCK—–<br />Version: GnuPG v2</p>
|
||||
|
||||
<p>
|
||||
mQENBFUa5j4BCAC8clTqI75PkKJ+YewmyXqjBtlsqXCWlunS4CkQTaaI3I5c13yz<br />+Nc+gibHrxhQZcOULYhjlhe9PNv/8Bnj4i2qBMjJNORAlJycjgyzCTy3OY+Hkt6Q<br />c/6uXp5ObnLblKwnPSgaij9GuH4PD1fe+fN0LORMqNJ8PNdk1a5qNJ7fuH8/nIus<br />F2+Rv6qej0OcLIUUebeiMLu+Nc52tDX76kjdvq9cG7AyAXpo478Xr4EnhPDB0sXc<br />TAGJ3I93caVXa9lqP+njI9mPDTyrl+lobLgQhdIOsW50JZmbG/EHMHFKahcaEssM<br />50lz+PtqZ0VblIDTe9xjukdcPaKhPaGuW2OxABEBAAG0KWNhdWdodF9pbl90aGVf<br />bmV0IDxwZXNjZXdhbmRhM0BnbWFpbC5jb20+iQE5BBMBCAAjBQJVGuY+AhsDBwsJ<br />CAcDAgEGFQgCCQoLBBYCAwECHgECF4AACgkQ12NuZ5rBCRLsOgf9EhR2I0M30jzP<br />rDYU5jFwyaFzWheiKO9yAiHHj2+iJXYsPcyNEIa0E+IqqMWu9e7AksscRe/rkq7U<br />wOANtiYMVTfdqnPE13c4KqKTXjikua/j4lE3fDU4IF5+sRgK62H+Ee64flP1ReO8<br />Zo4z2mwcYxqag+uSNBE0pnuICSd9NCCOiKjS0HRaG0CbpyDQ+fuqjulfn9zpU1a2<br />6y/Lg1uixIDZZICmVKfZkl5ZqkS/1Sdx4AK6rnnFH0gZ1k2J6LsE4cqvazIroRgr<br />opnuSQsfwMNiu6oaBe/+kzlhSZy/vb/vw0HT5oZHtY2so/dZe42v40weyxroZgaY<br />SR2wE5wsM7kBDQRVGuY+AQgArq1F9dl61MOSQi/SYTgmPYjptcgm0L5QBmsOeN1v<br />9YWPFn/AR8GOiGRF1//TI+ECjfL8uAdzbK1xJURXcBTrO0BdgRBlaZgSRiq+KFGT<br />pmyjj+q1toVLPwIZmsxHL6j7doSnt9Z4oesKIJ2hrdEGZ3hpFBekxMR2lmHk3zQB<br />e/qsSUwS/rIk/BBWtdifdEzcK7AJb0nRAJzQu6kyEdOGOuEprtSkG8789SkKGFxz<br />HuEIyRxoLz/KQJ7FGINQwNYXM6+5pjNt7vu5knFGF71TjVN0UjFck/mxWObxwxO3<br />EoZtW6tNgkxdOoFBIo8hhSxsVqIHoyztf58Ppo/IOgSCyQARAQABiQEfBBgBCAAJ<br />BQJVGuY+AhsMAAoJENdjbmeawQkSx/EIAK26MGlFMzviE9mWRF09vljESVbfRcnE<br />ybMZNlq/w6AdU1R6g2nbooKX1KuB8uBTZYegLJByj+ssiZagrW7rASLLVADzfP3D<br />m2TFCqE/LeOJzgMtaUfEAgvee4jNVHFvAJ2k5fejk9aQ+r3EskqACqfnY4y5SE30<br />tFsS+Wwz1C+NHFv0EnVyJaDUGKq7ZX7BQHGlxW0AFz17l4hMQztgx6Il36yC5EQr<br />BQULGVPCHpadUGpzPWIqKhIg33P3FlCqzSVBGB9aXqfBQYAUjP2MrieWcaLdJbRM<br />MBR29ROibDEd8qOPvcHrRg3cb2OPw9/Ia19VqEE9/tjn094CCuVkDPU=<br />=/XCq<br />—–END PGP PUBLIC KEY BLOCK—–
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="pagination">
|
||||
|
||||
<span class="pagination-item older">Older</span>
|
||||
<a class="pagination-item older" href="/page9">Older</a>
|
||||
|
||||
|
||||
|
||||
|
|
169
_site/page9/index.html
Normal file
169
_site/page9/index.html
Normal file
|
@ -0,0 +1,169 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
|
||||
<head>
|
||||
<link href="http://gmpg.org/xfn/11" rel="profile">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
|
||||
<!-- Enable responsiveness on mobile devices-->
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
|
||||
|
||||
<title>
|
||||
|
||||
Caught in the Net · La rete ti cattura ma libera il pensiero
|
||||
|
||||
</title>
|
||||
|
||||
<!-- CSS -->
|
||||
<link rel="stylesheet" href="/public/css/poole.css">
|
||||
<link rel="stylesheet" href="/public/css/syntax.css">
|
||||
<link rel="stylesheet" href="/public/css/hyde.css">
|
||||
|
||||
<!-- Icons -->
|
||||
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="/public/apple-touch-icon-144-precomposed.png">
|
||||
<link rel="shortcut icon" href="/public/favicon.ico">
|
||||
|
||||
<!-- RSS -->
|
||||
<link rel="alternate" type="application/rss+xml" title="RSS" href="/atom.xml">
|
||||
</head>
|
||||
|
||||
|
||||
<body class="theme-base-09">
|
||||
|
||||
<div class="sidebar">
|
||||
<div class="container sidebar-sticky">
|
||||
<div class="sidebar-about">
|
||||
<h1>
|
||||
<a href="/">
|
||||
Caught in the Net
|
||||
</a>
|
||||
</h1>
|
||||
<p class="lead"></p>
|
||||
</div>
|
||||
|
||||
<nav class="sidebar-nav">
|
||||
<a class="sidebar-nav-item" href="/">Home</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a class="sidebar-nav-item" href="/about/">About</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a class="sidebar-nav-item" href="/archive/">Archive</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a class="sidebar-nav-item" href="/contattami/">Contattami</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
|
||||
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
|
||||
<a cleass="sidebar-nav-item" href="https://github.com/s211897-studentipolito">github</a>
|
||||
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
|
||||
</nav>
|
||||
|
||||
<p>© 2016. CC BY-SA 4.0 International </p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 class="masthead-title">
|
||||
<a href="/" title="Home">Caught in the Net</a>
|
||||
|
||||
|
||||
</h3>
|
||||
|
||||
<div class="content container">
|
||||
<div class="posts">
|
||||
|
||||
<div class="post">
|
||||
<h1 class="post-title">
|
||||
<a href="/index.php/archives/90">
|
||||
Chiave PGP
|
||||
</a>
|
||||
</h1>
|
||||
|
||||
<span class="post-date">31 Mar 2015</span>
|
||||
|
||||
<p>Questa e` la nostra chiave PGP con la quale possiamo essere contattati all’indirizzo<br>
|
||||
<strong>pescewanda3 [at] gmail.com</strong></p>
|
||||
|
||||
<div class="code">
|
||||
—–BEGIN PGP PUBLIC KEY BLOCK—–<br />Version: GnuPG v2</p>
|
||||
|
||||
<p>
|
||||
mQENBFUa5j4BCAC8clTqI75PkKJ+YewmyXqjBtlsqXCWlunS4CkQTaaI3I5c13yz<br />+Nc+gibHrxhQZcOULYhjlhe9PNv/8Bnj4i2qBMjJNORAlJycjgyzCTy3OY+Hkt6Q<br />c/6uXp5ObnLblKwnPSgaij9GuH4PD1fe+fN0LORMqNJ8PNdk1a5qNJ7fuH8/nIus<br />F2+Rv6qej0OcLIUUebeiMLu+Nc52tDX76kjdvq9cG7AyAXpo478Xr4EnhPDB0sXc<br />TAGJ3I93caVXa9lqP+njI9mPDTyrl+lobLgQhdIOsW50JZmbG/EHMHFKahcaEssM<br />50lz+PtqZ0VblIDTe9xjukdcPaKhPaGuW2OxABEBAAG0KWNhdWdodF9pbl90aGVf<br />bmV0IDxwZXNjZXdhbmRhM0BnbWFpbC5jb20+iQE5BBMBCAAjBQJVGuY+AhsDBwsJ<br />CAcDAgEGFQgCCQoLBBYCAwECHgECF4AACgkQ12NuZ5rBCRLsOgf9EhR2I0M30jzP<br />rDYU5jFwyaFzWheiKO9yAiHHj2+iJXYsPcyNEIa0E+IqqMWu9e7AksscRe/rkq7U<br />wOANtiYMVTfdqnPE13c4KqKTXjikua/j4lE3fDU4IF5+sRgK62H+Ee64flP1ReO8<br />Zo4z2mwcYxqag+uSNBE0pnuICSd9NCCOiKjS0HRaG0CbpyDQ+fuqjulfn9zpU1a2<br />6y/Lg1uixIDZZICmVKfZkl5ZqkS/1Sdx4AK6rnnFH0gZ1k2J6LsE4cqvazIroRgr<br />opnuSQsfwMNiu6oaBe/+kzlhSZy/vb/vw0HT5oZHtY2so/dZe42v40weyxroZgaY<br />SR2wE5wsM7kBDQRVGuY+AQgArq1F9dl61MOSQi/SYTgmPYjptcgm0L5QBmsOeN1v<br />9YWPFn/AR8GOiGRF1//TI+ECjfL8uAdzbK1xJURXcBTrO0BdgRBlaZgSRiq+KFGT<br />pmyjj+q1toVLPwIZmsxHL6j7doSnt9Z4oesKIJ2hrdEGZ3hpFBekxMR2lmHk3zQB<br />e/qsSUwS/rIk/BBWtdifdEzcK7AJb0nRAJzQu6kyEdOGOuEprtSkG8789SkKGFxz<br />HuEIyRxoLz/KQJ7FGINQwNYXM6+5pjNt7vu5knFGF71TjVN0UjFck/mxWObxwxO3<br />EoZtW6tNgkxdOoFBIo8hhSxsVqIHoyztf58Ppo/IOgSCyQARAQABiQEfBBgBCAAJ<br />BQJVGuY+AhsMAAoJENdjbmeawQkSx/EIAK26MGlFMzviE9mWRF09vljESVbfRcnE<br />ybMZNlq/w6AdU1R6g2nbooKX1KuB8uBTZYegLJByj+ssiZagrW7rASLLVADzfP3D<br />m2TFCqE/LeOJzgMtaUfEAgvee4jNVHFvAJ2k5fejk9aQ+r3EskqACqfnY4y5SE30<br />tFsS+Wwz1C+NHFv0EnVyJaDUGKq7ZX7BQHGlxW0AFz17l4hMQztgx6Il36yC5EQr<br />BQULGVPCHpadUGpzPWIqKhIg33P3FlCqzSVBGB9aXqfBQYAUjP2MrieWcaLdJbRM<br />MBR29ROibDEd8qOPvcHrRg3cb2OPw9/Ia19VqEE9/tjn094CCuVkDPU=<br />=/XCq<br />—–END PGP PUBLIC KEY BLOCK—–
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="pagination">
|
||||
|
||||
<span class="pagination-item older">Older</span>
|
||||
|
||||
|
||||
|
||||
<a class="pagination-item newer" href="/page8">Newer</a>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -100,6 +100,10 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -176,6 +180,15 @@ Finally I put a link to the archive, my github page and the atom feed on the sid
|
|||
<h2>Related Posts</h2>
|
||||
<ul class="related-posts">
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/05/03/satoshisignature/">
|
||||
Why Wright's proof is a fake
|
||||
<small>03 May 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/17/wright-nakamoto/">
|
||||
|
@ -194,15 +207,6 @@ Finally I put a link to the archive, my github page and the atom feed on the sid
|
|||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/10/short-lesson-from-reddit/">
|
||||
Bright Father
|
||||
<small>10 Apr 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -100,6 +100,10 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -160,6 +164,15 @@ The bot can be added to your contact list by simply searching for <a href="http:
|
|||
<h2>Related Posts</h2>
|
||||
<ul class="related-posts">
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/05/03/satoshisignature/">
|
||||
Why Wright's proof is a fake
|
||||
<small>03 May 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/17/wright-nakamoto/">
|
||||
|
@ -178,15 +191,6 @@ The bot can be added to your contact list by simply searching for <a href="http:
|
|||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/10/short-lesson-from-reddit/">
|
||||
Bright Father
|
||||
<small>10 Apr 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -100,6 +100,10 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -144,6 +148,15 @@ instantaneously.</p></li>
|
|||
<h2>Related Posts</h2>
|
||||
<ul class="related-posts">
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/05/03/satoshisignature/">
|
||||
Why Wright's proof is a fake
|
||||
<small>03 May 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/17/wright-nakamoto/">
|
||||
|
@ -162,15 +175,6 @@ instantaneously.</p></li>
|
|||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/10/short-lesson-from-reddit/">
|
||||
Bright Father
|
||||
<small>10 Apr 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -100,6 +100,10 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -138,6 +142,15 @@
|
|||
<h2>Related Posts</h2>
|
||||
<ul class="related-posts">
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/05/03/satoshisignature/">
|
||||
Why Wright's proof is a fake
|
||||
<small>03 May 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/17/wright-nakamoto/">
|
||||
|
@ -156,15 +169,6 @@
|
|||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/10/lifehacks/">
|
||||
Lifehacks
|
||||
<small>10 Apr 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -100,6 +100,10 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -183,6 +187,15 @@ The source for our program is stored in my git <a href="http://francescomecca.eu
|
|||
<h2>Related Posts</h2>
|
||||
<ul class="related-posts">
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/05/03/satoshisignature/">
|
||||
Why Wright's proof is a fake
|
||||
<small>03 May 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/17/wright-nakamoto/">
|
||||
|
@ -201,15 +214,6 @@ The source for our program is stored in my git <a href="http://francescomecca.eu
|
|||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/10/lifehacks/">
|
||||
Lifehacks
|
||||
<small>10 Apr 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -100,6 +100,10 @@
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -209,12 +213,31 @@ Non abbiamo bisogno di colloqui privati, laptop nuovi di fabbrica e screenshot d
|
|||
Chiunque dichiari di essere Satoshi deve poter firmare un messaggio utilizzando una di quelle chiavi. Questo è quello che il creatore dei Litecoin mostra in 4 righe.
|
||||
Ogni altra prova è discutibile e non necessaria.</p>
|
||||
|
||||
<h2>EDIT 22:12</h2>
|
||||
|
||||
<p>Su Twitter il profilo ufficiale di Electrum <a href="https://mobile.twitter.com/ElectrumWallet/status/727366861592076288">scrive</a>:</p>
|
||||
|
||||
<blockquote>
|
||||
<p>Note: There was no download of a signature file of electrum (.asc file) from a UK IP on Apr 7th.</p>
|
||||
</blockquote>
|
||||
|
||||
<p>Questo significa che il 7 Aprile, quando Wright ha mostrato a Gavin le sue chiavi utilizzando Electrum, nessuna delle due parti si è preoccupata di verificare che il client fosse autentico. Questo invalida ulteriormente tutte le affermazioni di Gavin.</p>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="related">
|
||||
<h2>Related Posts</h2>
|
||||
<ul class="related-posts">
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/05/03/satoshisignature/">
|
||||
Why Wright's proof is a fake
|
||||
<small>03 May 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/17/kpd-player/">
|
||||
|
@ -233,15 +256,6 @@ Ogni altra prova è discutibile e non necessaria.</p>
|
|||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/10/lifehacks/">
|
||||
Lifehacks
|
||||
<small>10 Apr 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
246
_site/pescewanda/2016/05/03/satoshisignature/index.html
Normal file
246
_site/pescewanda/2016/05/03/satoshisignature/index.html
Normal file
|
@ -0,0 +1,246 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
|
||||
<head>
|
||||
<link href="http://gmpg.org/xfn/11" rel="profile">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
|
||||
<!-- Enable responsiveness on mobile devices-->
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
|
||||
|
||||
<title>
|
||||
|
||||
Why Wright's proof is a fake · Caught in the Net
|
||||
|
||||
</title>
|
||||
|
||||
<!-- CSS -->
|
||||
<link rel="stylesheet" href="/public/css/poole.css">
|
||||
<link rel="stylesheet" href="/public/css/syntax.css">
|
||||
<link rel="stylesheet" href="/public/css/hyde.css">
|
||||
|
||||
<!-- Icons -->
|
||||
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="/public/apple-touch-icon-144-precomposed.png">
|
||||
<link rel="shortcut icon" href="/public/favicon.ico">
|
||||
|
||||
<!-- RSS -->
|
||||
<link rel="alternate" type="application/rss+xml" title="RSS" href="/atom.xml">
|
||||
</head>
|
||||
|
||||
|
||||
<body class="theme-base-09">
|
||||
|
||||
<div class="sidebar">
|
||||
<div class="container sidebar-sticky">
|
||||
<div class="sidebar-about">
|
||||
<h1>
|
||||
<a href="/">
|
||||
Caught in the Net
|
||||
</a>
|
||||
</h1>
|
||||
<p class="lead"></p>
|
||||
</div>
|
||||
|
||||
<nav class="sidebar-nav">
|
||||
<a class="sidebar-nav-item" href="/">Home</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a class="sidebar-nav-item" href="/about/">About</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a class="sidebar-nav-item" href="/archive/">Archive</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a class="sidebar-nav-item" href="/contattami/">Contattami</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a class="sidebar-nav-item" href="/atom.xml">RSS</a>
|
||||
<a class="sidebar-nav-item" href="http://francescomecca.eu:3000">Personal Git</a>
|
||||
<a cleass="sidebar-nav-item" href="https://github.com/s211897-studentipolito">github</a>
|
||||
<span class="sidebar-nav-item" href="" >Powered by Jekyll and Hyde</span>
|
||||
</nav>
|
||||
|
||||
<p>© 2016. CC BY-SA 4.0 International </p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h3 class="masthead-title">
|
||||
<a href="/" title="Home">Caught in the Net</a>
|
||||
|
||||
|
||||
</h3>
|
||||
|
||||
<div class="content container">
|
||||
<div class="post">
|
||||
<h1 class="post-title">Why Wright's proof is a fake</h1>
|
||||
<span class="post-date">03 May 2016</span>
|
||||
<p>I explained in my previous <a href="http://francescomecca.eu/pescewanda/2016/04/17/wright-nakamoto/">post</a> (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.
|
||||
The key in Wright's <a href="http://www.drcraigwright.net/jean-paul-sartre-signing-significance/">post</a> is this:</p>
|
||||
<div class="highlight"><pre><code class="language-" data-lang="">------------------------- Signature File -------------------------
|
||||
MEUCIQDBKn1Uly8m0UyzETObUSL4wYdBfd4ejvtoQfVcNCIK4AIgZmMsXNQWHvo6KDd2Tu6euEl1
|
||||
3VTC3ihl6XUlhcU+fM4=
|
||||
------------------------- End Signature --------------------------
|
||||
</code></pre></div>
|
||||
<p>Now we can use some bash utilities:</p>
|
||||
|
||||
<ul>
|
||||
<li>base64, that translates encoded ASCII text;</li>
|
||||
<li>hexdump, that displays hexadecimal contents from the input;</li>
|
||||
<li>cut, used to remove the binary part of the input;</li>
|
||||
<li>tr, used to delete spaces and carriage return from the input;</li>
|
||||
</ul>
|
||||
<div class="highlight"><pre><code class="language-" data-lang="">base64 -d <<<'MEUCIQDBKn1Uly8m0UyzETObUSL4wYdBfd4ejvtoQfVcNCIK4AIgZmMsXNQWHvo6KDd2Tu6euEl13VTC3ihl6XUlhcU+fM4=' | hexdump -C| cut -b 11-60| tr -d ' \n'
|
||||
|
||||
3045022100c12a7d54972f26d14cb311339b5122f8c187417dde1e8efb6841f55c34220ae0022066632c5cd4161efa3a2837764eee9eb84975dd54c2de2865e9752585c53e7cce
|
||||
</code></pre></div>
|
||||
<p>Let's analyze the command one by one:</p>
|
||||
|
||||
<ul>
|
||||
<li><code>base64 -d</code> decodes the redirected string, the output is some gibberish characters so I won't display them here;</li>
|
||||
<li><code>hexdump -C</code> is used with a pipe to convert to hexadecimal:</li>
|
||||
</ul>
|
||||
<div class="highlight"><pre><code class="language-" data-lang="">00000000 30 45 02 21 00 c1 2a 7d 54 97 2f 26 d1 4c b3 11 |0E.!..*}T./&.L..|
|
||||
00000010 33 9b 51 22 f8 c1 87 41 7d de 1e 8e fb 68 41 f5 |3.Q"...A}....hA.|
|
||||
00000020 5c 34 22 0a e0 02 20 66 63 2c 5c d4 16 1e fa 3a |\4"... fc,\....:|
|
||||
00000030 28 37 76 4e ee 9e b8 49 75 dd 54 c2 de 28 65 e9 |(7vN...Iu.T..(e.|
|
||||
00000040 75 25 85 c5 3e 7c ce |u%..>|.|
|
||||
</code></pre></div>
|
||||
<ul>
|
||||
<li>cut -b 11-60 displays only the character from column 11 to 60:</li>
|
||||
</ul>
|
||||
<div class="highlight"><pre><code class="language-" data-lang="">30 45 02 21 00 c1 2a 7d 54 97 2f 26 d1 4c b3 11
|
||||
33 9b 51 22 f8 c1 87 41 7d de 1e 8e fb 68 41 f5
|
||||
5c 34 22 0a e0 02 20 66 63 2c 5c d4 16 1e fa 3a
|
||||
28 37 76 4e ee 9e b8 49 75 dd 54 c2 de 28 65 e9
|
||||
75 25 85 c5 3e 7c ce
|
||||
</code></pre></div>
|
||||
<ul>
|
||||
<li><code>tr -d ' \n'</code> is used to delete spaces and carriage return from the output so that is shown in one line and gives us the final result:</li>
|
||||
</ul>
|
||||
<div class="highlight"><pre><code class="language-" data-lang="">3045022100c12a7d54972f26d14cb311339b5122f8c187417dde1e8efb6841f55c34220ae0022066632c5cd4161efa3a2837764eee9eb84975dd54c2de2865e9752585c53e7cce
|
||||
</code></pre></div>
|
||||
<p>There is also another cleartext string at the beginning of Wright's post:</p>
|
||||
<div class="highlight"><pre><code class="language-" data-lang="">$ base64 -d <<<'IFdyaWdodCwgaXQgaXMgbm90IHRoZSBzYW1lIGFzIGlmIEkgc2lnbiBDcmFpZyBXcmlnaHQsIFNhdG9zaGkuCgo='
|
||||
Wright, it is not the same as if I sign Craig Wright, Satoshi.
|
||||
</code></pre></div>
|
||||
<p>Now let's head to blockchain.info.
|
||||
Blockchain.info has a little <a href="https://blockchain.info/decode-tx">utility</a> to get hexadecimal informations out of a transaction on the blockchain, so let's use it to get the related info about this transaction:</p>
|
||||
|
||||
<p><a href="https://blockchain.info/tx/828ef3b079f9c23829c56fe86e85b4a69d9e06e5b54ea597eef5fb3ffef509fe">tx/828ef3b079f9c23829c56fe86e85b4a69d9e06e5b54ea597eef5fb3ffef509fe</a>
|
||||
<a href="https://blockchain.info/tx/828ef3b079f9c23829c56fe86e85b4a69d9e06e5b54ea597eef5fb3ffef509fe?format=hex">tx/828ef3b079f9... in hexadecimal</a></p>
|
||||
|
||||
<p>As you can see the entire output of the first bash command, that is
|
||||
<code>
|
||||
3045022100c12a7d54972f26d14cb311339b5122f8c187417dde1e8efb6841f55c34220ae0022066632c5cd4161efa3a2837764eee9eb84975dd54c2de2865e9752585c53e7cce
|
||||
</code>
|
||||
is contained in:
|
||||
<code>
|
||||
"script":"483045022100c12a7d54972f26d14cb311339b5122f8c187417dde1e8efb6841f55c34220ae0022066632c5cd4161efa3a2837764eee9eb84975dd54c2de2865e9752585c53e7cce01"
|
||||
</code>
|
||||
except for the 48 at the beginning and the 01 at the end.</p>
|
||||
|
||||
<p>That is a signature hash:
|
||||
this <a href="https://en.bitcoin.it/wiki/List_of_address_prefixes">page</a> explains that the 48 is just a decimal prefix given to uncompressed transactions, and the 01 at the end is just a SIGHASH_ALL <a href="https://bitcoin.org/en/glossary/signature-hash">code</a> that flags the end of the signature.</p>
|
||||
|
||||
<h2>So, is it a fake?</h2>
|
||||
|
||||
<p>Yes, indeed.
|
||||
At the end, I ask, why would you choose anything else than the easiest and most conclusive way to prove something?</p>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="related">
|
||||
<h2>Related Posts</h2>
|
||||
<ul class="related-posts">
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/17/wright-nakamoto/">
|
||||
#JeSuisSatoshiNakamoto
|
||||
<small>17 Apr 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/17/kpd-player/">
|
||||
Kyuss Music Player
|
||||
<small>17 Apr 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h3>
|
||||
<a href="/pescewanda/2016/04/10/short-lesson-from-reddit/">
|
||||
Bright Father
|
||||
<small>10 Apr 2016</small>
|
||||
</a>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in a new issue