create account

Language structure: free fall into programming | [ EN / ESP ] by albro

View this thread on: hive.blogpeakd.comecency.com
· @albro · (edited)
$4.19
Language structure: free fall into programming | [ EN / ESP ]
<div class="text-justify">
<p>If you think that a programming language is difficult, you'ill be disappointed after reading this post! I've heard this many times! Even from those implicate in programming and I found it useless! Maybe, this post will change your view!</p>

>Si crees que un lenguaje de programación es difícil, ¡te decepcionarás después de leer esta publicación! ¡He oído esto muchas veces! ¡Incluso de los implicados en la programación y lo encontré inútil! ¡Tal vez, esta publicación cambiará tu punto de vista!

<center>![image.png](https://files.peakd.com/file/peakd-hive/cadawg/WK5ROsSn-image.png)
Image by <a href="https://pixabay.com/users/pexels-2286921/?utm_source=link-attribution&amp;utm_medium=referral&amp;utm_campaign=image&amp;utm_content=1839406" class="keychainify-checked">Pexels</a> from <a href="https://pixabay.com/?utm_source=link-attribution&amp;utm_medium=referral&amp;utm_campaign=image&amp;utm_content=1839406" class="keychainify-checked">Pixabay</a>
</center>

<p>I'm @albro and here I want to talk about programming issues and the path I've taken. If I refer to my memories, I remember a discussion that I've repeatedly heard from different people, especially those who have no background in programming.</p>

>Soy @albro y aquí quiero hablar de temas de programación y el camino que he tomado. Si me refiero a mis recuerdos, recuerdo una discusión que he escuchado repetidamente de diferentes personas, especialmente aquellas que no tienen experiencia en programación.

<p>One day I was reading a book about html. Since this book was on our table, one of my friends, who is studying accounting and was just learning C language as one of the basic courses, said this sentence: "They say that Visual Basic language is very difficult!"</p>

>Un día estaba leyendo un libro sobre html. Como este libro estaba en nuestra mesa, uno de mis amigos, que estudia contabilidad y estaba aprendiendo lenguaje C como uno de los cursos básicos, dijo esta frase: "¡Dicen que el lenguaje Visual Basic es muy difícil!"

<p>Among the explanations of other friends; I smiled and told him: "This discussion is pointless"! It's really useless to consider a language difficult or easy. You must be able to use the power of a language to solve problems and challenges! This is what you need to learn otherwise it's possible to learn any language in just a few hours!</p>

>Entre las explicaciones de otros amigos; Sonreí y le dije: "¡Esta discusión no tiene sentido"! Es realmente inútil considerar un idioma difícil o fácil. ¡Debes ser capaz de usar el poder de un idioma para resolver problemas y desafíos! ¡Esto es lo que necesita aprender, de lo contrario, es posible aprender cualquier idioma en solo unas pocas horas!

<p>Using the power of any language is the only thing that requires skill, and this can only be achieved through practice, practice, and practice forever, and that means trial and error!</p>

>Usar el poder de cualquier idioma es lo único que requiere habilidad, y esto solo se puede lograr a través de la práctica, la práctica y la práctica para siempre, ¡y eso significa prueba y error!

<p>Every programming language is made up of a set of rules and regulations that must be followed in writing programs. Do you want to learn JavaScript in a few hours? How about Java? What is python! How about Visual Basic?</p>

>Cada lenguaje de programación se compone de un conjunto de reglas y normas que deben seguirse al escribir programas. ¿Quieres aprender JavaScript en unas horas? ¿Qué hay de Java? ¡Qué es pitón! ¿Qué hay de Visual Basic?

<p><strong>The structure of programs</strong></p>
<p>Let's take a look at the structure of a C program:</p>

>Echemos un vistazo a la estructura de un programa en C:

<p><code>#include < stdio.h ><br />
int main(){<br />
  printf("hello");<br />
  return(0);<br />
}
</code></p>
<p>The first line introducing required libraries: if we want a text to be printed on the screen, we need the printf command! This command is defined in stdio.h library. So, first, we have to tell the compiler in which library the definition of this command is located. So it became simple. First, the required libraries, where the definition of the desired functions are located, must be specified for the compiler.</p>

>La primera línea que presenta las bibliotecas requeridas: si queremos que se imprima un texto en la pantalla, ¡necesitamos el comando printf! Este comando se define en la biblioteca stdio.h. Entonces, primero, debemos decirle al compilador en qué biblioteca se encuentra la definición de este comando. Entonces se volvió simple. Primero, se deben especificar para el compilador las bibliotecas requeridas, donde se ubica la definición de las funciones deseadas.

<p>Second line: We have a function called main. Basically, programs in C are nothing more than a main function. Only all the code that is placed in the main function is executed by the compiler.</p>

>Segunda línea: Tenemos una función llamada main. Básicamente, los programas en C no son más que una función principal. El compilador solo ejecuta todo el código que se coloca en la función principal.

<strong><p>Principles: Every command ends with ";" like printf("hello");</p></strong>

>Principios: Cada comando termina con ";" como printf("hola");

<strong><p>Principles: Functions are enclosed between { and }.</p></strong>

>Principios: Las funciones se encierran entre { y }.

<p>Do you see how language structures illuminate the learning path like a lamp?</p>

>¿Ves cómo las estructuras del lenguaje iluminan el camino del aprendizaje como una lámpara?

<p>Let's see the structure of a php program:</p>

>Veamos la estructura de un programa php:

<p><code>< ? php<br/>
 print("hello");<br />
?>
</code></p>

<p>All the codes of this language are enclosed between < ? php ?>. The interpreter starts when it sees < ? php and interprets everything it sees and ends when it sees ?> .</p>

>Todos los códigos de este lenguaje están encerrados entre < ? php?>. El intérprete comienza cuando ve < ? php e interpreta todo lo que ve y finaliza cuando ve ?> .

<p>Principles: all commands end with ";" .</p>

>Principios: todos los comandos terminan con ";" .

<p>Let's see the structure of HTML codes:</p>

>Veamos la estructura de los códigos HTML:

<p><code>
< !DOCTYPE html ><br/>
< html ><br/>
< head ><br/>
  < title >hello page< / title ><br/>
< / head ><br/>
< body ><br/>
  hello<br/>
< / body ><br/>
< / html ><br/>
</code>
</p>

<p>HTML pages are enclosed between < html >< / html > tags. There are two basic tags inside this tag. One < head >< / head > and another < body >< / body >. The first tag for adding other files and all that is needed for the page. For example, adding CSS files to beautify the page. What is included in this tag won't be seen on the final page. The second tag is for page content and formatting! In fact, everything that can be seen on the pages.
</p>

>Las páginas HTML están encerradas entre las etiquetas < html >< / html >. Hay dos etiquetas básicas dentro de esta etiqueta. Uno < head >< / head > y otro < body >< / body >. La primera etiqueta para agregar otros archivos y todo lo que se necesita para la página. Por ejemplo, agregar archivos CSS para embellecer la página. Lo que se incluye en esta etiqueta no se verá en la página final. ¡La segunda etiqueta es para el contenido y el formato de la página! De hecho, todo lo que se puede ver en las páginas.

<p>As you can see, there is no difficulty or comfort. Everything has pre-made rules and regulations that you must follow. You must navigate the syntactic principles of the language. The first way is to understand the structure of programs. Every language is nothing more than that.</p>

>Como puedes ver, no hay dificultad ni comodidad. Todo tiene reglas y regulaciones prefabricadas que debes seguir. Debes navegar por los principios sintácticos del lenguaje. La primera forma es entender la estructura de los programas. Cada idioma no es más que eso.

<p>When you work with c, you have a main function. Principles tell you how to define other functions or classes and objects. It is you who make your ideas come true by adding libraries or commands. The syntactic principles of each language are clear!
</p>

>Cuando trabajas con c, tienes una función principal. Los principios le dicen cómo definir otras funciones o clases y objetos. Eres tú quien hace realidad tus ideas añadiendo bibliotecas o comandos. ¡Los principios sintácticos de cada idioma son claros!

</div>
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 197 others
properties (23)
authoralbro
permlinklanguage-structure-free-fall-into
categoryhive-169321
json_metadata"{"links":["https://pixabay.com/users/pexels-2286921/?utm_source=link-attribution&amp;utm_medium=referral&amp;utm_campaign=image&amp;utm_content=1839406","https://pixabay.com/?utm_source=link-attribution&amp;utm_medium=referral&amp;utm_campaign=image&amp;utm_content=1839406"],"image":["https://files.peakd.com/file/peakd-hive/cadawg/WK5ROsSn-image.png"],"users":["albro","albro"],"tags":["hive-169321","php","python","programming","neoxian","vby","offtopic","leofinance"],"description":"Image by Pexels from Pixabay If you think that a programming language is difficult, you'ill be disappointed after reading this post! I've heard this many times! Even from those implicate in programming","app":"ecency/3.0.31-vision","format":"markdown+html","image_ratios":[{"height":640,"width":960,"url":"https://images.ecency.com/p/ADdPNihJzmPaYV4kTz4GCveAWxV8mUAgE6jg7PzdvQBoGn97TMw5Brrks5AVbpzX5hT3HnwPoGytUg4o4Pma2cWmt.png?format=match&mode=fit"}]}"
created2023-03-13 08:34:21
last_update2023-03-13 22:27:36
depth0
children99
last_payout2023-03-20 08:34:21
cashout_time1969-12-31 23:59:59
total_payout_value0.706 HBD
curator_payout_value3.479 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length8,525
author_reputation30,477,419,385,789
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries
0.
accountpars.team
weight8,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id121,586,365
net_rshares12,619,161,076,890
author_curate_reward""
vote details (261)
@aide1984 ·
!LUV
properties (22)
authoraide1984
permlink8,878,386,775
categoryhive-169321
json_metadata""
created2023-03-27 19:43:30
last_update2023-03-27 19:43:30
depth1
children1
last_payout2023-04-03 19:43:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation-6,774,839,269
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,017,631
net_rshares0
@luvshares ·
@albro, @aide1984<sub>(2/10)</sub> sent you LUV. | <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://crrdlx.websavvy.work/wiki/doku.php?id=start"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/23t7ev3YkMuKFJvDYRawU5ag19uSrFR689gAb1nBXN3TxNFD85vw2WUstaD5nu5ovWYR1.png"></a><a 
    href="https://crrdlx.websavvy.work/wiki/doku.php?id=start" style="text-decoration:none">HiveWiki</a> | <a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/Epvkqd2sQEjZxu93x3A2J2fztKDarTY17qgMbpqWRV14NrfNBA6fu1jxtTkZztjXZKo.gif" target="_blank"><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">NFT</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a>
<center>Made with <a href="https://peakd.com/@luvshares" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKKSsM8HYHY5o4R1UPRdUADTz5QpsKAxSH5uyxsK4k1AJz5wsBqm7TfvA8aSCjE.png"></a> by <a href="https://hive.blog/@crrdlx" target="_blank">crrdlx</a></center>
properties (22)
authorluvshares
permlinkre-8878386775-20230327t194431z
categoryhive-169321
json_metadata"{"app": "beem/0.24.26"}"
created2023-03-27 19:44:30
last_update2023-03-27 19:44:30
depth2
children0
last_payout2023-04-03 19:44:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,262
author_reputation5,651,102,754,153
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,017,674
net_rshares0
@ants1938 ·
!LUV
properties (22)
authorants1938
permlink8,067,653,864
categoryhive-169321
json_metadata""
created2023-03-27 18:49:27
last_update2023-03-27 18:49:27
depth1
children1
last_payout2023-04-03 18:49:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation-6,774,839,269
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,016,121
net_rshares0
@luvshares ·
@albro, @ants1938<sub>(2/10)</sub> sent you LUV. | <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://crrdlx.websavvy.work/wiki/doku.php?id=start"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/23t7ev3YkMuKFJvDYRawU5ag19uSrFR689gAb1nBXN3TxNFD85vw2WUstaD5nu5ovWYR1.png"></a><a 
    href="https://crrdlx.websavvy.work/wiki/doku.php?id=start" style="text-decoration:none">HiveWiki</a> | <a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/Epvkqd2sQEjZxu93x3A2J2fztKDarTY17qgMbpqWRV14NrfNBA6fu1jxtTkZztjXZKo.gif" target="_blank"><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">NFT</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a>
<center>Made with <a href="https://peakd.com/@luvshares" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKKSsM8HYHY5o4R1UPRdUADTz5QpsKAxSH5uyxsK4k1AJz5wsBqm7TfvA8aSCjE.png"></a> by <a href="https://hive.blog/@crrdlx" target="_blank">crrdlx</a></center>
properties (22)
authorluvshares
permlinkre-8067653864-20230327t184954z
categoryhive-169321
json_metadata"{"app": "beem/0.24.26"}"
created2023-03-27 18:49:54
last_update2023-03-27 18:49:54
depth2
children0
last_payout2023-04-03 18:49:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,262
author_reputation5,651,102,754,153
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,016,134
net_rshares0
@arat1970 ·
!LUV
properties (22)
authorarat1970
permlink2,380,928,936
categoryhive-169321
json_metadata""
created2023-03-27 19:12:00
last_update2023-03-27 19:12:00
depth1
children1
last_payout2023-04-03 19:12:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation-6,774,839,269
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,016,712
net_rshares0
@luvshares ·
@albro, @arat1970<sub>(2/10)</sub> sent you LUV. | <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://crrdlx.websavvy.work/wiki/doku.php?id=start"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/23t7ev3YkMuKFJvDYRawU5ag19uSrFR689gAb1nBXN3TxNFD85vw2WUstaD5nu5ovWYR1.png"></a><a 
    href="https://crrdlx.websavvy.work/wiki/doku.php?id=start" style="text-decoration:none">HiveWiki</a> | <a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/Epvkqd2sQEjZxu93x3A2J2fztKDarTY17qgMbpqWRV14NrfNBA6fu1jxtTkZztjXZKo.gif" target="_blank"><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">NFT</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a>
<center>Made with <a href="https://peakd.com/@luvshares" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKKSsM8HYHY5o4R1UPRdUADTz5QpsKAxSH5uyxsK4k1AJz5wsBqm7TfvA8aSCjE.png"></a> by <a href="https://hive.blog/@crrdlx" target="_blank">crrdlx</a></center>
properties (22)
authorluvshares
permlinkre-2380928936-20230327t191239z
categoryhive-169321
json_metadata"{"app": "beem/0.24.26"}"
created2023-03-27 19:12:39
last_update2023-03-27 19:12:39
depth2
children0
last_payout2023-04-03 19:12:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,262
author_reputation5,651,102,754,153
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,016,744
net_rshares0
@ary1997 ·
!LUV
properties (22)
authorary1997
permlink8,287,553,798
categoryhive-169321
json_metadata""
created2023-03-27 20:55:57
last_update2023-03-27 20:55:57
depth1
children1
last_payout2023-04-03 20:55:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation0
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,019,894
net_rshares0
@luvshares ·
@albro, @ary1997<sub>(2/10)</sub> sent you LUV. | <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://crrdlx.websavvy.work/wiki/doku.php?id=start"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/23t7ev3YkMuKFJvDYRawU5ag19uSrFR689gAb1nBXN3TxNFD85vw2WUstaD5nu5ovWYR1.png"></a><a 
    href="https://crrdlx.websavvy.work/wiki/doku.php?id=start" style="text-decoration:none">HiveWiki</a> | <a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/Epvkqd2sQEjZxu93x3A2J2fztKDarTY17qgMbpqWRV14NrfNBA6fu1jxtTkZztjXZKo.gif" target="_blank"><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">NFT</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a>
<center>Made with <a href="https://peakd.com/@luvshares" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKKSsM8HYHY5o4R1UPRdUADTz5QpsKAxSH5uyxsK4k1AJz5wsBqm7TfvA8aSCjE.png"></a> by <a href="https://hive.blog/@crrdlx" target="_blank">crrdlx</a></center>
properties (22)
authorluvshares
permlinkre-8287553798-20230327t205628z
categoryhive-169321
json_metadata"{"app": "beem/0.24.26"}"
created2023-03-27 20:56:27
last_update2023-03-27 20:56:27
depth2
children0
last_payout2023-04-03 20:56:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,261
author_reputation5,651,102,754,153
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,019,909
net_rshares0
@assely ·
!LUV
properties (22)
authorassely
permlink4,217,023,608
categoryhive-169321
json_metadata""
created2023-03-27 19:34:30
last_update2023-03-27 19:34:30
depth1
children1
last_payout2023-04-03 19:34:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation-6,774,839,269
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,017,352
net_rshares0
@luvshares ·
@albro, @assely<sub>(2/10)</sub> sent you LUV. | <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://crrdlx.websavvy.work/wiki/doku.php?id=start"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/23t7ev3YkMuKFJvDYRawU5ag19uSrFR689gAb1nBXN3TxNFD85vw2WUstaD5nu5ovWYR1.png"></a><a 
    href="https://crrdlx.websavvy.work/wiki/doku.php?id=start" style="text-decoration:none">HiveWiki</a> | <a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/Epvkqd2sQEjZxu93x3A2J2fztKDarTY17qgMbpqWRV14NrfNBA6fu1jxtTkZztjXZKo.gif" target="_blank"><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">NFT</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a>
<center>Made with <a href="https://peakd.com/@luvshares" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKKSsM8HYHY5o4R1UPRdUADTz5QpsKAxSH5uyxsK4k1AJz5wsBqm7TfvA8aSCjE.png"></a> by <a href="https://hive.blog/@crrdlx" target="_blank">crrdlx</a></center>
properties (22)
authorluvshares
permlinkre-4217023608-20230327t193501z
categoryhive-169321
json_metadata"{"app": "beem/0.24.26"}"
created2023-03-27 19:35:00
last_update2023-03-27 19:35:00
depth2
children0
last_payout2023-04-03 19:35:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,260
author_reputation5,651,102,754,153
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,017,372
net_rshares0
@astrout54 ·
!LUV
properties (22)
authorastrout54
permlink7,272,929,565
categoryhive-169321
json_metadata""
created2023-03-27 21:05:12
last_update2023-03-27 21:05:12
depth1
children1
last_payout2023-04-03 21:05:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation0
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,020,130
net_rshares0
@luvshares ·
@albro, @astrout54<sub>(2/10)</sub> sent you LUV. | <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://crrdlx.websavvy.work/wiki/doku.php?id=start"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/23t7ev3YkMuKFJvDYRawU5ag19uSrFR689gAb1nBXN3TxNFD85vw2WUstaD5nu5ovWYR1.png"></a><a 
    href="https://crrdlx.websavvy.work/wiki/doku.php?id=start" style="text-decoration:none">HiveWiki</a> | <a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/Epvkqd2sQEjZxu93x3A2J2fztKDarTY17qgMbpqWRV14NrfNBA6fu1jxtTkZztjXZKo.gif" target="_blank"><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">NFT</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a>
<center>Made with <a href="https://peakd.com/@luvshares" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKKSsM8HYHY5o4R1UPRdUADTz5QpsKAxSH5uyxsK4k1AJz5wsBqm7TfvA8aSCjE.png"></a> by <a href="https://hive.blog/@crrdlx" target="_blank">crrdlx</a></center>
properties (22)
authorluvshares
permlinkre-7272929565-20230327t210546z
categoryhive-169321
json_metadata"{"app": "beem/0.24.26"}"
created2023-03-27 21:05:45
last_update2023-03-27 21:05:45
depth2
children0
last_payout2023-04-03 21:05:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,263
author_reputation5,651,102,754,153
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,020,145
net_rshares0
@athand1943 ·
!LUV
properties (22)
authorathand1943
permlink2,155,550,509
categoryhive-169321
json_metadata""
created2023-03-27 18:31:18
last_update2023-03-27 18:31:18
depth1
children1
last_payout2023-04-03 18:31:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation-6,774,839,269
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,015,577
net_rshares0
@luvshares ·
@albro, @athand1943<sub>(2/10)</sub> sent you LUV. | <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://crrdlx.websavvy.work/wiki/doku.php?id=start"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/23t7ev3YkMuKFJvDYRawU5ag19uSrFR689gAb1nBXN3TxNFD85vw2WUstaD5nu5ovWYR1.png"></a><a 
    href="https://crrdlx.websavvy.work/wiki/doku.php?id=start" style="text-decoration:none">HiveWiki</a> | <a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/Epvkqd2sQEjZxu93x3A2J2fztKDarTY17qgMbpqWRV14NrfNBA6fu1jxtTkZztjXZKo.gif" target="_blank"><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">NFT</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a>
<center>Made with <a href="https://peakd.com/@luvshares" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKKSsM8HYHY5o4R1UPRdUADTz5QpsKAxSH5uyxsK4k1AJz5wsBqm7TfvA8aSCjE.png"></a> by <a href="https://hive.blog/@crrdlx" target="_blank">crrdlx</a></center>
properties (22)
authorluvshares
permlinkre-2155550509-20230327t183151z
categoryhive-169321
json_metadata"{"app": "beem/0.24.26"}"
created2023-03-27 18:31:54
last_update2023-03-27 18:31:54
depth2
children0
last_payout2023-04-03 18:31:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,264
author_reputation5,651,102,754,153
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,015,590
net_rshares0
@atione867 ·
!LUV
properties (22)
authoratione867
permlink0449379152
categoryhive-169321
json_metadata""
created2023-03-27 20:37:45
last_update2023-03-27 20:37:45
depth1
children1
last_payout2023-04-03 20:37:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation0
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,019,400
net_rshares0
@luvshares ·
@albro, @atione867<sub>(2/10)</sub> sent you LUV. | <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://crrdlx.websavvy.work/wiki/doku.php?id=start"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/23t7ev3YkMuKFJvDYRawU5ag19uSrFR689gAb1nBXN3TxNFD85vw2WUstaD5nu5ovWYR1.png"></a><a 
    href="https://crrdlx.websavvy.work/wiki/doku.php?id=start" style="text-decoration:none">HiveWiki</a> | <a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/Epvkqd2sQEjZxu93x3A2J2fztKDarTY17qgMbpqWRV14NrfNBA6fu1jxtTkZztjXZKo.gif" target="_blank"><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">NFT</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a>
<center>Made with <a href="https://peakd.com/@luvshares" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKKSsM8HYHY5o4R1UPRdUADTz5QpsKAxSH5uyxsK4k1AJz5wsBqm7TfvA8aSCjE.png"></a> by <a href="https://hive.blog/@crrdlx" target="_blank">crrdlx</a></center>
properties (22)
authorluvshares
permlinkre-0449379152-20230327t203812z
categoryhive-169321
json_metadata"{"app": "beem/0.24.26"}"
created2023-03-27 20:38:12
last_update2023-03-27 20:38:12
depth2
children0
last_payout2023-04-03 20:38:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,263
author_reputation5,651,102,754,153
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,019,417
net_rshares0
@atioubjece1964 ·
!LUV
properties (22)
authoratioubjece1964
permlink6,981,928,048
categoryhive-169321
json_metadata""
created2023-03-27 19:48:00
last_update2023-03-27 19:48:00
depth1
children1
last_payout2023-04-03 19:48:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation-6,774,839,269
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,017,802
net_rshares0
@luvshares ·
@albro, @atioubjece1964<sub>(2/10)</sub> sent you LUV. | <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://crrdlx.websavvy.work/wiki/doku.php?id=start"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/23t7ev3YkMuKFJvDYRawU5ag19uSrFR689gAb1nBXN3TxNFD85vw2WUstaD5nu5ovWYR1.png"></a><a 
    href="https://crrdlx.websavvy.work/wiki/doku.php?id=start" style="text-decoration:none">HiveWiki</a> | <a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/Epvkqd2sQEjZxu93x3A2J2fztKDarTY17qgMbpqWRV14NrfNBA6fu1jxtTkZztjXZKo.gif" target="_blank"><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">NFT</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a>
<center>Made with <a href="https://peakd.com/@luvshares" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKKSsM8HYHY5o4R1UPRdUADTz5QpsKAxSH5uyxsK4k1AJz5wsBqm7TfvA8aSCjE.png"></a> by <a href="https://hive.blog/@crrdlx" target="_blank">crrdlx</a></center>
properties (22)
authorluvshares
permlinkre-6981928048-20230327t194831z
categoryhive-169321
json_metadata"{"app": "beem/0.24.26"}"
created2023-03-27 19:48:30
last_update2023-03-27 19:48:30
depth2
children0
last_payout2023-04-03 19:48:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,268
author_reputation5,651,102,754,153
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,017,818
net_rshares0
@dvid1946 ·
!LUV
properties (22)
authordvid1946
permlink6,057,970,649
categoryhive-169321
json_metadata""
created2023-03-27 20:42:18
last_update2023-03-27 20:42:18
depth1
children1
last_payout2023-04-03 20:42:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation0
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,019,513
net_rshares0
@luvshares ·
@albro, @dvid1946<sub>(2/10)</sub> sent you LUV. | <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://crrdlx.websavvy.work/wiki/doku.php?id=start"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/23t7ev3YkMuKFJvDYRawU5ag19uSrFR689gAb1nBXN3TxNFD85vw2WUstaD5nu5ovWYR1.png"></a><a 
    href="https://crrdlx.websavvy.work/wiki/doku.php?id=start" style="text-decoration:none">HiveWiki</a> | <a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/Epvkqd2sQEjZxu93x3A2J2fztKDarTY17qgMbpqWRV14NrfNBA6fu1jxtTkZztjXZKo.gif" target="_blank"><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">NFT</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a>
<center>Made with <a href="https://peakd.com/@luvshares" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKKSsM8HYHY5o4R1UPRdUADTz5QpsKAxSH5uyxsK4k1AJz5wsBqm7TfvA8aSCjE.png"></a> by <a href="https://hive.blog/@crrdlx" target="_blank">crrdlx</a></center>
properties (22)
authorluvshares
permlinkre-6057970649-20230327t204255z
categoryhive-169321
json_metadata"{"app": "beem/0.24.26"}"
created2023-03-27 20:42:54
last_update2023-03-27 20:42:54
depth2
children0
last_payout2023-04-03 20:42:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,262
author_reputation5,651,102,754,153
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,019,530
net_rshares0
@eemorted1944 ·
!LUV
properties (22)
authoreemorted1944
permlink8,225,900,803
categoryhive-169321
json_metadata""
created2023-03-27 18:44:54
last_update2023-03-27 18:44:54
depth1
children1
last_payout2023-04-03 18:44:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation-6,774,839,269
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,015,989
net_rshares0
@luvshares ·
@albro, @eemorted1944<sub>(2/10)</sub> sent you LUV. | <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://crrdlx.websavvy.work/wiki/doku.php?id=start"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/23t7ev3YkMuKFJvDYRawU5ag19uSrFR689gAb1nBXN3TxNFD85vw2WUstaD5nu5ovWYR1.png"></a><a 
    href="https://crrdlx.websavvy.work/wiki/doku.php?id=start" style="text-decoration:none">HiveWiki</a> | <a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/Epvkqd2sQEjZxu93x3A2J2fztKDarTY17qgMbpqWRV14NrfNBA6fu1jxtTkZztjXZKo.gif" target="_blank"><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">NFT</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a>
<center>Made with <a href="https://peakd.com/@luvshares" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKKSsM8HYHY5o4R1UPRdUADTz5QpsKAxSH5uyxsK4k1AJz5wsBqm7TfvA8aSCjE.png"></a> by <a href="https://hive.blog/@crrdlx" target="_blank">crrdlx</a></center>
properties (22)
authorluvshares
permlinkre-8225900803-20230327t184520z
categoryhive-169321
json_metadata"{"app": "beem/0.24.26"}"
created2023-03-27 18:45:21
last_update2023-03-27 18:45:21
depth2
children0
last_payout2023-04-03 18:45:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,266
author_reputation5,651,102,754,153
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,016,001
net_rshares0
@ethemstes1947 ·
!LUV
properties (22)
authorethemstes1947
permlink9,845,299,568
categoryhive-169321
json_metadata""
created2023-03-27 21:14:18
last_update2023-03-27 21:14:18
depth1
children1
last_payout2023-04-03 21:14:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation0
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,020,312
net_rshares0
@luvshares ·
@albro, @ethemstes1947<sub>(2/10)</sub> sent you LUV. | <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://crrdlx.websavvy.work/wiki/doku.php?id=start"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/23t7ev3YkMuKFJvDYRawU5ag19uSrFR689gAb1nBXN3TxNFD85vw2WUstaD5nu5ovWYR1.png"></a><a 
    href="https://crrdlx.websavvy.work/wiki/doku.php?id=start" style="text-decoration:none">HiveWiki</a> | <a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/Epvkqd2sQEjZxu93x3A2J2fztKDarTY17qgMbpqWRV14NrfNBA6fu1jxtTkZztjXZKo.gif" target="_blank"><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">NFT</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a>
<center>Made with <a href="https://peakd.com/@luvshares" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKKSsM8HYHY5o4R1UPRdUADTz5QpsKAxSH5uyxsK4k1AJz5wsBqm7TfvA8aSCjE.png"></a> by <a href="https://hive.blog/@crrdlx" target="_blank">crrdlx</a></center>
properties (22)
authorluvshares
permlinkre-9845299568-20230327t211500z
categoryhive-169321
json_metadata"{"app": "beem/0.24.26"}"
created2023-03-27 21:15:00
last_update2023-03-27 21:15:00
depth2
children0
last_payout2023-04-03 21:15:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,267
author_reputation5,651,102,754,153
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,020,331
net_rshares0
@fernandoylet ·
Después de la sintaxis, viene el conocimiento de los comandos y estructuras, para de ahi recien planificar los procesos en diagramas de flujo. Simplemente sumergirse funciona para quienes ya tienen experiencia con algún otro lenguaje. Un completo novato, no sabra ni para donde agarrar.
properties (22)
authorfernandoylet
permlinkre-albro-2023315t133947716z
categoryhive-169321
json_metadata{"tags":["hive-169321","php","python","programming","neoxian","vby","offtopic","leofinance"],"app":"ecency/3.0.39-mobile","format":"markdown+html"}
created2023-03-15 17:39:48
last_update2023-03-15 17:39:48
depth1
children1
last_payout2023-03-22 17:39:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length286
author_reputation30,301,165,482,472
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id121,654,224
net_rshares0
@albro ·
¡Sí, de hecho, un novato, sin antecedentes previos, será bombardeado con muchos problemas! Pero este novato debería llegar a un entendimiento: el programa no es más que resolver el problema. ¡Entonces todo es fácil y agradable, incluso si el rompecabezas lo confunde!
👍  
properties (23)
authoralbro
permlinkre-fernandoylet-2023316t179252z
categoryhive-169321
json_metadata{"tags":["hive-169321","php","python","programming","neoxian","vby","offtopic","leofinance"],"app":"ecency/3.0.31-vision","format":"markdown+html"}
created2023-03-15 21:37:09
last_update2023-03-15 21:37:09
depth2
children0
last_payout2023-03-22 21:37:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length267
author_reputation30,477,419,385,789
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id121,660,038
net_rshares409,804,238
author_curate_reward""
vote details (1)
@gaming.yer ·
Por lo general me inclino un poco mas por el C que por el html, aunque se un poco de los dos, espero mas adelante aprender bien siquiera 3 lenguajes.

Gracias por la ayuda con html
properties (22)
authorgaming.yer
permlinkre-albro-2023317t45231341z
categoryhive-169321
json_metadata{"tags":["hive-169321","php","python","programming","neoxian","vby","offtopic","leofinance"],"app":"ecency/3.0.31-vision","format":"markdown+html"}
created2023-03-17 08:52:30
last_update2023-03-17 08:52:30
depth1
children0
last_payout2023-03-24 08:52:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length180
author_reputation78,280,671,896,519
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id121,700,494
net_rshares0
@godofwar35 ·
!LUV
properties (22)
authorgodofwar35
permlink6,106,040,144
categoryhive-169321
json_metadata""
created2023-03-27 05:36:51
last_update2023-03-27 05:36:51
depth1
children1
last_payout2023-04-03 05:36:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation-6,774,839,269
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,000,613
net_rshares0
@luvshares ·
@albro, @godofwar35<sub>(2/10)</sub> sent you LUV. | <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://crrdlx.websavvy.work/wiki/doku.php?id=start"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/23t7ev3YkMuKFJvDYRawU5ag19uSrFR689gAb1nBXN3TxNFD85vw2WUstaD5nu5ovWYR1.png"></a><a 
    href="https://crrdlx.websavvy.work/wiki/doku.php?id=start" style="text-decoration:none">HiveWiki</a> | <a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/Epvkqd2sQEjZxu93x3A2J2fztKDarTY17qgMbpqWRV14NrfNBA6fu1jxtTkZztjXZKo.gif" target="_blank"><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">NFT</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a>
<center>Made with <a href="https://peakd.com/@luvshares" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKKSsM8HYHY5o4R1UPRdUADTz5QpsKAxSH5uyxsK4k1AJz5wsBqm7TfvA8aSCjE.png"></a> by <a href="https://hive.blog/@crrdlx" target="_blank">crrdlx</a></center>
properties (22)
authorluvshares
permlinkre-6106040144-20230327t053721z
categoryhive-169321
json_metadata"{"app": "beem/0.24.26"}"
created2023-03-27 05:37:21
last_update2023-03-27 05:37:21
depth2
children0
last_payout2023-04-03 05:37:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,264
author_reputation5,651,102,754,153
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,000,629
net_rshares0
@haderegret ·
!LUV
properties (22)
authorhaderegret
permlink2,989,383,727
categoryhive-169321
json_metadata""
created2023-03-27 20:10:33
last_update2023-03-27 20:10:33
depth1
children1
last_payout2023-04-03 20:10:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation-6,774,839,269
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,018,620
net_rshares0
@luvshares ·
@albro, @haderegret<sub>(2/10)</sub> sent you LUV. | <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://crrdlx.websavvy.work/wiki/doku.php?id=start"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/23t7ev3YkMuKFJvDYRawU5ag19uSrFR689gAb1nBXN3TxNFD85vw2WUstaD5nu5ovWYR1.png"></a><a 
    href="https://crrdlx.websavvy.work/wiki/doku.php?id=start" style="text-decoration:none">HiveWiki</a> | <a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/Epvkqd2sQEjZxu93x3A2J2fztKDarTY17qgMbpqWRV14NrfNBA6fu1jxtTkZztjXZKo.gif" target="_blank"><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">NFT</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a>
<center>Made with <a href="https://peakd.com/@luvshares" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKKSsM8HYHY5o4R1UPRdUADTz5QpsKAxSH5uyxsK4k1AJz5wsBqm7TfvA8aSCjE.png"></a> by <a href="https://hive.blog/@crrdlx" target="_blank">crrdlx</a></center>
properties (22)
authorluvshares
permlinkre-2989383727-20230327t201223z
categoryhive-169321
json_metadata"{"app": "beem/0.24.26"}"
created2023-03-27 20:12:24
last_update2023-03-27 20:12:24
depth2
children0
last_payout2023-04-03 20:12:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,264
author_reputation5,651,102,754,153
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,018,674
net_rshares0
@herinew867 ·
!LUV
properties (22)
authorherinew867
permlink2,234,157,941
categoryhive-169321
json_metadata""
created2023-03-27 20:28:39
last_update2023-03-27 20:28:39
depth1
children1
last_payout2023-04-03 20:28:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation0
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,019,179
net_rshares0
@luvshares ·
@albro, @herinew867<sub>(2/10)</sub> sent you LUV. | <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://crrdlx.websavvy.work/wiki/doku.php?id=start"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/23t7ev3YkMuKFJvDYRawU5ag19uSrFR689gAb1nBXN3TxNFD85vw2WUstaD5nu5ovWYR1.png"></a><a 
    href="https://crrdlx.websavvy.work/wiki/doku.php?id=start" style="text-decoration:none">HiveWiki</a> | <a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/Epvkqd2sQEjZxu93x3A2J2fztKDarTY17qgMbpqWRV14NrfNBA6fu1jxtTkZztjXZKo.gif" target="_blank"><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">NFT</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a>
<center>Made with <a href="https://peakd.com/@luvshares" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKKSsM8HYHY5o4R1UPRdUADTz5QpsKAxSH5uyxsK4k1AJz5wsBqm7TfvA8aSCjE.png"></a> by <a href="https://hive.blog/@crrdlx" target="_blank">crrdlx</a></center>
properties (22)
authorluvshares
permlinkre-2234157941-20230327t202908z
categoryhive-169321
json_metadata"{"app": "beem/0.24.26"}"
created2023-03-27 20:29:09
last_update2023-03-27 20:29:09
depth2
children0
last_payout2023-04-03 20:29:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,264
author_reputation5,651,102,754,153
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,019,200
net_rshares0
@hicautmout ·
!LUV
properties (22)
authorhicautmout
permlink9,298,031,857
categoryhive-169321
json_metadata""
created2023-03-27 18:22:18
last_update2023-03-27 18:22:18
depth1
children1
last_payout2023-04-03 18:22:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation-6,774,839,269
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,015,272
net_rshares0
@luvshares ·
@albro, @hicautmout<sub>(2/10)</sub> sent you LUV. | <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://crrdlx.websavvy.work/wiki/doku.php?id=start"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/23t7ev3YkMuKFJvDYRawU5ag19uSrFR689gAb1nBXN3TxNFD85vw2WUstaD5nu5ovWYR1.png"></a><a 
    href="https://crrdlx.websavvy.work/wiki/doku.php?id=start" style="text-decoration:none">HiveWiki</a> | <a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/Epvkqd2sQEjZxu93x3A2J2fztKDarTY17qgMbpqWRV14NrfNBA6fu1jxtTkZztjXZKo.gif" target="_blank"><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">NFT</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a>
<center>Made with <a href="https://peakd.com/@luvshares" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKKSsM8HYHY5o4R1UPRdUADTz5QpsKAxSH5uyxsK4k1AJz5wsBqm7TfvA8aSCjE.png"></a> by <a href="https://hive.blog/@crrdlx" target="_blank">crrdlx</a></center>
properties (22)
authorluvshares
permlinkre-9298031857-20230327t182246z
categoryhive-169321
json_metadata"{"app": "beem/0.24.26"}"
created2023-03-27 18:22:45
last_update2023-03-27 18:22:45
depth2
children0
last_payout2023-04-03 18:22:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,264
author_reputation5,651,102,754,153
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,015,299
net_rshares0
@hivebuzz ·
Congratulations @albro! You have completed the following achievement on the Hive blockchain And have been rewarded with New badge(s)

<table><tr><td><img src="https://images.hive.blog/60x70/http://hivebuzz.me/@albro/upvoted.png?202303140701"></td><td>You received more than 300 upvotes.<br>Your next target is to reach 400 upvotes.</td></tr>
</table>

<sub>_You can view your badges on [your board](https://hivebuzz.me/@albro) and compare yourself to others in the [Ranking](https://hivebuzz.me/ranking)_</sub>
<sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub>



**Check out our last posts:**
<table><tr><td><a href="/hive-122221/@hivebuzz/lpud-202303"><img src="https://images.hive.blog/64x128/https://i.imgur.com/pVZi2Md.png"></a></td><td><a href="/hive-122221/@hivebuzz/lpud-202303">LEO Power Up Day - March 15, 2023</a></td></tr><tr><td><a href="/hive-195772/@hivebuzz/afri-tunes"><img src="https://images.hive.blog/64x128/https://i.imgur.com/yngJQKY.png"></a></td><td><a href="/hive-195772/@hivebuzz/afri-tunes">HiveBuzz rewards participants in the Afri-Tunes Anniversary event</a></td></tr><tr><td><a href="/hivebuzz/@hivebuzz/call-for-support"><img src="https://images.hive.blog/64x128/https://i.imgur.com/xu0J1kD.png"></a></td><td><a href="/hivebuzz/@hivebuzz/call-for-support">Keep Hive Buzzing - Support our proposal!</a></td></tr><tr><td><a href="/hive-139531/@hivebuzz/proposal-2324"><img src="https://images.hive.blog/64x128/https://i.imgur.com/RNIZ1N6.png"></a></td><td><a href="/hive-139531/@hivebuzz/proposal-2324">The Hive Gamification Proposal</a></td></tr></table>

###### Support the HiveBuzz project. [Vote](https://hivesigner.com/sign/update_proposal_votes?proposal_ids=%5B%22248%22%5D&approve=true) for [our proposal](https://peakd.com/me/proposals/248)!
properties (22)
authorhivebuzz
permlinknotify-albro-20230314t073144
categoryhive-169321
json_metadata{"image":["http://hivebuzz.me/notify.t6.png"]}
created2023-03-14 07:31:45
last_update2023-03-14 07:31:45
depth1
children0
last_payout2023-03-21 07:31:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,832
author_reputation369,429,462,341,881
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id121,613,750
net_rshares0
@invis23 ·
!LUV
properties (22)
authorinvis23
permlink5,884,209,343
categoryhive-169321
json_metadata""
created2023-03-27 20:06:03
last_update2023-03-27 20:06:03
depth1
children1
last_payout2023-04-03 20:06:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation-6,774,839,269
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,018,507
net_rshares0
@luvshares ·
@albro, @invis23<sub>(2/10)</sub> sent you LUV. | <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://crrdlx.websavvy.work/wiki/doku.php?id=start"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/23t7ev3YkMuKFJvDYRawU5ag19uSrFR689gAb1nBXN3TxNFD85vw2WUstaD5nu5ovWYR1.png"></a><a 
    href="https://crrdlx.websavvy.work/wiki/doku.php?id=start" style="text-decoration:none">HiveWiki</a> | <a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/Epvkqd2sQEjZxu93x3A2J2fztKDarTY17qgMbpqWRV14NrfNBA6fu1jxtTkZztjXZKo.gif" target="_blank"><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">NFT</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a>
<center>Made with <a href="https://peakd.com/@luvshares" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKKSsM8HYHY5o4R1UPRdUADTz5QpsKAxSH5uyxsK4k1AJz5wsBqm7TfvA8aSCjE.png"></a> by <a href="https://hive.blog/@crrdlx" target="_blank">crrdlx</a></center>
properties (22)
authorluvshares
permlinkre-5884209343-20230327t200830z
categoryhive-169321
json_metadata"{"app": "beem/0.24.26"}"
created2023-03-27 20:08:30
last_update2023-03-27 20:08:30
depth2
children0
last_payout2023-04-03 20:08:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,261
author_reputation5,651,102,754,153
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,018,575
net_rshares0
@ionceend ·
!LUV
properties (22)
authorionceend
permlink9,109,237,690
categoryhive-169321
json_metadata""
created2023-03-27 19:16:30
last_update2023-03-27 19:16:30
depth1
children1
last_payout2023-04-03 19:16:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation-6,774,839,269
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,016,820
net_rshares0
@luvshares ·
@albro, @ionceend<sub>(2/10)</sub> sent you LUV. | <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://crrdlx.websavvy.work/wiki/doku.php?id=start"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/23t7ev3YkMuKFJvDYRawU5ag19uSrFR689gAb1nBXN3TxNFD85vw2WUstaD5nu5ovWYR1.png"></a><a 
    href="https://crrdlx.websavvy.work/wiki/doku.php?id=start" style="text-decoration:none">HiveWiki</a> | <a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/Epvkqd2sQEjZxu93x3A2J2fztKDarTY17qgMbpqWRV14NrfNBA6fu1jxtTkZztjXZKo.gif" target="_blank"><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">NFT</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a>
<center>Made with <a href="https://peakd.com/@luvshares" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKKSsM8HYHY5o4R1UPRdUADTz5QpsKAxSH5uyxsK4k1AJz5wsBqm7TfvA8aSCjE.png"></a> by <a href="https://hive.blog/@crrdlx" target="_blank">crrdlx</a></center>
properties (22)
authorluvshares
permlinkre-9109237690-20230327t191703z
categoryhive-169321
json_metadata"{"app": "beem/0.24.26"}"
created2023-03-27 19:17:00
last_update2023-03-27 19:17:00
depth2
children0
last_payout2023-04-03 19:17:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,262
author_reputation5,651,102,754,153
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,016,834
net_rshares0
@iscompard ·
!LUV
properties (22)
authoriscompard
permlink3,027,152,994
categoryhive-169321
json_metadata""
created2023-03-27 19:39:00
last_update2023-03-27 19:39:00
depth1
children1
last_payout2023-04-03 19:39:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation-6,774,839,269
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,017,496
net_rshares0
@luvshares ·
@albro, @iscompard<sub>(2/10)</sub> sent you LUV. | <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://crrdlx.websavvy.work/wiki/doku.php?id=start"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/23t7ev3YkMuKFJvDYRawU5ag19uSrFR689gAb1nBXN3TxNFD85vw2WUstaD5nu5ovWYR1.png"></a><a 
    href="https://crrdlx.websavvy.work/wiki/doku.php?id=start" style="text-decoration:none">HiveWiki</a> | <a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/Epvkqd2sQEjZxu93x3A2J2fztKDarTY17qgMbpqWRV14NrfNBA6fu1jxtTkZztjXZKo.gif" target="_blank"><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">NFT</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a>
<center>Made with <a href="https://peakd.com/@luvshares" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKKSsM8HYHY5o4R1UPRdUADTz5QpsKAxSH5uyxsK4k1AJz5wsBqm7TfvA8aSCjE.png"></a> by <a href="https://hive.blog/@crrdlx" target="_blank">crrdlx</a></center>
properties (22)
authorluvshares
permlinkre-3027152994-20230327t194045z
categoryhive-169321
json_metadata"{"app": "beem/0.24.26"}"
created2023-03-27 19:40:45
last_update2023-03-27 19:40:45
depth2
children0
last_payout2023-04-03 19:40:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,263
author_reputation5,651,102,754,153
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,017,550
net_rshares0
@itheng ·
!LUV
properties (22)
authoritheng
permlink3,881,917,391
categoryhive-169321
json_metadata""
created2023-03-27 19:29:57
last_update2023-03-27 19:29:57
depth1
children1
last_payout2023-04-03 19:29:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation-6,774,839,269
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,017,187
net_rshares0
@luvshares ·
@albro, @itheng<sub>(2/10)</sub> sent you LUV. | <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://crrdlx.websavvy.work/wiki/doku.php?id=start"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/23t7ev3YkMuKFJvDYRawU5ag19uSrFR689gAb1nBXN3TxNFD85vw2WUstaD5nu5ovWYR1.png"></a><a 
    href="https://crrdlx.websavvy.work/wiki/doku.php?id=start" style="text-decoration:none">HiveWiki</a> | <a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/Epvkqd2sQEjZxu93x3A2J2fztKDarTY17qgMbpqWRV14NrfNBA6fu1jxtTkZztjXZKo.gif" target="_blank"><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">NFT</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a>
<center>Made with <a href="https://peakd.com/@luvshares" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKKSsM8HYHY5o4R1UPRdUADTz5QpsKAxSH5uyxsK4k1AJz5wsBqm7TfvA8aSCjE.png"></a> by <a href="https://hive.blog/@crrdlx" target="_blank">crrdlx</a></center>
properties (22)
authorluvshares
permlinkre-3881917391-20230327t193030z
categoryhive-169321
json_metadata"{"app": "beem/0.24.26"}"
created2023-03-27 19:30:30
last_update2023-03-27 19:30:30
depth2
children0
last_payout2023-04-03 19:30:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,260
author_reputation5,651,102,754,153
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,017,220
net_rshares0
@ithys54 ·
!LUV
properties (22)
authorithys54
permlink3,550,804,701
categoryhive-169321
json_metadata""
created2023-03-27 21:00:30
last_update2023-03-27 21:00:30
depth1
children1
last_payout2023-04-03 21:00:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation0
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,020,014
net_rshares0
@luvshares ·
@albro, @ithys54<sub>(2/10)</sub> sent you LUV. | <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://crrdlx.websavvy.work/wiki/doku.php?id=start"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/23t7ev3YkMuKFJvDYRawU5ag19uSrFR689gAb1nBXN3TxNFD85vw2WUstaD5nu5ovWYR1.png"></a><a 
    href="https://crrdlx.websavvy.work/wiki/doku.php?id=start" style="text-decoration:none">HiveWiki</a> | <a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/Epvkqd2sQEjZxu93x3A2J2fztKDarTY17qgMbpqWRV14NrfNBA6fu1jxtTkZztjXZKo.gif" target="_blank"><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">NFT</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a>
<center>Made with <a href="https://peakd.com/@luvshares" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKKSsM8HYHY5o4R1UPRdUADTz5QpsKAxSH5uyxsK4k1AJz5wsBqm7TfvA8aSCjE.png"></a> by <a href="https://hive.blog/@crrdlx" target="_blank">crrdlx</a></center>
properties (22)
authorluvshares
permlinkre-3550804701-20230327t210102z
categoryhive-169321
json_metadata"{"app": "beem/0.24.26"}"
created2023-03-27 21:01:03
last_update2023-03-27 21:01:03
depth2
children0
last_payout2023-04-03 21:01:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,261
author_reputation5,651,102,754,153
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,020,035
net_rshares0
@itore1989 ·
!LUV
properties (22)
authoritore1989
permlink0956317678
categoryhive-169321
json_metadata""
created2023-03-27 20:01:33
last_update2023-03-27 20:01:33
depth1
children1
last_payout2023-04-03 20:01:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation-6,774,839,269
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,018,331
net_rshares0
@luvshares ·
@albro, @itore1989<sub>(2/10)</sub> sent you LUV. | <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://crrdlx.websavvy.work/wiki/doku.php?id=start"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/23t7ev3YkMuKFJvDYRawU5ag19uSrFR689gAb1nBXN3TxNFD85vw2WUstaD5nu5ovWYR1.png"></a><a 
    href="https://crrdlx.websavvy.work/wiki/doku.php?id=start" style="text-decoration:none">HiveWiki</a> | <a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/Epvkqd2sQEjZxu93x3A2J2fztKDarTY17qgMbpqWRV14NrfNBA6fu1jxtTkZztjXZKo.gif" target="_blank"><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">NFT</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a>
<center>Made with <a href="https://peakd.com/@luvshares" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKKSsM8HYHY5o4R1UPRdUADTz5QpsKAxSH5uyxsK4k1AJz5wsBqm7TfvA8aSCjE.png"></a> by <a href="https://hive.blog/@crrdlx" target="_blank">crrdlx</a></center>
properties (22)
authorluvshares
permlinkre-0956317678-20230327t200203z
categoryhive-169321
json_metadata"{"app": "beem/0.24.26"}"
created2023-03-27 20:02:03
last_update2023-03-27 20:02:03
depth2
children0
last_payout2023-04-03 20:02:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,263
author_reputation5,651,102,754,153
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,018,352
net_rshares0
@lara76 ·
!LUV
properties (22)
authorlara76
permlink8,546,997,025
categoryhive-169321
json_metadata""
created2023-03-27 18:06:48
last_update2023-03-27 18:06:48
depth1
children1
last_payout2023-04-03 18:06:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation-6,774,839,269
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,014,833
net_rshares0
@luvshares ·
@albro, @lara76<sub>(2/10)</sub> sent you LUV. | <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://crrdlx.websavvy.work/wiki/doku.php?id=start"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/23t7ev3YkMuKFJvDYRawU5ag19uSrFR689gAb1nBXN3TxNFD85vw2WUstaD5nu5ovWYR1.png"></a><a 
    href="https://crrdlx.websavvy.work/wiki/doku.php?id=start" style="text-decoration:none">HiveWiki</a> | <a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/Epvkqd2sQEjZxu93x3A2J2fztKDarTY17qgMbpqWRV14NrfNBA6fu1jxtTkZztjXZKo.gif" target="_blank"><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">NFT</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a>
<center>Made with <a href="https://peakd.com/@luvshares" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKKSsM8HYHY5o4R1UPRdUADTz5QpsKAxSH5uyxsK4k1AJz5wsBqm7TfvA8aSCjE.png"></a> by <a href="https://hive.blog/@crrdlx" target="_blank">crrdlx</a></center>
properties (22)
authorluvshares
permlinkre-8546997025-20230327t180722z
categoryhive-169321
json_metadata"{"app": "beem/0.24.26"}"
created2023-03-27 18:07:21
last_update2023-03-27 18:07:21
depth2
children0
last_payout2023-04-03 18:07:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,260
author_reputation5,651,102,754,153
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,014,857
net_rshares0
@ldwes867 ·
!LUV
properties (22)
authorldwes867
permlink1,557,340,183
categoryhive-169321
json_metadata""
created2023-03-27 20:33:12
last_update2023-03-27 20:33:12
depth1
children1
last_payout2023-04-03 20:33:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation0
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,019,310
net_rshares0
@luvshares ·
@albro, @ldwes867<sub>(2/10)</sub> sent you LUV. | <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://crrdlx.websavvy.work/wiki/doku.php?id=start"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/23t7ev3YkMuKFJvDYRawU5ag19uSrFR689gAb1nBXN3TxNFD85vw2WUstaD5nu5ovWYR1.png"></a><a 
    href="https://crrdlx.websavvy.work/wiki/doku.php?id=start" style="text-decoration:none">HiveWiki</a> | <a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/Epvkqd2sQEjZxu93x3A2J2fztKDarTY17qgMbpqWRV14NrfNBA6fu1jxtTkZztjXZKo.gif" target="_blank"><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">NFT</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a>
<center>Made with <a href="https://peakd.com/@luvshares" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKKSsM8HYHY5o4R1UPRdUADTz5QpsKAxSH5uyxsK4k1AJz5wsBqm7TfvA8aSCjE.png"></a> by <a href="https://hive.blog/@crrdlx" target="_blank">crrdlx</a></center>
properties (22)
authorluvshares
permlinkre-1557340183-20230327t203405z
categoryhive-169321
json_metadata"{"app": "beem/0.24.26"}"
created2023-03-27 20:34:06
last_update2023-03-27 20:34:06
depth2
children0
last_payout2023-04-03 20:34:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,262
author_reputation5,651,102,754,153
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,019,338
net_rshares0
@legelone ·
!LUV
properties (22)
authorlegelone
permlink9,318,660,531
categoryhive-169321
json_metadata""
created2023-03-27 18:26:51
last_update2023-03-27 18:26:51
depth1
children1
last_payout2023-04-03 18:26:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation-13,549,678,538
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,015,444
net_rshares0
@luvshares ·
@albro, @legelone<sub>(2/10)</sub> sent you LUV. | <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://crrdlx.websavvy.work/wiki/doku.php?id=start"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/23t7ev3YkMuKFJvDYRawU5ag19uSrFR689gAb1nBXN3TxNFD85vw2WUstaD5nu5ovWYR1.png"></a><a 
    href="https://crrdlx.websavvy.work/wiki/doku.php?id=start" style="text-decoration:none">HiveWiki</a> | <a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/Epvkqd2sQEjZxu93x3A2J2fztKDarTY17qgMbpqWRV14NrfNBA6fu1jxtTkZztjXZKo.gif" target="_blank"><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">NFT</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a>
<center>Made with <a href="https://peakd.com/@luvshares" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKKSsM8HYHY5o4R1UPRdUADTz5QpsKAxSH5uyxsK4k1AJz5wsBqm7TfvA8aSCjE.png"></a> by <a href="https://hive.blog/@crrdlx" target="_blank">crrdlx</a></center>
properties (22)
authorluvshares
permlinkre-9318660531-20230327t182721z
categoryhive-169321
json_metadata"{"app": "beem/0.24.26"}"
created2023-03-27 18:27:21
last_update2023-03-27 18:27:21
depth2
children0
last_payout2023-04-03 18:27:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,262
author_reputation5,651,102,754,153
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,015,464
net_rshares0
@nothetim ·
!LUV
properties (22)
authornothetim
permlink9,693,764,408
categoryhive-169321
json_metadata""
created2023-03-27 18:40:21
last_update2023-03-27 18:40:21
depth1
children1
last_payout2023-04-03 18:40:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation-6,774,839,269
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,015,819
net_rshares0
@luvshares ·
@albro, @nothetim<sub>(2/10)</sub> sent you LUV. | <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://crrdlx.websavvy.work/wiki/doku.php?id=start"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/23t7ev3YkMuKFJvDYRawU5ag19uSrFR689gAb1nBXN3TxNFD85vw2WUstaD5nu5ovWYR1.png"></a><a 
    href="https://crrdlx.websavvy.work/wiki/doku.php?id=start" style="text-decoration:none">HiveWiki</a> | <a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/Epvkqd2sQEjZxu93x3A2J2fztKDarTY17qgMbpqWRV14NrfNBA6fu1jxtTkZztjXZKo.gif" target="_blank"><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">NFT</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a>
<center>Made with <a href="https://peakd.com/@luvshares" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKKSsM8HYHY5o4R1UPRdUADTz5QpsKAxSH5uyxsK4k1AJz5wsBqm7TfvA8aSCjE.png"></a> by <a href="https://hive.blog/@crrdlx" target="_blank">crrdlx</a></center>
properties (22)
authorluvshares
permlinkre-9693764408-20230327t184053z
categoryhive-169321
json_metadata"{"app": "beem/0.24.26"}"
created2023-03-27 18:40:54
last_update2023-03-27 18:40:54
depth2
children0
last_payout2023-04-03 18:40:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,262
author_reputation5,651,102,754,153
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,015,848
net_rshares0
@ntly1941 ·
!LUV
properties (22)
authorntly1941
permlink1,201,603,454
categoryhive-169321
json_metadata""
created2023-03-27 20:24:09
last_update2023-03-27 20:24:09
depth1
children1
last_payout2023-04-03 20:24:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation0
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,019,021
net_rshares0
@luvshares ·
@albro, @ntly1941<sub>(2/10)</sub> sent you LUV. | <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://crrdlx.websavvy.work/wiki/doku.php?id=start"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/23t7ev3YkMuKFJvDYRawU5ag19uSrFR689gAb1nBXN3TxNFD85vw2WUstaD5nu5ovWYR1.png"></a><a 
    href="https://crrdlx.websavvy.work/wiki/doku.php?id=start" style="text-decoration:none">HiveWiki</a> | <a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/Epvkqd2sQEjZxu93x3A2J2fztKDarTY17qgMbpqWRV14NrfNBA6fu1jxtTkZztjXZKo.gif" target="_blank"><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">NFT</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a>
<center>Made with <a href="https://peakd.com/@luvshares" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKKSsM8HYHY5o4R1UPRdUADTz5QpsKAxSH5uyxsK4k1AJz5wsBqm7TfvA8aSCjE.png"></a> by <a href="https://hive.blog/@crrdlx" target="_blank">crrdlx</a></center>
properties (22)
authorluvshares
permlinkre-1201603454-20230327t202442z
categoryhive-169321
json_metadata"{"app": "beem/0.24.26"}"
created2023-03-27 20:24:42
last_update2023-03-27 20:24:42
depth2
children0
last_payout2023-04-03 20:24:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,262
author_reputation5,651,102,754,153
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,019,039
net_rshares0
@ons1983 ·
!LUV
properties (22)
authorons1983
permlink1,536,901,228
categoryhive-169321
json_metadata""
created2023-03-27 20:46:48
last_update2023-03-27 20:46:48
depth1
children1
last_payout2023-04-03 20:46:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation0
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,019,626
net_rshares0
@luvshares ·
@albro, @ons1983<sub>(2/10)</sub> sent you LUV. | <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://crrdlx.websavvy.work/wiki/doku.php?id=start"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/23t7ev3YkMuKFJvDYRawU5ag19uSrFR689gAb1nBXN3TxNFD85vw2WUstaD5nu5ovWYR1.png"></a><a 
    href="https://crrdlx.websavvy.work/wiki/doku.php?id=start" style="text-decoration:none">HiveWiki</a> | <a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/Epvkqd2sQEjZxu93x3A2J2fztKDarTY17qgMbpqWRV14NrfNBA6fu1jxtTkZztjXZKo.gif" target="_blank"><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">NFT</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a>
<center>Made with <a href="https://peakd.com/@luvshares" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKKSsM8HYHY5o4R1UPRdUADTz5QpsKAxSH5uyxsK4k1AJz5wsBqm7TfvA8aSCjE.png"></a> by <a href="https://hive.blog/@crrdlx" target="_blank">crrdlx</a></center>
properties (22)
authorluvshares
permlinkre-1536901228-20230327t204720z
categoryhive-169321
json_metadata"{"app": "beem/0.24.26"}"
created2023-03-27 20:47:21
last_update2023-03-27 20:47:21
depth2
children0
last_payout2023-04-03 20:47:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,261
author_reputation5,651,102,754,153
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,019,648
net_rshares0
@oorm1985 ·
!LUV
properties (22)
authoroorm1985
permlink5,021,808,703
categoryhive-169321
json_metadata""
created2023-03-27 19:03:00
last_update2023-03-27 19:03:00
depth1
children1
last_payout2023-04-03 19:03:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation-6,774,839,269
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,016,433
net_rshares0
@luvshares ·
@albro, @oorm1985<sub>(2/10)</sub> sent you LUV. | <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://crrdlx.websavvy.work/wiki/doku.php?id=start"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/23t7ev3YkMuKFJvDYRawU5ag19uSrFR689gAb1nBXN3TxNFD85vw2WUstaD5nu5ovWYR1.png"></a><a 
    href="https://crrdlx.websavvy.work/wiki/doku.php?id=start" style="text-decoration:none">HiveWiki</a> | <a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/Epvkqd2sQEjZxu93x3A2J2fztKDarTY17qgMbpqWRV14NrfNBA6fu1jxtTkZztjXZKo.gif" target="_blank"><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">NFT</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a>
<center>Made with <a href="https://peakd.com/@luvshares" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKKSsM8HYHY5o4R1UPRdUADTz5QpsKAxSH5uyxsK4k1AJz5wsBqm7TfvA8aSCjE.png"></a> by <a href="https://hive.blog/@crrdlx" target="_blank">crrdlx</a></center>
properties (22)
authorluvshares
permlinkre-5021808703-20230327t190330z
categoryhive-169321
json_metadata"{"app": "beem/0.24.26"}"
created2023-03-27 19:03:30
last_update2023-03-27 19:03:30
depth2
children0
last_payout2023-04-03 19:03:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,262
author_reputation5,651,102,754,153
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,016,449
net_rshares0
@ope1961 ·
!LUV
properties (22)
authorope1961
permlink2,634,989,063
categoryhive-169321
json_metadata""
created2023-03-27 20:51:21
last_update2023-03-27 20:51:21
depth1
children1
last_payout2023-04-03 20:51:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation0
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,019,776
net_rshares0
@luvshares ·
@albro, @ope1961<sub>(2/10)</sub> sent you LUV. | <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://crrdlx.websavvy.work/wiki/doku.php?id=start"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/23t7ev3YkMuKFJvDYRawU5ag19uSrFR689gAb1nBXN3TxNFD85vw2WUstaD5nu5ovWYR1.png"></a><a 
    href="https://crrdlx.websavvy.work/wiki/doku.php?id=start" style="text-decoration:none">HiveWiki</a> | <a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/Epvkqd2sQEjZxu93x3A2J2fztKDarTY17qgMbpqWRV14NrfNBA6fu1jxtTkZztjXZKo.gif" target="_blank"><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">NFT</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a>
<center>Made with <a href="https://peakd.com/@luvshares" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKKSsM8HYHY5o4R1UPRdUADTz5QpsKAxSH5uyxsK4k1AJz5wsBqm7TfvA8aSCjE.png"></a> by <a href="https://hive.blog/@crrdlx" target="_blank">crrdlx</a></center>
properties (22)
authorluvshares
permlinkre-2634989063-20230327t205154z
categoryhive-169321
json_metadata"{"app": "beem/0.24.26"}"
created2023-03-27 20:51:54
last_update2023-03-27 20:51:54
depth2
children0
last_payout2023-04-03 20:51:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,261
author_reputation5,651,102,754,153
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,019,793
net_rshares0
@ortannige1947 ·
!LUV
properties (22)
authorortannige1947
permlink4,244,707,572
categoryhive-169321
json_metadata""
created2023-03-27 21:23:21
last_update2023-03-27 21:23:21
depth1
children1
last_payout2023-04-03 21:23:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation0
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,020,529
net_rshares0
@luvshares ·
@albro, @ortannige1947<sub>(2/10)</sub> sent you LUV. | <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://crrdlx.websavvy.work/wiki/doku.php?id=start"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/23t7ev3YkMuKFJvDYRawU5ag19uSrFR689gAb1nBXN3TxNFD85vw2WUstaD5nu5ovWYR1.png"></a><a 
    href="https://crrdlx.websavvy.work/wiki/doku.php?id=start" style="text-decoration:none">HiveWiki</a> | <a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/Epvkqd2sQEjZxu93x3A2J2fztKDarTY17qgMbpqWRV14NrfNBA6fu1jxtTkZztjXZKo.gif" target="_blank"><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">NFT</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a>
<center>Made with <a href="https://peakd.com/@luvshares" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKKSsM8HYHY5o4R1UPRdUADTz5QpsKAxSH5uyxsK4k1AJz5wsBqm7TfvA8aSCjE.png"></a> by <a href="https://hive.blog/@crrdlx" target="_blank">crrdlx</a></center>
properties (22)
authorluvshares
permlinkre-4244707572-20230327t212350z
categoryhive-169321
json_metadata"{"app": "beem/0.24.26"}"
created2023-03-27 21:23:51
last_update2023-03-27 21:23:51
depth2
children0
last_payout2023-04-03 21:23:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,267
author_reputation5,651,102,754,153
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,020,546
net_rshares0
@orthown ·
!LUV
properties (22)
authororthown
permlink5,049,086,096
categoryhive-169321
json_metadata""
created2023-03-27 19:07:33
last_update2023-03-27 19:07:33
depth1
children1
last_payout2023-04-03 19:07:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation-6,774,839,269
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,016,546
net_rshares0
@luvshares ·
@albro, @orthown<sub>(2/10)</sub> sent you LUV. | <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://crrdlx.websavvy.work/wiki/doku.php?id=start"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/23t7ev3YkMuKFJvDYRawU5ag19uSrFR689gAb1nBXN3TxNFD85vw2WUstaD5nu5ovWYR1.png"></a><a 
    href="https://crrdlx.websavvy.work/wiki/doku.php?id=start" style="text-decoration:none">HiveWiki</a> | <a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/Epvkqd2sQEjZxu93x3A2J2fztKDarTY17qgMbpqWRV14NrfNBA6fu1jxtTkZztjXZKo.gif" target="_blank"><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">NFT</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a>
<center>Made with <a href="https://peakd.com/@luvshares" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKKSsM8HYHY5o4R1UPRdUADTz5QpsKAxSH5uyxsK4k1AJz5wsBqm7TfvA8aSCjE.png"></a> by <a href="https://hive.blog/@crrdlx" target="_blank">crrdlx</a></center>
properties (22)
authorluvshares
permlinkre-5049086096-20230327t190800z
categoryhive-169321
json_metadata"{"app": "beem/0.24.26"}"
created2023-03-27 19:08:00
last_update2023-03-27 19:08:00
depth2
children0
last_payout2023-04-03 19:08:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,261
author_reputation5,651,102,754,153
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,016,564
net_rshares0
@ostright ·
!LUV
properties (22)
authorostright
permlink7,004,918,008
categoryhive-169321
json_metadata""
created2023-03-27 20:15:06
last_update2023-03-27 20:15:06
depth1
children1
last_payout2023-04-03 20:15:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation-6,774,839,269
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,018,748
net_rshares0
@luvshares ·
@albro, @ostright<sub>(2/10)</sub> sent you LUV. | <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://crrdlx.websavvy.work/wiki/doku.php?id=start"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/23t7ev3YkMuKFJvDYRawU5ag19uSrFR689gAb1nBXN3TxNFD85vw2WUstaD5nu5ovWYR1.png"></a><a 
    href="https://crrdlx.websavvy.work/wiki/doku.php?id=start" style="text-decoration:none">HiveWiki</a> | <a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/Epvkqd2sQEjZxu93x3A2J2fztKDarTY17qgMbpqWRV14NrfNBA6fu1jxtTkZztjXZKo.gif" target="_blank"><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">NFT</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a>
<center>Made with <a href="https://peakd.com/@luvshares" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKKSsM8HYHY5o4R1UPRdUADTz5QpsKAxSH5uyxsK4k1AJz5wsBqm7TfvA8aSCjE.png"></a> by <a href="https://hive.blog/@crrdlx" target="_blank">crrdlx</a></center>
properties (22)
authorluvshares
permlinkre-7004918008-20230327t201601z
categoryhive-169321
json_metadata"{"app": "beem/0.24.26"}"
created2023-03-27 20:16:00
last_update2023-03-27 20:16:00
depth2
children0
last_payout2023-04-03 20:16:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,262
author_reputation5,651,102,754,153
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,018,780
net_rshares0
@ouringed ·
!LUV
properties (22)
authorouringed
permlink2,293,867,586
categoryhive-169321
json_metadata""
created2023-03-27 19:52:30
last_update2023-03-27 19:52:30
depth1
children1
last_payout2023-04-03 19:52:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation-6,774,839,269
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,017,939
net_rshares0
@luvshares ·
@albro, @ouringed<sub>(2/10)</sub> sent you LUV. | <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://crrdlx.websavvy.work/wiki/doku.php?id=start"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/23t7ev3YkMuKFJvDYRawU5ag19uSrFR689gAb1nBXN3TxNFD85vw2WUstaD5nu5ovWYR1.png"></a><a 
    href="https://crrdlx.websavvy.work/wiki/doku.php?id=start" style="text-decoration:none">HiveWiki</a> | <a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/Epvkqd2sQEjZxu93x3A2J2fztKDarTY17qgMbpqWRV14NrfNBA6fu1jxtTkZztjXZKo.gif" target="_blank"><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">NFT</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a>
<center>Made with <a href="https://peakd.com/@luvshares" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKKSsM8HYHY5o4R1UPRdUADTz5QpsKAxSH5uyxsK4k1AJz5wsBqm7TfvA8aSCjE.png"></a> by <a href="https://hive.blog/@crrdlx" target="_blank">crrdlx</a></center>
properties (22)
authorluvshares
permlinkre-2293867586-20230327t195302z
categoryhive-169321
json_metadata"{"app": "beem/0.24.26"}"
created2023-03-27 19:53:03
last_update2023-03-27 19:53:03
depth2
children0
last_payout2023-04-03 19:53:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,262
author_reputation5,651,102,754,153
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,017,964
net_rshares0
@pars.team ·
!LUV
properties (22)
authorpars.team
permlink5,348,303,149
categoryhive-169321
json_metadata""
created2023-03-27 05:32:21
last_update2023-03-27 05:32:21
depth1
children1
last_payout2023-04-03 05:32:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation1,044,473,769,173
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,000,526
net_rshares0
@luvshares ·
@albro, @pars.team<sub>(2/10)</sub> sent you LUV. | <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://crrdlx.websavvy.work/wiki/doku.php?id=start"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/23t7ev3YkMuKFJvDYRawU5ag19uSrFR689gAb1nBXN3TxNFD85vw2WUstaD5nu5ovWYR1.png"></a><a 
    href="https://crrdlx.websavvy.work/wiki/doku.php?id=start" style="text-decoration:none">HiveWiki</a> | <a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/Epvkqd2sQEjZxu93x3A2J2fztKDarTY17qgMbpqWRV14NrfNBA6fu1jxtTkZztjXZKo.gif" target="_blank"><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">NFT</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a>
<center>Made with <a href="https://peakd.com/@luvshares" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKKSsM8HYHY5o4R1UPRdUADTz5QpsKAxSH5uyxsK4k1AJz5wsBqm7TfvA8aSCjE.png"></a> by <a href="https://hive.blog/@crrdlx" target="_blank">crrdlx</a></center>
properties (22)
authorluvshares
permlinkre-5348303149-20230327t053252z
categoryhive-169321
json_metadata"{"app": "beem/0.24.26"}"
created2023-03-27 05:32:51
last_update2023-03-27 05:32:51
depth2
children0
last_payout2023-04-03 05:32:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,263
author_reputation5,651,102,754,153
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,000,538
net_rshares0
@pars.team ·
@tipu curate 10
properties (22)
authorpars.team
permlinkre-albro-2023313t141112617z
categoryhive-169321
json_metadata{"tags":["hive-169321","php","python","programming","neoxian","vby","offtopic","leofinance"],"app":"ecency/3.0.31-vision","format":"markdown+html"}
created2023-03-13 10:41:12
last_update2023-03-13 10:41:12
depth1
children0
last_payout2023-03-20 10:41:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length15
author_reputation1,044,473,769,173
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id121,588,231
net_rshares0
@pizzabot ·
<center>PIZZA! 


PIZZA Holders sent <strong>$PIZZA</strong> tips in this post's comments:
@yisusth<sub>(1/5)</sub> tipped @albro (x1)


<sub>Learn more at https://hive.pizza.</sub></center>
properties (22)
authorpizzabot
permlinkre-language-structure-free-fall-into-20230315t035143z
categoryhive-169321
json_metadata"{"app": "pizzabot"}"
created2023-03-15 03:51:42
last_update2023-03-15 03:51:42
depth1
children0
last_payout2023-03-22 03:51:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length190
author_reputation7,587,719,304,554
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id121,638,737
net_rshares0
@pold1964 ·
!LUV
properties (22)
authorpold1964
permlink6,684,074,775
categoryhive-169321
json_metadata""
created2023-03-27 20:19:39
last_update2023-03-27 20:19:39
depth1
children1
last_payout2023-04-03 20:19:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation-6,766,487,376
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,018,893
net_rshares0
@luvshares ·
@albro, @pold1964<sub>(2/10)</sub> sent you LUV. | <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://crrdlx.websavvy.work/wiki/doku.php?id=start"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/23t7ev3YkMuKFJvDYRawU5ag19uSrFR689gAb1nBXN3TxNFD85vw2WUstaD5nu5ovWYR1.png"></a><a 
    href="https://crrdlx.websavvy.work/wiki/doku.php?id=start" style="text-decoration:none">HiveWiki</a> | <a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/Epvkqd2sQEjZxu93x3A2J2fztKDarTY17qgMbpqWRV14NrfNBA6fu1jxtTkZztjXZKo.gif" target="_blank"><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">NFT</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a>
<center>Made with <a href="https://peakd.com/@luvshares" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKKSsM8HYHY5o4R1UPRdUADTz5QpsKAxSH5uyxsK4k1AJz5wsBqm7TfvA8aSCjE.png"></a> by <a href="https://hive.blog/@crrdlx" target="_blank">crrdlx</a></center>
properties (22)
authorluvshares
permlinkre-6684074775-20230327t202013z
categoryhive-169321
json_metadata"{"app": "beem/0.24.26"}"
created2023-03-27 20:20:12
last_update2023-03-27 20:20:12
depth2
children0
last_payout2023-04-03 20:20:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,262
author_reputation5,651,102,754,153
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,018,912
net_rshares0
@retage1947 ·
!LUV
properties (22)
authorretage1947
permlink6,674,581,590
categoryhive-169321
json_metadata""
created2023-03-27 21:09:48
last_update2023-03-27 21:09:48
depth1
children1
last_payout2023-04-03 21:09:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation0
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,020,218
net_rshares0
@luvshares ·
@albro, @retage1947<sub>(2/10)</sub> sent you LUV. | <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://crrdlx.websavvy.work/wiki/doku.php?id=start"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/23t7ev3YkMuKFJvDYRawU5ag19uSrFR689gAb1nBXN3TxNFD85vw2WUstaD5nu5ovWYR1.png"></a><a 
    href="https://crrdlx.websavvy.work/wiki/doku.php?id=start" style="text-decoration:none">HiveWiki</a> | <a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/Epvkqd2sQEjZxu93x3A2J2fztKDarTY17qgMbpqWRV14NrfNBA6fu1jxtTkZztjXZKo.gif" target="_blank"><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">NFT</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a>
<center>Made with <a href="https://peakd.com/@luvshares" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKKSsM8HYHY5o4R1UPRdUADTz5QpsKAxSH5uyxsK4k1AJz5wsBqm7TfvA8aSCjE.png"></a> by <a href="https://hive.blog/@crrdlx" target="_blank">crrdlx</a></center>
properties (22)
authorluvshares
permlinkre-6674581590-20230327t211020z
categoryhive-169321
json_metadata"{"app": "beem/0.24.26"}"
created2023-03-27 21:10:21
last_update2023-03-27 21:10:21
depth2
children0
last_payout2023-04-03 21:10:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,264
author_reputation5,651,102,754,153
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,020,234
net_rshares0
@rimeturs ·
!LUV
properties (22)
authorrimeturs
permlink4,482,714,229
categoryhive-169321
json_metadata""
created2023-03-27 18:35:51
last_update2023-03-27 18:35:51
depth1
children1
last_payout2023-04-03 18:35:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation-6,774,839,269
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,015,684
net_rshares0
@luvshares ·
@albro, @rimeturs<sub>(2/10)</sub> sent you LUV. | <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://crrdlx.websavvy.work/wiki/doku.php?id=start"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/23t7ev3YkMuKFJvDYRawU5ag19uSrFR689gAb1nBXN3TxNFD85vw2WUstaD5nu5ovWYR1.png"></a><a 
    href="https://crrdlx.websavvy.work/wiki/doku.php?id=start" style="text-decoration:none">HiveWiki</a> | <a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/Epvkqd2sQEjZxu93x3A2J2fztKDarTY17qgMbpqWRV14NrfNBA6fu1jxtTkZztjXZKo.gif" target="_blank"><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">NFT</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a>
<center>Made with <a href="https://peakd.com/@luvshares" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKKSsM8HYHY5o4R1UPRdUADTz5QpsKAxSH5uyxsK4k1AJz5wsBqm7TfvA8aSCjE.png"></a> by <a href="https://hive.blog/@crrdlx" target="_blank">crrdlx</a></center>
properties (22)
authorluvshares
permlinkre-4482714229-20230327t183638z
categoryhive-169321
json_metadata"{"app": "beem/0.24.26"}"
created2023-03-27 18:36:39
last_update2023-03-27 18:36:39
depth2
children0
last_payout2023-04-03 18:36:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,262
author_reputation5,651,102,754,153
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,015,718
net_rshares0
@specculp ·
!LUV
properties (22)
authorspecculp
permlink0093159120
categoryhive-169321
json_metadata""
created2023-03-27 18:17:45
last_update2023-03-27 18:17:45
depth1
children1
last_payout2023-04-03 18:17:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation-6,774,839,269
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,015,148
net_rshares0
@luvshares ·
@albro, @specculp<sub>(2/10)</sub> sent you LUV. | <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://crrdlx.websavvy.work/wiki/doku.php?id=start"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/23t7ev3YkMuKFJvDYRawU5ag19uSrFR689gAb1nBXN3TxNFD85vw2WUstaD5nu5ovWYR1.png"></a><a 
    href="https://crrdlx.websavvy.work/wiki/doku.php?id=start" style="text-decoration:none">HiveWiki</a> | <a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/Epvkqd2sQEjZxu93x3A2J2fztKDarTY17qgMbpqWRV14NrfNBA6fu1jxtTkZztjXZKo.gif" target="_blank"><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">NFT</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a>
<center>Made with <a href="https://peakd.com/@luvshares" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKKSsM8HYHY5o4R1UPRdUADTz5QpsKAxSH5uyxsK4k1AJz5wsBqm7TfvA8aSCjE.png"></a> by <a href="https://hive.blog/@crrdlx" target="_blank">crrdlx</a></center>
properties (22)
authorluvshares
permlinkre-0093159120-20230327t181818z
categoryhive-169321
json_metadata"{"app": "beem/0.24.26"}"
created2023-03-27 18:18:21
last_update2023-03-27 18:18:21
depth2
children0
last_payout2023-04-03 18:18:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,262
author_reputation5,651,102,754,153
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,015,164
net_rshares0
@stemsocial ·
re-albro-language-structure-free-fall-into-20230314t060729427z
<div class='text-justify'> <div class='pull-left'>
 <img src='https://stem.openhive.network/images/stemsocialsupport7.png'> </div>

Thanks for your contribution to the <a href='/trending/hive-196387'>STEMsocial community</a>. Feel free to join us on <a href='https://discord.gg/9c7pKVD'>discord</a> to get to know the rest of us!

Please consider delegating to the @stemsocial account (85% of the curation rewards are returned).

You may also include @stemsocial as a beneficiary of the rewards of this post to get a stronger support.&nbsp;<br />&nbsp;<br />
</div>
properties (22)
authorstemsocial
permlinkre-albro-language-structure-free-fall-into-20230314t060729427z
categoryhive-169321
json_metadata{"app":"STEMsocial"}
created2023-03-14 06:07:30
last_update2023-03-14 06:07:30
depth1
children0
last_payout2023-03-21 06:07:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length565
author_reputation22,920,436,264,631
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id121,612,534
net_rshares0
@uat1994 ·
!LUV
properties (22)
authoruat1994
permlink4,371,255,142
categoryhive-169321
json_metadata""
created2023-03-27 18:53:57
last_update2023-03-27 18:53:57
depth1
children1
last_payout2023-04-03 18:53:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation-6,774,839,269
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,016,225
net_rshares0
@luvshares ·
@albro, @uat1994<sub>(2/10)</sub> sent you LUV. | <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://crrdlx.websavvy.work/wiki/doku.php?id=start"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/23t7ev3YkMuKFJvDYRawU5ag19uSrFR689gAb1nBXN3TxNFD85vw2WUstaD5nu5ovWYR1.png"></a><a 
    href="https://crrdlx.websavvy.work/wiki/doku.php?id=start" style="text-decoration:none">HiveWiki</a> | <a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/Epvkqd2sQEjZxu93x3A2J2fztKDarTY17qgMbpqWRV14NrfNBA6fu1jxtTkZztjXZKo.gif" target="_blank"><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">NFT</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a>
<center>Made with <a href="https://peakd.com/@luvshares" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKKSsM8HYHY5o4R1UPRdUADTz5QpsKAxSH5uyxsK4k1AJz5wsBqm7TfvA8aSCjE.png"></a> by <a href="https://hive.blog/@crrdlx" target="_blank">crrdlx</a></center>
properties (22)
authorluvshares
permlinkre-4371255142-20230327t185426z
categoryhive-169321
json_metadata"{"app": "beem/0.24.26"}"
created2023-03-27 18:54:27
last_update2023-03-27 18:54:27
depth2
children0
last_payout2023-04-03 18:54:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,261
author_reputation5,651,102,754,153
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,016,235
net_rshares0
@ufficany ·
!LUV
properties (22)
authorufficany
permlink0928064705
categoryhive-169321
json_metadata""
created2023-03-27 19:21:00
last_update2023-03-27 19:21:00
depth1
children1
last_payout2023-04-03 19:21:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation-6,774,839,269
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,016,945
net_rshares0
@luvshares ·
@albro, @ufficany<sub>(2/10)</sub> sent you LUV. | <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://crrdlx.websavvy.work/wiki/doku.php?id=start"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/23t7ev3YkMuKFJvDYRawU5ag19uSrFR689gAb1nBXN3TxNFD85vw2WUstaD5nu5ovWYR1.png"></a><a 
    href="https://crrdlx.websavvy.work/wiki/doku.php?id=start" style="text-decoration:none">HiveWiki</a> | <a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/Epvkqd2sQEjZxu93x3A2J2fztKDarTY17qgMbpqWRV14NrfNBA6fu1jxtTkZztjXZKo.gif" target="_blank"><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">NFT</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a>
<center>Made with <a href="https://peakd.com/@luvshares" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKKSsM8HYHY5o4R1UPRdUADTz5QpsKAxSH5uyxsK4k1AJz5wsBqm7TfvA8aSCjE.png"></a> by <a href="https://hive.blog/@crrdlx" target="_blank">crrdlx</a></center>
properties (22)
authorluvshares
permlinkre-0928064705-20230327t192135z
categoryhive-169321
json_metadata"{"app": "beem/0.24.26"}"
created2023-03-27 19:21:36
last_update2023-03-27 19:21:36
depth2
children0
last_payout2023-04-03 19:21:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,262
author_reputation5,651,102,754,153
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,016,960
net_rshares0
@uliterty ·
!LUV
properties (22)
authoruliterty
permlink8,344,355,664
categoryhive-169321
json_metadata""
created2023-03-27 18:58:30
last_update2023-03-27 18:58:30
depth1
children1
last_payout2023-04-03 18:58:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation-6,774,839,269
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,016,321
net_rshares0
@luvshares ·
@albro, @uliterty<sub>(2/10)</sub> sent you LUV. | <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://crrdlx.websavvy.work/wiki/doku.php?id=start"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/23t7ev3YkMuKFJvDYRawU5ag19uSrFR689gAb1nBXN3TxNFD85vw2WUstaD5nu5ovWYR1.png"></a><a 
    href="https://crrdlx.websavvy.work/wiki/doku.php?id=start" style="text-decoration:none">HiveWiki</a> | <a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/Epvkqd2sQEjZxu93x3A2J2fztKDarTY17qgMbpqWRV14NrfNBA6fu1jxtTkZztjXZKo.gif" target="_blank"><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">NFT</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a>
<center>Made with <a href="https://peakd.com/@luvshares" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKKSsM8HYHY5o4R1UPRdUADTz5QpsKAxSH5uyxsK4k1AJz5wsBqm7TfvA8aSCjE.png"></a> by <a href="https://hive.blog/@crrdlx" target="_blank">crrdlx</a></center>
properties (22)
authorluvshares
permlinkre-8344355664-20230327t185858z
categoryhive-169321
json_metadata"{"app": "beem/0.24.26"}"
created2023-03-27 18:58:57
last_update2023-03-27 18:58:57
depth2
children0
last_payout2023-04-03 18:58:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,262
author_reputation5,651,102,754,153
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,016,333
net_rshares0
@uouly60 ·
!LUV
properties (22)
authoruouly60
permlink2,952,139,581
categoryhive-169321
json_metadata""
created2023-03-27 19:57:03
last_update2023-03-27 19:57:03
depth1
children1
last_payout2023-04-03 19:57:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation-6,774,839,269
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,018,128
net_rshares0
@luvshares ·
@albro, @uouly60<sub>(2/10)</sub> sent you LUV. | <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://crrdlx.websavvy.work/wiki/doku.php?id=start"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/23t7ev3YkMuKFJvDYRawU5ag19uSrFR689gAb1nBXN3TxNFD85vw2WUstaD5nu5ovWYR1.png"></a><a 
    href="https://crrdlx.websavvy.work/wiki/doku.php?id=start" style="text-decoration:none">HiveWiki</a> | <a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/Epvkqd2sQEjZxu93x3A2J2fztKDarTY17qgMbpqWRV14NrfNBA6fu1jxtTkZztjXZKo.gif" target="_blank"><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">NFT</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a>
<center>Made with <a href="https://peakd.com/@luvshares" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKKSsM8HYHY5o4R1UPRdUADTz5QpsKAxSH5uyxsK4k1AJz5wsBqm7TfvA8aSCjE.png"></a> by <a href="https://hive.blog/@crrdlx" target="_blank">crrdlx</a></center>
properties (22)
authorluvshares
permlinkre-2952139581-20230327t195732z
categoryhive-169321
json_metadata"{"app": "beem/0.24.26"}"
created2023-03-27 19:57:36
last_update2023-03-27 19:57:36
depth2
children0
last_payout2023-04-03 19:57:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,261
author_reputation5,651,102,754,153
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,018,159
net_rshares0
@upong23 ·
!LUV
properties (22)
authorupong23
permlink8,855,104,175
categoryhive-169321
json_metadata""
created2023-03-27 19:25:27
last_update2023-03-27 19:25:27
depth1
children1
last_payout2023-04-03 19:25:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation-6,774,839,269
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,017,054
net_rshares0
@luvshares ·
@albro, @upong23<sub>(2/10)</sub> sent you LUV. | <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://crrdlx.websavvy.work/wiki/doku.php?id=start"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/23t7ev3YkMuKFJvDYRawU5ag19uSrFR689gAb1nBXN3TxNFD85vw2WUstaD5nu5ovWYR1.png"></a><a 
    href="https://crrdlx.websavvy.work/wiki/doku.php?id=start" style="text-decoration:none">HiveWiki</a> | <a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/Epvkqd2sQEjZxu93x3A2J2fztKDarTY17qgMbpqWRV14NrfNBA6fu1jxtTkZztjXZKo.gif" target="_blank"><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">NFT</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a>
<center>Made with <a href="https://peakd.com/@luvshares" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKKSsM8HYHY5o4R1UPRdUADTz5QpsKAxSH5uyxsK4k1AJz5wsBqm7TfvA8aSCjE.png"></a> by <a href="https://hive.blog/@crrdlx" target="_blank">crrdlx</a></center>
properties (22)
authorluvshares
permlinkre-8855104175-20230327t192557z
categoryhive-169321
json_metadata"{"app": "beem/0.24.26"}"
created2023-03-27 19:25:57
last_update2023-03-27 19:25:57
depth2
children0
last_payout2023-04-03 19:25:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,261
author_reputation5,651,102,754,153
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,017,073
net_rshares0
@wellied1947 ·
!LUV
properties (22)
authorwellied1947
permlink5,623,639,786
categoryhive-169321
json_metadata""
created2023-03-27 21:18:51
last_update2023-03-27 21:18:51
depth1
children1
last_payout2023-04-03 21:18:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation0
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,020,421
net_rshares0
@luvshares ·
@albro, @wellied1947<sub>(2/10)</sub> sent you LUV. | <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://crrdlx.websavvy.work/wiki/doku.php?id=start"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/23t7ev3YkMuKFJvDYRawU5ag19uSrFR689gAb1nBXN3TxNFD85vw2WUstaD5nu5ovWYR1.png"></a><a 
    href="https://crrdlx.websavvy.work/wiki/doku.php?id=start" style="text-decoration:none">HiveWiki</a> | <a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/Epvkqd2sQEjZxu93x3A2J2fztKDarTY17qgMbpqWRV14NrfNBA6fu1jxtTkZztjXZKo.gif" target="_blank"><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">NFT</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a>
<center>Made with <a href="https://peakd.com/@luvshares" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKKSsM8HYHY5o4R1UPRdUADTz5QpsKAxSH5uyxsK4k1AJz5wsBqm7TfvA8aSCjE.png"></a> by <a href="https://hive.blog/@crrdlx" target="_blank">crrdlx</a></center>
properties (22)
authorluvshares
permlinkre-5623639786-20230327t211921z
categoryhive-169321
json_metadata"{"app": "beem/0.24.26"}"
created2023-03-27 21:19:21
last_update2023-03-27 21:19:21
depth2
children0
last_payout2023-04-03 21:19:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,265
author_reputation5,651,102,754,153
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id122,020,444
net_rshares0
@yisusth ·
!LUV
!PIZZA 🍕
properties (22)
authoryisusth
permlinkre-albro-2023314t235135370z
categoryhive-169321
json_metadata{"tags":["hive-169321","php","python","programming","neoxian","vby","offtopic","leofinance"],"app":"ecency/3.0.38-mobile","format":"markdown+html"}
created2023-03-15 03:51:36
last_update2023-03-15 03:51:36
depth1
children1
last_payout2023-03-22 03:51:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length13
author_reputation378,550,332,894,506
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id121,638,734
net_rshares0
@luvshares ·
@albro, @yisusth<sub>(1/10)</sub> sent you LUV. | <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://crrdlx.websavvy.work/wiki/doku.php?id=start"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/23t7ev3YkMuKFJvDYRawU5ag19uSrFR689gAb1nBXN3TxNFD85vw2WUstaD5nu5ovWYR1.png"></a><a 
    href="https://crrdlx.websavvy.work/wiki/doku.php?id=start" style="text-decoration:none">HiveWiki</a> | <a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/Epvkqd2sQEjZxu93x3A2J2fztKDarTY17qgMbpqWRV14NrfNBA6fu1jxtTkZztjXZKo.gif" target="_blank"><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">NFT</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a>
<center>Made with <a href="https://peakd.com/@luvshares" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKKSsM8HYHY5o4R1UPRdUADTz5QpsKAxSH5uyxsK4k1AJz5wsBqm7TfvA8aSCjE.png"></a> by <a href="https://hive.blog/@crrdlx" target="_blank">crrdlx</a></center>
properties (22)
authorluvshares
permlinkre-re-albro-2023314t235135370z-20230315t035155z
categoryhive-169321
json_metadata"{"app": "beem/0.24.26"}"
created2023-03-15 03:51:54
last_update2023-03-15 03:51:54
depth2
children0
last_payout2023-03-22 03:51:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,261
author_reputation5,651,102,754,153
root_title"Language structure: free fall into programming | [ EN / ESP ]"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id121,638,741
net_rshares0