[ES/EN] Hive y la privacidad, como la malla gorda/Hive and privacy, like the fat mesh


https://pixabay.com/

[ES]
Todo buen pescador de plataforma sabe qué red de pesca usar en favor de solo atrapar los peces del tamaño correcto y dejar que los alevines (peces jóvenes de menor tamaño) puedan escapar y prosperar para una próxima captura exitosa. De manera inversa pasa con los contenidos publicados (que dejamos escapar) en todas las redes sociales y en especial con #Hive.

Cada plataforma de contenidos tiene sus reglas y características distinguibles, en #Hive, al estar los contenidos y las interacciones registradas en una blockchain todo es público. Cada publicación, comentario, voto posititivo, voto negativo, delegación, transferencia, entre otras interacciones se guarda en un registro público inalterable, inborrable, en resumen inmutable. Pareciera en este sentido que #Hive es una plataforma de privacidad cero.

Es suficiente consultar cualquiera de sus aplicaciones como @peakd, @ecency y en especial HiveStats usando https://hivestats.io/@nombreusuario para conocer toda la historia de un usuario: Cómo es su economía en #Hive, de quién ha recibido, a quien ha mandado, qué publicaciones tiene, a qué publicaciones ha votado positiva o negativamente, en qué grado estas publicaciones le han sido de agrado/desagrado, a quiénes sigue, quiénes los siguen, cuántos votos ha tenido cada publicación y un largo etc de aspectos dignos para usarse en minería de datos para crear un perfil de un usuario o comunidad.

Si eres analista de datos #Hive es precisamente la plataforma ideal para probar tesis e hipótesis sobre comunidades humanas en favor de hacer una correcta ingeniería social. Existen varias API que permiten interactuar programáticamente con todo el contenido de #Hive, cuya documentación es pública y plenamente accesible en HIVE API DOCS. En mi caso, me considero pythonista y existe beem al alcance de una sola línea de comando:

pip install beem

y de inmediato ya estoy interactuando con la información de la blockchain de #Hive y puedo saber lo que desee, haciendo las preguntas correctas, tal y como dice en su documentación, ejemplo todos mis posts:

from beem.account import Account
from beem.comment import Comment
from beem.exceptions import ContentDoesNotExistsException
account = Account("ertytux")
c_list = {}
for c in map(Comment, account.history(only_ops=["comment"])):
    if c.permlink in c_list:
      continue
    try:
         c.refresh()
    except ContentDoesNotExistsException:
         continue
    c_list[c.permlink] = 1
    if not c.is_comment():
        print("%s " % c.title)

Si haz leído hasta acá y te haz preocupado por tu privacidad, sólo resta recordarte nuevamente qué es Hive:

es una cadena de bloques y un ecosistema descentralizado innovador con visión de futuro, diseñado para escalar teniendo en cuenta la adopción generalizada de la moneda y las plataformas. Al combinar los tiempos de procesamiento ultrarrápidos y las transacciones sin cargo, Hive se posiciona para convertirse en una de las cadenas de bloques Web3 líderes utilizadas por personas de todo el mundo.

y que su razón de ser está en los contenidos que sus usuarios generan en favor de las distintas aplicaciones de su ecosistema.

¿Pues entonces qué hay con la privacidad?

Fácil: La privacidad es asunto de los usuarios, o lo que es lo mismo, no es asunto de la plataforma y sus aplicaciones. Cada vez que generas un contenido lo debes hacer con la conciencia de que estás teniendo una conversación a viva voz con todos, y lo que diga se puede usar tanto en tu contra como a tu favor, por tanto no cuentes o digas lo que no quieres que se sepa de ti, tus gustos o hábitos, entre otras tantas informaciones que revelas cada vez que escribes, donde hasta cómo lo haces dice mucho.

Dejemos pasar la red solo lo que queremos mostrar a todos para hacerlo crecer para una nueva pesca, guardemos dentro de nuestra red de malla gorda el verdadero tesoro.

[EN]
Every good rig angler knows which fishing net to use in favor of only catching the right-sized fish and letting the fry (younger, smaller-sized fish) get away and thrive for the next successful catch. The reverse happens with the content published (which we let escape) on all social networks and especially with #Hive.

Each content platform has its rules and distinguishing characteristics, in #Hive, as the content and interactions are registered in a blockchain everything is public. Each publication, comment, positive vote, negative vote, delegation, transfer, among other interactions are kept in an unalterable, indelible public record, in short, immutable. It seems in this sense that #Hive is a zero privacy platform.

It is enough to consult any of your applications like @peakd, @ecency, and especially HiveStats using https://hivestats.io/@username to know the whole history of a user: How is your economy in #Hive, from whom you have received, to whom you have sent, what posts you have, which posts you have upvoted or downvoted, to what extent you have liked/disliked these posts, who you follow, who follows them, how many votes each publication has had and a long, etc of worthy aspects to be used in data mining to create a profile of a user or community.

If you are a data analyst, #Hive is precisely the ideal platform to test theses and hypotheses about human communities in favor of proper social engineering. There are several APIs that allow programmatic interaction with all #Hive content, whose documentation is public and fully accessible at HIVE API DOCS. In my case, I consider myself pythonics and there is beem within the scope of a single command line:

pip install beem

and immediately I am already interacting with the information of the #Hive blockchain and I can know what I want, asking the right questions, as it says in its documentation, for example, gets all my posts:

from beem.account import Account
from beem.comment import Comment
from beem.exceptions import ContentDoesNotExistsException
account = Account("ertytux")
c_list = {}
for c in map(Comment, account.history(only_ops=["comment"])):
    if c.permlink in c_list:
      continue
    try:
         c.refresh()
    except ContentDoesNotExistsException:
         continue
    c_list[c.permlink] = 1
    if not c.is_comment():
        print("%s " % c.title)

If you have read this far and you have worried about your privacy, it only remains to remind you again what is Hive:

Hive is an innovative and forward-looking decentralized blockchain and ecosystem, designed to scale with widespread adoption of the currency and platforms in mind. By combining the lightning-fast processing times and fee-less transactions, Hive is positioned to become one of the leading Web3 blockchains used by people around the world.

and that its reason for being is in the content that its users generate in favor of the different applications of its ecosystem.

So what about privacy?

Easy: Privacy is a matter for users, or what is the same, it is not a matter for the platform and its applications. Every time you create content you must do it with the awareness that you are having a live conversation with everyone, and what you say can be used both against you and in your favor, therefore do not tell or say what you do not want that they know about you, your tastes or habits, among so many other pieces of information that you reveal every time you write, where even how you do it says a lot.

Let's let pass the net only what we want to show everyone to make it grow for a new catch, let's keep the real treasure inside our thick mesh net.


Gracias por su tiempo/Thanks for your time

H2
H3
H4
3 columns
2 columns
1 column
12 Comments
Ecency