cyberia 3.0.2 → 3.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (182) hide show
  1. package/{.env.production → .env.example} +20 -2
  2. package/.github/workflows/engine-cyberia.cd.yml +41 -10
  3. package/.github/workflows/engine-cyberia.ci.yml +53 -14
  4. package/.github/workflows/ghpkg.ci.yml +1 -1
  5. package/.github/workflows/gitlab.ci.yml +1 -1
  6. package/.github/workflows/hardhat.ci.yml +82 -0
  7. package/.github/workflows/npmpkg.ci.yml +37 -8
  8. package/.github/workflows/publish.ci.yml +5 -5
  9. package/.github/workflows/publish.cyberia.ci.yml +5 -5
  10. package/.github/workflows/pwa-microservices-template-page.cd.yml +3 -3
  11. package/.github/workflows/pwa-microservices-template-test.ci.yml +1 -1
  12. package/.github/workflows/release.cd.yml +3 -2
  13. package/.vscode/extensions.json +9 -8
  14. package/.vscode/settings.json +3 -2
  15. package/CHANGELOG.md +533 -290
  16. package/CLI-HELP.md +79 -53
  17. package/WHITE-PAPER.md +1540 -0
  18. package/bin/build.js +16 -11
  19. package/bin/cyberia.js +959 -8
  20. package/bin/deploy.js +103 -270
  21. package/bin/file.js +2 -1
  22. package/bin/index.js +959 -8
  23. package/bin/vs.js +3 -3
  24. package/conf.js +277 -77
  25. package/deployment.yaml +218 -4
  26. package/hardhat/.env.example +31 -0
  27. package/hardhat/README.md +531 -0
  28. package/hardhat/WHITE-PAPER.md +1540 -0
  29. package/hardhat/contracts/ObjectLayerToken.sol +391 -0
  30. package/hardhat/deployments/.gitkeep +0 -0
  31. package/hardhat/deployments/hardhat-ObjectLayerToken.json +11 -0
  32. package/hardhat/hardhat.config.js +136 -0
  33. package/hardhat/ignition/modules/ObjectLayerToken.js +21 -0
  34. package/hardhat/networks/besu-object-layer.network.json +138 -0
  35. package/hardhat/package-lock.json +7628 -0
  36. package/hardhat/package.json +45 -0
  37. package/hardhat/scripts/deployObjectLayerToken.js +98 -0
  38. package/hardhat/test/ObjectLayerToken.js +590 -0
  39. package/jsdoc.dd-cyberia.json +59 -0
  40. package/jsdoc.json +20 -13
  41. package/manifests/cronjobs/dd-cron/dd-cron-backup.yaml +1 -1
  42. package/manifests/cronjobs/dd-cron/dd-cron-dns.yaml +1 -1
  43. package/manifests/deployment/dd-cyberia-development/deployment.yaml +490 -0
  44. package/manifests/deployment/dd-cyberia-development/proxy.yaml +261 -0
  45. package/manifests/deployment/dd-cyberia-development/pv-pvc.yaml +132 -0
  46. package/manifests/deployment/dd-default-development/deployment.yaml +2 -2
  47. package/manifests/deployment/dd-test-development/deployment.yaml +52 -52
  48. package/manifests/deployment/dd-test-development/proxy.yaml +4 -4
  49. package/manifests/pv-pvc-dd.yaml +1 -1
  50. package/package.json +60 -50
  51. package/proxy.yaml +128 -9
  52. package/pv-pvc.yaml +132 -0
  53. package/scripts/k3s-node-setup.sh +1 -1
  54. package/scripts/ports-ls.sh +2 -0
  55. package/src/api/atlas-sprite-sheet/atlas-sprite-sheet.controller.js +3 -1
  56. package/src/api/atlas-sprite-sheet/atlas-sprite-sheet.model.js +1 -2
  57. package/src/api/atlas-sprite-sheet/atlas-sprite-sheet.service.js +40 -7
  58. package/src/api/document/document.service.js +1 -1
  59. package/src/api/file/file.controller.js +3 -1
  60. package/src/api/file/file.service.js +28 -5
  61. package/src/api/ipfs/ipfs.service.js +2 -2
  62. package/src/api/object-layer/object-layer.controller.js +6 -2
  63. package/src/api/object-layer/object-layer.model.js +67 -21
  64. package/src/api/object-layer/object-layer.router.js +668 -42
  65. package/src/api/object-layer/object-layer.service.js +10 -16
  66. package/src/api/object-layer-render-frames/object-layer-render-frames.model.js +1 -2
  67. package/src/api/user/user.router.js +10 -5
  68. package/src/api/user/user.service.js +7 -7
  69. package/src/cli/baremetal.js +6 -10
  70. package/src/cli/cloud-init.js +0 -3
  71. package/src/cli/db.js +54 -71
  72. package/src/cli/deploy.js +64 -12
  73. package/src/cli/env.js +5 -5
  74. package/src/cli/fs.js +0 -2
  75. package/src/cli/image.js +0 -3
  76. package/src/cli/index.js +41 -13
  77. package/src/cli/monitor.js +5 -6
  78. package/src/cli/repository.js +329 -46
  79. package/src/cli/run.js +210 -122
  80. package/src/cli/secrets.js +1 -3
  81. package/src/cli/ssh.js +1 -1
  82. package/src/client/Itemledger.index.js +1 -959
  83. package/src/client/Underpost.index.js +36 -0
  84. package/src/client/components/core/AgGrid.js +20 -5
  85. package/src/client/components/core/Alert.js +2 -2
  86. package/src/client/components/core/Content.js +22 -3
  87. package/src/client/components/core/Docs.js +30 -6
  88. package/src/client/components/core/FileExplorer.js +71 -4
  89. package/src/client/components/core/Input.js +1 -1
  90. package/src/client/components/core/Modal.js +22 -6
  91. package/src/client/components/core/PublicProfile.js +3 -3
  92. package/src/client/components/core/RichText.js +1 -2
  93. package/src/client/components/core/Router.js +34 -1
  94. package/src/client/components/core/Worker.js +1 -1
  95. package/src/client/components/cryptokoyn/CssCryptokoyn.js +63 -1
  96. package/src/client/components/cyberia/ObjectLayerEngineModal.js +145 -119
  97. package/src/client/components/cyberia/ObjectLayerEngineViewer.js +64 -6
  98. package/src/client/components/cyberia-portal/CommonCyberiaPortal.js +1 -0
  99. package/src/client/components/cyberia-portal/CssCyberiaPortal.js +44 -2
  100. package/src/client/components/cyberia-portal/LogInCyberiaPortal.js +0 -1
  101. package/src/client/components/cyberia-portal/MenuCyberiaPortal.js +64 -2
  102. package/src/client/components/cyberia-portal/RoutesCyberiaPortal.js +1 -0
  103. package/src/client/components/itemledger/CssItemledger.js +62 -0
  104. package/src/client/components/underpost/CommonUnderpost.js +29 -0
  105. package/src/client/components/underpost/CssUnderpost.js +281 -0
  106. package/src/client/components/underpost/CyberpunkBloggerUnderpost.js +879 -0
  107. package/src/client/components/underpost/DocumentSearchProvider.js +448 -0
  108. package/src/client/components/underpost/ElementsUnderpost.js +38 -0
  109. package/src/client/components/underpost/LabGalleryUnderpost.js +82 -0
  110. package/src/client/components/underpost/LogInUnderpost.js +23 -0
  111. package/src/client/components/underpost/LogOutUnderpost.js +15 -0
  112. package/src/client/components/underpost/MenuUnderpost.js +691 -0
  113. package/src/client/components/underpost/RoutesUnderpost.js +47 -0
  114. package/src/client/components/underpost/SettingsUnderpost.js +16 -0
  115. package/src/client/components/underpost/SignUpUnderpost.js +9 -0
  116. package/src/client/components/underpost/SocketIoUnderpost.js +54 -0
  117. package/src/client/components/underpost/TranslateUnderpost.js +10 -0
  118. package/src/client/public/cryptokoyn/assets/logo/base-icon.png +0 -0
  119. package/src/client/public/cryptokoyn/browserconfig.xml +12 -0
  120. package/src/client/public/cryptokoyn/microdata.json +85 -0
  121. package/src/client/public/cryptokoyn/site.webmanifest +57 -0
  122. package/src/client/public/cryptokoyn/sitemap +3 -3
  123. package/src/client/public/default/sitemap +3 -3
  124. package/src/client/public/itemledger/browserconfig.xml +2 -2
  125. package/src/client/public/itemledger/manifest.webmanifest +4 -4
  126. package/src/client/public/itemledger/microdata.json +71 -0
  127. package/src/client/public/itemledger/sitemap +3 -3
  128. package/src/client/public/itemledger/yandex-browser-manifest.json +2 -2
  129. package/src/client/public/test/sitemap +3 -3
  130. package/src/client/services/object-layer/object-layer.management.js +23 -4
  131. package/src/client/ssr/body/404.js +15 -11
  132. package/src/client/ssr/body/500.js +15 -11
  133. package/src/client/ssr/body/SwaggerDarkMode.js +285 -0
  134. package/src/client/ssr/body/UnderpostDefaultSplashScreen.js +83 -0
  135. package/src/client/ssr/head/PwaItemledger.js +60 -0
  136. package/src/client/ssr/head/UnderpostScripts.js +6 -0
  137. package/src/client/ssr/offline/NoNetworkConnection.js +11 -10
  138. package/src/client/ssr/pages/Test.js +11 -10
  139. package/src/client.build.js +0 -3
  140. package/src/client.dev.js +0 -3
  141. package/src/db/DataBaseProvider.js +17 -2
  142. package/src/db/mariadb/MariaDB.js +14 -9
  143. package/src/db/mongo/MongooseDB.js +17 -1
  144. package/src/index.js +1 -1
  145. package/src/proxy.js +0 -3
  146. package/src/runtime/express/Express.js +15 -9
  147. package/src/runtime/lampp/Lampp.js +6 -13
  148. package/src/server/auth.js +12 -14
  149. package/src/server/backup.js +2 -3
  150. package/src/server/besu-genesis-generator.js +1630 -0
  151. package/src/server/client-build-docs.js +126 -17
  152. package/src/server/client-build-live.js +9 -18
  153. package/src/server/client-build.js +203 -75
  154. package/src/server/client-dev-server.js +14 -13
  155. package/src/server/conf.js +376 -164
  156. package/src/server/cron.js +2 -1
  157. package/src/server/dns.js +28 -12
  158. package/src/server/downloader.js +0 -2
  159. package/src/server/logger.js +27 -9
  160. package/src/server/object-layer.js +92 -16
  161. package/src/server/peer.js +0 -2
  162. package/src/server/process.js +1 -50
  163. package/src/server/proxy.js +4 -8
  164. package/src/server/runtime.js +5 -8
  165. package/src/server/semantic-layer-generator.js +1 -0
  166. package/src/server/ssr.js +0 -3
  167. package/src/server/start.js +19 -12
  168. package/src/server/tls.js +0 -2
  169. package/src/server.js +0 -4
  170. package/.env.development +0 -43
  171. package/.env.test +0 -43
  172. package/hardhat/contracts/CryptoKoyn.sol +0 -59
  173. package/hardhat/contracts/ItemLedger.sol +0 -73
  174. package/hardhat/contracts/Lock.sol +0 -34
  175. package/hardhat/hardhat.config.cjs +0 -45
  176. package/hardhat/ignition/modules/Lock.js +0 -18
  177. package/hardhat/networks/cryptokoyn-itemledger.network.json +0 -29
  178. package/hardhat/scripts/deployCryptokoyn.cjs +0 -25
  179. package/hardhat/scripts/deployItemledger.cjs +0 -25
  180. package/hardhat/test/Lock.js +0 -126
  181. package/hardhat/white-paper.md +0 -581
  182. package/white-paper.md +0 -581
@@ -0,0 +1,879 @@
1
+ import { getProxyPath, getQueryParams } from '../core/Router.js';
2
+
3
+ const CyberpunkBloggerUnderpost = {
4
+ Render: async function () {
5
+ let renderBlog = '';
6
+ if (getQueryParams().type === 'blog') {
7
+ renderBlog += html`<style>
8
+ a {
9
+ color: #ff00ff;
10
+ margin: 3px;
11
+ }
12
+ a:hover {
13
+ color: white;
14
+ margin: 3px;
15
+ }
16
+ .modal-contracultura-cyberpunk {
17
+ background: black;
18
+ }
19
+ </style>`;
20
+ }
21
+ let render = html`${renderBlog} `;
22
+
23
+ return html` ${render}
24
+ <b>Metacultural</b><br /><br />
25
+
26
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2019/01/que-es-el-cyberpunk.html>¿Qué es el Cyberpunk?</a><br />
27
+
28
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2019/02/el-manifiesto-cyberpunk-extractos.html>El Manifiesto Cyberpunk, Extractos</a><br />
29
+
30
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2019/12/sobre-el-ser-cyberpunk.html>Sobre el Ser Cyberpunk</a><br />
31
+
32
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2019/03/cyberpunk-ciencia-ficcion-hecha-realidad.html>Cyberpunk, Ciencia Ficción Hecha Realidad</a><br />
33
+
34
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2019/01/cyberpunk-mas-alla-de-matrix.html>Cyberpunk, Mas Alla de Matrix</a><br />
35
+
36
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2018/12/la-contracultura-y-metacultura.html>La Contracultura y Metacultura</a><br />
37
+
38
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2021/01/el-cyberpunk-en-el-tercer-mundo.html>El Cyberpunk en el Tercer Mundo</a><br />
39
+
40
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2019/11/la-pastilla-azul-o-la-pastilla-roja.html>¿La pastilla Azul o la pastilla Roja?</a><br />
41
+
42
+ <br /><b>Cultura Hacker</b><br /><br />
43
+
44
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2019/03/el-decalogo-de-la-cultura-hacker.html>El Decálogo de la Cultura Hacker</a><br />
45
+
46
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2019/07/el-manifiesto-hacker.html>El Manifiesto Hacker</a><br />
47
+
48
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2019/07/el-emblema-hacker.html>El Emblema Hacker</a><br />
49
+
50
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2019/01/que-es-anonymous.html>¿Qué es Anonymous?</a><br />
51
+
52
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2020/03/el-wirepunk.html>El Wirepunk</a><br />
53
+
54
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2021/04/los-caballeros-del-calculo-lambda.html>Los Caballeros del cálculo lambda</a><br />
55
+
56
+ <br /><b>Pospolítica, Punk, y Cibercultura</b><br /><br />
57
+
58
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2020/10/entendiendo-el-fin-de-la-historia.html>Entendiendo el Fin de la Historia</a><br />
59
+
60
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2020/12/el-objetivismo-de-ayn-rand.html>El Objetivismo de Ayn Rand</a><br />
61
+
62
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2019/03/la-pospolitica-el-derecho-ser-diferente.html>La Pospolítica: El derecho a ser Diferente</a><br />
63
+
64
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2019/08/anarquismo-el-renacer-gracias-la.html>Anarquismo el Renacer gracias a la Tecnología</a><br />
65
+
66
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2018/11/los-dos-tipos-de-argumentos.html>Los tipos de argumento Políticamente Incorrecto</a><br />
67
+
68
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2018/10/la-diferencia-entre-cybergoth-cyberpunk.html>La Diferencia entre Cyberpunk, Cybergoth, y Cyberdark</a><br />
69
+
70
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2018/10/que-es-y-de-que-trata-el-manifiesto.html>Qué es y de que trata el Manifiesto Autoderterminista</a><br />
71
+
72
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2020/05/la-zona-temporalmente-autonoma.html>La Zona Temporalmente Autónoma</a><br />
73
+
74
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2020/08/los-tecnopaganos.html>Los TecnoPaganos</a><br />
75
+
76
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2020/04/la-fundacion-scp.html>La Fundación SCP</a><br />
77
+
78
+ <br /><b>Mundos Virtuales</b><br /><br />
79
+
80
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2019/02/declaracion-de-independencia-del.html>Declaración de Independencia del Ciberespacio</a><br />
81
+
82
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2018/12/los-mundos-virtuales.html>¿Qué son los Mundos Virtuales?</a><br />
83
+
84
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2019/06/que-son-los-metaversos.html>¿Qué son los Metaversos?</a><br />
85
+
86
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2021/03/ge-stell-simulacro-y-matrix.html>Ge-stell Simulacro y Matrix</a><br />
87
+
88
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2019/07/la-llegada-del-tercer-vehiculo.html>La llegada del Tercer Vehículo</a><br />
89
+
90
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2020/02/los-dos-mundos-serial-experiments-lain.html>Los Dos Mundos Serial Experiments Lain</a><br />
91
+
92
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2019/08/las-drogas-virtuales.html>Las Drogas Virtuales</a><br />
93
+
94
+
95
+
96
+ <br /><b>Información y Economía</b><br /><br />
97
+
98
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2018/10/los-principios-del-anarco-capitalismo.html>Los principios del Anarco Capitalismo</a><br />
99
+
100
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2020/08/cypherpunks-el-manifiesto.html>Cypherpunks: El Manifiesto CriptoAnarquista</a><br />
101
+
102
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2019/02/por-que-libre-acceso-la-informacion.html>¿Por Qué Libre acceso a la Información?</a><br />
103
+
104
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2018/12/la-informacion-quiere-ser-libre.html>La información quiere ser Libre</a><br />
105
+
106
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2019/01/julian-assange-antiguo-hacker-de-gran.html>Assange, el Libre Mercado y la Información</a><br />
107
+
108
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2018/10/por-que-las-criptomonedas-tienen-valor.html>¿Por qué las criptomonedas tienen valor?</a><br />
109
+
110
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2019/02/bitocoin-el-valor-del-hash-y-mineria.html>Bitcoin, El valor del Hash y Minería Domestica</a><br /><br />
111
+
112
+ <b>Ingeniería Social</b><br /><br />
113
+
114
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2018/11/que-son-las-armas-silenciosas.html>
115
+ ¿Qué son las "Armas Silenciosas"?</a><br />
116
+
117
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2018/11/que-es-el-utero-artificial.html>¿Qué es el "útero artificial"?</a><br />
118
+
119
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2019/11/que-es-la-noosfera-la-nueva-sociedad-red.html>¿Qué es la Noosfera? La nueva Sociedad Red</a><br />
120
+
121
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2020/09/la-sociedad-del-cansancio.html>La Sociedad del Cansancio</a><br />
122
+
123
+ <br /><b>Transhumanismo e Inteligencia Artificial</b><br /><br />
124
+
125
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2018/10/los-beneficios-del-transhumanismo.html>Los beneficios del Transhumanismo</a><br />
126
+
127
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2019/03/biohacking-el-primer-paso-hacia-el.html>Biohacking, el primer paso hacia el Transhumanismo</a><br />
128
+
129
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2021/06/la-revolucion-artefactual.html>La Revolución Artefactual</a><br />
130
+
131
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2020/11/dataismo-transhumanismo-y-metafisica-de.html>Dataismo, transhumanismo, y metafísica de la subjetividad.</a><br />
132
+
133
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2020/06/la-conciencia-de-la-maquina.html>La Conciencia de la Máquina</a><br />
134
+
135
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2019/06/que-es-la-singularidad-tecnologica.html>¿Qué es la Singularidad Tecnológica?</a><br />
136
+
137
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2019/06/que-es-la-hipotesis-de-simulacion.html>¿Qué es la Hipótesis de Simulación?</a><br />
138
+
139
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2019/08/el-futuro-de-la-guerra-inteligencia.html
140
+ >El Futuro de la Guerra: Inteligencia Artificial Militar</a><br />
141
+
142
+ <br />
143
+
144
+
145
+ <b>Literatura, Música, y Audio Visual</b><br /><br />
146
+
147
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2019/02/distoxia.html>DISTOXIA</a><br />
148
+
149
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2020/09/vigilados-todos-por-las-maquinas-de.html>Vigilados todos por las Máquinas de Amor y Gracia</a><br />
150
+
151
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2019/12/como-lagrimas-bajo-la-lluvia.html>Como Lagrimas en la Lluvia</a><br />
152
+
153
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2019/07/video-cortos-ambiente-y-estetica.html>Vídeo Cortos Ambiente y Estética Cyberpunk</a><br />
154
+
155
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2019/07/las-tres-caras-del-miedo.html>Las Tres Caras del Miedo</a><br />
156
+
157
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2019/01/netrunners.html>NetRunners</a><br />
158
+
159
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2019/01/vivir-cyberpunk.html>Vivir Cyberpunk</a><br />
160
+
161
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2020/09/travis.html>Travis</a><br />
162
+
163
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2020/09/distopia.html>Distopía</a><br />
164
+
165
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2018/12/cyberia-cafe-club.html>Cyberia, Cafe & Club</a><br />
166
+
167
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2018/12/encrucijada-en-el-cielo.html>Encrucijada en el Cielo</a><br />
168
+
169
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2018/12/las-manos-de-orlac.html>Las Manos de Orlac</a><br />
170
+
171
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2019/08/la-magia-del-caos.html>La Magia del Caos</a><br />
172
+
173
+ <b> > </b><a target='_top' href=https://contraculturacyberpunk.blogspot.com/2019/08/paranoid-android.html>Paranoid Android</a><br /><br />
174
+ <!--
175
+
176
+ <b>Blogs de Interes</b><br /><br />
177
+
178
+
179
+ <b> > </b><a target='_top' href=https://cyberpunkdatabase.net/>CyberpunkDataBase.net</a><br />
180
+ <b> > </b><a target='_top' href=https://cybermedios.org/>cybermedios.org</a><br />
181
+ <b> > </b><a target='_top' href=https://sayko2k20.wordpress.com/>Sayko2k20</a><br />
182
+ <b> > </b><a target='_top' href=http://archivocyberpunk.blogspot.com/>Archivo Cyberpunk</a><br />
183
+ <b> > </b><a target='_top' href=https://tantractfall.blogspot.com/>tantractfall.blogspot.com</a><br />
184
+ <b> > </b><a target='_top' href=https://www.despuesdelcyberpunk.com/>despuesDelCyberpunk.com</a><br />
185
+ <b> > </b><a target='_top' href=http://www.quemandocromo.es/>QuemandoCromo.es</a><br />
186
+ <b> > </b><a target='_top' href=https://8kun.top/cyber/index.html>8kun.top</a><br />
187
+ <b> > </b><a target='_top' href=https://lainers.foroactivo.com/>lainers.foroactivo.com</a><br />
188
+ <b> > </b><a target='_top' href=https://cyberia.club/>cyberia.club</a><br />
189
+ <b> > </b><a target='_top' href=https://revista-lain.neocities.org/>revista-lain.neocities.org</a><br />
190
+ <b> > </b><a target='_top' href=https://plex.neocities.org/>plex.neocities.org</a><br />
191
+ <b> > </b><a target='_top' href=http://media.hyperreal.org/cyberia/>media.hyperreal.org</a><br />
192
+ <b> > </b><a target='_top' href=https://cybercowboy.de/>cybercowboy.de</a><br />
193
+ <b> > </b><a target='_top' href=http://wirepunk.space/>wirepunk.space</a><br />
194
+ <b> > </b><a target='_top' href=https://rebelion.digital/>rebelion.digital</a><br />
195
+ <b> > </b><a target='_top' href=https://filth.com.mx/>filth.com.mx</a><br />
196
+ <b> > </b><a target='_top' href=https://cyberpunk-life.neocities.org/>cyberpunk-life.neocities.org</a><br />
197
+ <b> > </b><a target='_top' href=https://hispagatos.org/>hispagatos.org</a><br />
198
+ <b> > </b><a target='_top' href=https://imaginacionalpoder77.blogspot.com/>imaginacionalpoder77.blogspot.com</a><br />
199
+ <b> > </b><a target='_top' href=http://www.habitantesdelcaos.com/>habitantesdelcaos.com</a><br />
200
+ <b> > </b><a target='_top' href=http://scp-es.com/>Fundación SCP</a><br />
201
+ <b> > </b><a target='_top' href=http://www.rinconsolidario.org/linux>RinconSolidario.org</a><br />
202
+ <b> > </b><a target='_top' href=https://wp.sindominio.net/>SinDominio.net</a><br />
203
+ <b> > </b><a target='_top' href=https://www.neonlights.top/>NeonLights</a><br />
204
+ <b> > </b><a target='_top' href=https://wired-7.org/>wired-7.org</a><br />
205
+ <b> > </b><a target='_top' href=http://futurocaduco.blogspot.com/>FuturoCaduco</a><br />
206
+ <b> > </b><a target='_top' href=http://syti.net/>SYTI.net</a><br />
207
+ <b> > </b><a target='_top' href=http://project.cyberpunk.ru/links.html>ProjectCyberpunk.ru</a><br />
208
+ <b> > </b><a target='_top' href=https://ociointeligente.wordpress.com/>OcioInteligente.Wordpress.com</a><br />
209
+ <b> > </b><a target='_top' href=http://www.escalofrio.com/>Escalofrio.com</a><br />
210
+ <b> > </b><a target='_top' href=http://monje.tripod.com/>Monje.Tripod.com</a><br />
211
+ <b> > </b><a target='_top' href=https://fauux.neocities.org/>Fauux.Neocities.org</a><br />
212
+ <b> > </b><a target='_top' href=https://cyberpus2077.blogspot.com/>cyberpus2077.blogspot.com</a><br />
213
+ <b> > </b><a target='_top' href=https://www.relatospulp.com/>RelatosPulp</a><br /><br />
214
+
215
+
216
+
217
+ <b>PDF Cyberpunk</b><br /><br />
218
+
219
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/interes/El_Manifiesto_Cyberpunk.pdf'/>El Manifiesto Cyberpunk</a><br />
220
+
221
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/cyberpunk/nuestro-oscuro-futuro.pdf'/>Nuestro Oscuro Futuro</a><br />
222
+
223
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/cyberpunk/cyberpunk-y-necropolitica.pdf'/>Cyberpunk y Necropolitica</a><br />
224
+
225
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/cyberpunk/Cypherpunk-Julian-Assange.pdf'/>Cypherpunks Julian Assange</a><br />
226
+
227
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/interes/Moda_Cibernetica_y_literatura_Cyberpunk.pdf'/>Moda Cibernetica y literatura Cyberpunk</a><br />
228
+
229
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/interes/Senda_de_la_Tecnomancia.pdf'/>Senda de la Tecnomancia</a><br />
230
+
231
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/interes/Cyberpunk_Critica_a_la_Informatica.pdf'/>Cyberpunk Critica a la Informatica</a><br />
232
+
233
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/interes/Cyberpunk_Mas_alla_de_la_matrix.pdf'/>Cyberpunk Mas alla de la matrix</a><br />
234
+
235
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/interes/Futurismo_negro_y_cyberpunk.pdf'/>Futurismo negro y cyberpunk</a><br />
236
+
237
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/interes/Distopia_Musical_La Musica_en_el_Cyberpunk.pdf'/>Distopia Musical La Musica en el Cyberpunk</a><br />
238
+
239
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/cyberpunk/Apuntes%20para%20una%20poetica%20del%20subgenero.pdf'/>Apuntes del Subgenero Cyberpunk</a><br />
240
+
241
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/cyberpunk/analisis%20sleep%20dealer.pdf'/>Análisis Sleep Dealer</a><br />
242
+
243
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/cyberpunk/analisis%20ygdrasil.pdf'/>Análisis Ygdrasil</a><br />
244
+
245
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/cyberpunk/representacion%20del%20cuerpo%20futuro.pdf'/>Representación del Cuerpo del Futuro</a><br />
246
+
247
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/cyberpunk/sentido%20del%20cyberpunk%20en%20el%20cine.pdf'/>Sentido del Cyberpunk en el Cine</a><br />
248
+
249
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/cy3/integracion-hombre-maquina-ciencia-ficcion.pdf'/>Integración Hombre Maquina en la Ciencia Ficción</a><br />
250
+
251
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/cyberpunk/si%20el%20computador%20funcionara%20como%20un%20humano.pdf'/>Si el Computador Funciona como un Humano</a><br />
252
+
253
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/pos2/Nueromante%20el%20Futuro%20que%20llego.pdf'/>Neuromante el Futuro que Llego</a><br />
254
+
255
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/cyberpunk/cyberpunk-japones.pdf'/>Cyberpunk Japones</a><br />
256
+
257
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/cy3/japon-de-los-cyborgs-tecno-orientalismo.pdf'/>Japón de los Cyborgs Tecno-Orientalismo</a><br />
258
+
259
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/cyberpunk/la-estetica-cyberpunk.pdf'/>La Estetica Cyberpunk</a><br />
260
+
261
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/cyberpunk/del-cyberpunk-al-vaporwave.pdf'/>Del Cyberpunk al Vaporwave</a><br />
262
+
263
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/cyberpunk/cyberpunk-deconstruccion.pdf'/>Cyberpunk Deconstruccion</a><br />
264
+
265
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/cy2/arte-online.pdf'/>El Arte On-Line</a><br />
266
+
267
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/cy2/cibercultura-en-el-final-del-siglo.pdf'/>Velocidad de escape - Mark Dery</a><br />
268
+
269
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/cy2/cibercultura-y-tecnologia-digital.pdf'/>Cibercultura y Tecnología Digital</a><br />
270
+
271
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/cy2/Hackstory.es-Merce-Molist-Ferrer.pdf'/>Hackstory.es Merce Molist Ferrer</a><br />
272
+
273
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/cy2/Nomadismos_Tecnologicos.pdf'/>Nomadismo Tecnologico</a><br />
274
+
275
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/cy2/nuevas-narrativas-virtuales.pdf'/>Nuevas Narrativas Virtuales</a><br />
276
+
277
+
278
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/cy2/WIRED-WEIRD-La-volatilización-del-cuerpo.pdf'/>
279
+ WIRED WEIRD La volatilización del cuerpo</a><br />
280
+
281
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/11-09-21/cyberpunk/cyberpunk-carne-y-maquina.pdf'/>
282
+ Cyberpunk Carne y Maquina
283
+ </a><br />
284
+
285
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/11-09-21/cyberpunk/diseno-grafico-y-cyberpunk.pdf'/>
286
+ Diseño Grafico y Cyberpunk
287
+ </a><br />
288
+
289
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/11-09-21/cyberpunk/drogas-y-cyberpunk-latinoamericano.pdf'/>
290
+ Drogas y Cyberpunk Latinoamericano
291
+ </a><br />
292
+
293
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/11-09-21/cyberpunk/Mirrorshades-Una-antologia-ciberpunk.pdf'/>
294
+ Mirrorshades Una antologia Cyberpunk
295
+ </a><br />
296
+
297
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/11-09-21/cyberpunk/snow_crash_analisis_identidad_posmoderna.pdf'/>
298
+ Snow Crash analisis identidad Posmoderna
299
+ </a><br />
300
+
301
+ <br /><b>PDF PosModernidad</b><br />
302
+
303
+ <br />Pospolítica <br /><br />
304
+
305
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/interes/El_Fin_De_la_Historia.pdf'/>El Fin de la Historia F. Fukuyama</a><br />
306
+
307
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/interes/Argumentos_contra_la_procreacion.pdf'/>Argumentos contra la procreación</a><br />
308
+
309
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/cy3/individulismo-modernidad-liquida.pdf'/>Individualismo y Modernidad Liquida</a><br />
310
+
311
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/cy3/la-socieadad-del-cansancio_.pdf'/>Byung-Chul La Sociedad del Cansancio</a><br />
312
+
313
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/interes/Armas_silenciosas_para_guerras_tranquilas.pdf'/>Armas silenciosas para guerras tranquilas</a><br />
314
+
315
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/posmodernidad/falacia%20del%20todo.pdf'/>La Falacia del Todo</a><br />
316
+
317
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/posmodernidad/la-condicion-de-la-posmodernidad.pdf'/>La Condición de la Posmodernidad</a><br />
318
+
319
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/posmodernidad/condicion_postmoderma-sobre-el-saber.pdf'/>Informe sobre el Saber</a><br />
320
+
321
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/posmodernidad/pillku%20amantes%20de%20la%20libertad.pdf'/>Pillku Amantes de la Libertad</a><br />
322
+
323
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/pos2/La%20Ciudad%20Sobre%20Expuesta.pdf'/>La Ciudad Sobre Expuesta</a><br />
324
+
325
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/pos2/Puertas-y-umbrales-de-la-ciudad.pdf'/>Puertas y Umbrales de la Ciudad</a><br />
326
+
327
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/pos2/Tercera%20Piel%20Sociedad%20de%20la%20Imagen%20y%20la%20Conquista%20del%20Alma.pdf'/>Piel Sociedad de la Imagen y la conquista del Alma</a><br />
328
+
329
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/pos2/Virilio-Paul-El-cibermundo-la-politica-de-lo-peor.pdf'/>La Política de lo Peor</a><br />
330
+
331
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/pos2/Virilio_Paul_La_Maquina_de_Vision.pdf'/>La Maquina de Visión</a><br />
332
+
333
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/pos2/velocidad%20tecnologia%20sociedad%20y%20poder.pdf'/>Velocidad Tecnología Sociedad y Poder</a><br />
334
+
335
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/hedo/La-estructura-consecuencialista-del-utilitarismo.pdf'/>La Estructura Consecuencialista del Utilitarismo</a><br />
336
+
337
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/hedo/Utilitarismo-y-filosofia-politica-moderna.pdf'/>Utilitarismo y Filosofía Política Moderna</a><br />
338
+
339
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/anarquismo/anarquismo-una-utopia-que-renace.pdf'/> Anarquismo una Utopía que Renace</a><br />
340
+
341
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/cy3/hackers-software-libre-y-anarquismo.pdf'/>Hackers Software Libre y Anarquismo</a><br />
342
+
343
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/anarquismo/liberalismo-libertario-y-derechos-sociales.pdf'/> Liberalismo Libertario y Derechos Sociales</a><br />
344
+
345
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/posverdad/el-mundo-de-la-posverdad.pdf'/> El Mundo de la Posverdad</a><br />
346
+
347
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/posverdad/en-los-pasillos-de-la-posverdad.pdf'/> En los pasillos de la Posverdad</a><br />
348
+
349
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/posverdad/informacion-liquida-en-la-era-de-la-posverdad.pdf'/> Información Liquida en la era de la Posverdad</a><br />
350
+
351
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/posverdad/mecanismos-de-la-posverdad.pdf'/> Mecanismos de la Posverdad</a><br />
352
+
353
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/posverdad/posverdad-en-la-comunicacion.pdf'/> Posverdad en la Comunicación</a><br />
354
+
355
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/posverdad/posverdad-seguridad-y-defensa.pdf'/> Posverdad Seguridad y Defensa</a><br />
356
+
357
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/posverdad/relidad-y-percepcion-era-de-la-posverdad.pdf'/> Realidad y Percepción en la era de la Posverdad</a><br />
358
+
359
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/posmodernidad/imperio-contracultural-del-rock-a-la-posmodernidad.pdf'/>Imperio Contracultural del Rock a la Posmodernidad</a><br />
360
+
361
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/posmodernidad/contracultura-en-la-era-del-vacio.pdf'/>Contracultura en la era del Vacio</a><br />
362
+
363
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/mili/derecho-a-la-libertad-legalizacion-de-drogas.pdf'/>Libertad y Legalización de las Drogas</a><br />
364
+
365
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/mili/el-problema-de-las-drogas-prohibicion-y-libertad.pdf'/>El Problema de las Drogas: Prohibición y Libertad</a><br />
366
+
367
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/mili/etica-militar-y-robotica.pdf'/>Ética Militar y Robótica</a><br />
368
+
369
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/mili/inteligencia-artificial-y-poder.pdf'/>Inteligencia Artificial y Poder</a><br />
370
+
371
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/anarquismo/PosAnarquismo-Anarquismo-en-movimiento.pdf'/>PosAnarquismo Anarquismo en movimiento</a><br />
372
+
373
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/posmodernidad/necropolitica-gobierno-privado-indirecto.pdf'/>Necropolítica Gobierno Privado Indirecto</a><br />
374
+
375
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/posmodernidad/Armas-de-destruccion-matematica.pdf'/>Armas de destrucción matemática Cathy O'Neil</a><br />
376
+
377
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/posmodernidad/La-algoritmificacion-de-nuestra-convivencia.pdf'/>La algoritmificación de nuestra convivencia</a><br />
378
+
379
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/cyberpunk/despotismo-tecnificado.pdf'/>El Despotismo Tecnificado</a><br />
380
+
381
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/cyberpunk/assange-criptopunks.pdf'/>Assange Criptopunks</a><br />
382
+
383
+ <b> > </b><a target='_top'
384
+ href='https://underpost.net/ir/pdf/11-09-21/pospolitica/imaginarios-de-la-muerte-en-la-posmodernidad.pdf'>
385
+ Imaginarios de la Muerte En la Posmodernidad</a><br />
386
+
387
+ <b> > </b><a target='_top'
388
+ href='https://underpost.net/ir/pdf/11-09-21/pospolitica/Julian_Assange_Periodismo_cientifico_y_etica_hacker.pdf'>
389
+ Julian Assange Periodismo cientifico y etica hacker</a><br />
390
+
391
+ <b> > </b><a target='_top'
392
+ href='https://underpost.net/ir/pdf/11-09-21/pospolitica/La-sociedad-del-riesgo-hacia-una-nueva-modernidad-BECK.pdf'>
393
+ La sociedad de riesgo hacia una nueva modernidad BECK</a><br />
394
+
395
+ <b> > </b><a target='_top'
396
+ href='https://underpost.net/ir/pdf/11-09-21/pospolitica/posmodernidad-espacio-urbano.pdf'>
397
+ Posmodernidad y Espacio Urbano</a><br />
398
+
399
+ <b> > </b><a target='_top'
400
+ href='https://underpost.net/ir/pdf/11-09-21/pospolitica/posmodernidad-tecnologia-y-comunicacion-humana.pdf'>
401
+ Posmodernidad Tecnologia y comunicación Humana</a><br />
402
+
403
+ <b> > </b><a target='_top'
404
+ href='https://underpost.net/ir/pdf/11-09-21/pospolitica/sociologia-y-sociedad-de-riesgo.pdf'>
405
+ Sociologia y sociedad de riesgo</a><br />
406
+
407
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/02-11-2021/convergencia_tecno_social.pdf'>
408
+ Convergencia Tecno Social </a><br />
409
+
410
+ <b> > </b><a target='_top'
411
+ href='https://underpost.net/ir/pdf/02-11-2021/El_retorno_del_amo_en_tiempos_de_la_pospolítica.pdf'>
412
+ El retorno del amo en tiempos de la pospolítica </a><br />
413
+
414
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/06-09-2022/pospolitica/El_Estado_Post_Democratico_Extrapolitica_y_transhumanismo.pdf'>
415
+ Extrapolítica y Transhumanismo - El estado postdemocrático
416
+ </a><br />
417
+
418
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/06-09-2022/pospolitica/hiperinformacion-y-miedo-en-la-sociedad-del-conocimiento.pdf'>
419
+ Miedo he hiperinformación en la sociedad del conocimiento
420
+ </a><br />
421
+
422
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/06-09-2022/pospolitica/Teoria_Extrapolitica_y_Postpoliticismo.pdf'>
423
+ Teoría Extrapolítica y Postpoliticismo
424
+ </a><br />
425
+
426
+ <br /> Cibernética <br /><br />
427
+
428
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/cibernetica/introduccion-al-pensamiento-sistemico.pdf'/>Introducción al pensamiento Sistémico</a><br />
429
+
430
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/cibernetica/la-quinta-disciplina-pensamiento-sistemico.pdf'/>La Quinta Disciplina Pensamiento Sistémico</a><br />
431
+
432
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/interes/ciborg_coalicion_contracultural.pdf'/>Ciborg coalicion contracultural</a><br />
433
+
434
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/interes/El_Movimiento_Cibernetico.pdf'/>El Movimiento Cibernetico</a><br />
435
+
436
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/posmodernidad/ciberciudadanias.pdf'/>Ciberciudadanias</a><br />
437
+
438
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/posmodernidad/internet%20hackers%20y%20software%20libre.pdf'/>Internet, Hackers, y Software Libre</a><br />
439
+
440
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/posmodernidad/techno%20rebelde%20musica%20electronica.pdf'/>Techno Rebelde Un Siglo de Música Electrónica</a><br />
441
+
442
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/cy3/Internet-negro-el-lado-oscuro-de-la-red.pdf'/>Internet Negro el lado Oscuro de la Red</a><br />
443
+
444
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/cyberpunk/bienvenidos-a-cyberia-cibercultura.pdf'/>Bienvenidos a Cyberia Cibercultura</a><br />
445
+
446
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/cy3/el-lector-en-el-ciberespacio.pdf'/>El Lector en el Ciberespacio</a><br />
447
+
448
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/cyberpunk/de-cyborg-a_mutante-tiempo-y-espacio-en-cyberia.pdf'/>De Cyborg a Mutante. Tiempo y Espacio en Cyberia</a><br />
449
+
450
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/11-09-21/cibernetica/hipertrofia-tecnocientifica.pdf'/>Hipertrofia Tecnocientifica</a><br />
451
+
452
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/11-09-21/cibernetica/posverdad-y-teoria-de-sistemas.pdf'/>Posverdad Y Teoria de Sistemas</a><br />
453
+
454
+ <br />Psicología <br /><br />
455
+
456
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/interes/27_Personajes_en_busca_del_ser.pdf'/>27 Personajes en busca del ser</a><br />
457
+
458
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/cyberpunk/psicologia-oscura-s-l-moore.pdf'/>Psicologia Oscura S.L. Moore</a><br />
459
+
460
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/cyberpunk/la-llave-maestra.pdf'/>La Llave Maestra Autoconocimiento</a><br />
461
+
462
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/pos2/LA%20GLOBALIZACION%20DEL%20MIEDO.pdf'/>La Globalización del Miedo</a><br />
463
+
464
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/pos2/Nardone%20Mas%20alla%20del%20miedo.pdf'/>Nardone Mas alla del Miedo</a><br />
465
+
466
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/pos2/psicologia_de_la_adicciones.pdf'/>Psicología de las Adicciones</a><br />
467
+
468
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/cy3/cibercriminologia-contemporanea.pdf'/>Cibercriminologia Contemporanea</a><br />
469
+
470
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/dualismo/dualismo-cartesiano-el-cuerpo-como-maquina.pdf'/>Dualismo Cartesiano El Cuerpo como Maquina</a><br />
471
+
472
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/dualismo/dualismo-mente-cuerpo-humano-animal-cartesiano.pdf'/>Dualismo Mente-Cuerpo Humano-Animal Cartesiano</a><br />
473
+
474
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/dualismo/el-eterno-dualismo-antropologico-roto-por-lain.pdf'/>El eterno Dualismo Antropológico roto por Lain</a><br />
475
+
476
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/dualismo/monismo-duallismo-y-pluralismo-naturaleza-y-libertad.pdf'/>Monismo Dualismo Pluralismo y Libertad</a><br />
477
+
478
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/dualismo/pulsion-de-muerte.pdf'/>La Pulsión de Muerte</a><br />
479
+
480
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/cy2/La-psicologia-de-la-mentira.pdf'/>La Psicología de la Mentira</a><br />
481
+
482
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/cy2/Psicologia_criminal.pdf'/>Psicología Criminal</a><br />
483
+
484
+
485
+ <br />Filosofía <br /><br />
486
+
487
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/06-09-2022/filosofia/Tres-Iniciados-El-Kybalion.pdf'>
488
+ Tres Iniciados - El Kybalion
489
+ </a><br />
490
+
491
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/interes/El_Manifiesto_Nihilista.pdf'/>El Manifiesto Nihilista</a><br />
492
+
493
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/interes/Manifiesto_Anticivilizacion.pdf'/>El Manifiesto Anticivilizacion</a><br />
494
+
495
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/cy3/manifiesto-aceleracionista.pdf'/>El Manifiesto Aceleracionista</a><br />
496
+
497
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/posmodernidad/el-fin-de-la-modernidad-nihilismo-y-hermeneutica.pdf'/>Fin de la Modernidad Nihilismo y Hermenéutica</a><br />
498
+
499
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/cy3/hackers-filosofia.pdf'/>Hackers Filosofía</a><br />
500
+
501
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/dualismo/Manifiesto-del-Unabomber.pdf'/>Manifiesto Unabomber Sociedad Industrial y su Futuro</a><br />
502
+
503
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/06-09-2022/filosofia/McLuhan_Marshall_Fiore_Quentin_El_medio_es_el_masaje_Un_inventario_de_efectos.pdf'>
504
+ McLuhan Marshall Fiore Quentin - El medio es el masaje
505
+ </a><br />
506
+
507
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/cyberpunk/la-zona-temporalmente-autonoma-hakim-bey.pdf'/>Zona Temporalmente Autónoma Hakim Bey</a><br />
508
+
509
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/cyberpunk/caos.pdf'/>Caos Hakim Bey</a><br />
510
+
511
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/cyberpunk/inmediatismo.pdf'/>Inmediatismo Hakim Bey</a><br />
512
+
513
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/hedo/Del-Hedonismo-y-las-felicidades-efimeras.pdf'/>Del Hedonismo y las Felicidades efímeras</a><br />
514
+
515
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/hedo/Etica-Hedonista-o-el-Arte-del-Buen-Vivir.pdf'/>Ética Hedonista o el Arte del Buen Vivir</a><br />
516
+
517
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/hedo/Hedonismo-y-Fractura-de-la-Modernidad.pdf'/>Hedonismo Y Fractura de la Modernidad</a><br />
518
+
519
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/hedo/La-Cultura-del-Narcisismo.pdf'/>La Cultura del Narcisismo</a><br />
520
+
521
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/posmodernidad/la-sabiduria-estoica.pdf'/>La Sabiduría Estoica</a><br />
522
+
523
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/posmodernidad/el-sabio-estoico-examen-de-la-virtud.pdf'/>El Sabio Estoico Examen de la Virtud</a><br />
524
+
525
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/hedo/La-negacion-de-los-valores-y-el-nihilismo.pdf'/>La Negación de los Valores y el Nihilismo</a><br />
526
+
527
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/transhumanismo/transhumanismo-concepciones-alcances-y-tendencias.pdf'/>Transhumanismo Concepciones Alcances y Tendencias</a><br />
528
+
529
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/transhumanismo/transhumanismo-propuestas-y-limites.pdf'/>Transhumanismo Propuestas y Limites</a><br />
530
+
531
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/transhumanismo/transhumanismo-y-computacion-RAY-KURZWEIL.pdf'/>Transhumanismo y Computación Ray Kurzweil</a><br />
532
+
533
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/transhumanismo/transhumanismo-y-singularidad-tecnologica.pdf'/>Transhumanismo y Singularidad Tecnológica</a><br />
534
+
535
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/transhumanismo/trnshumanismo-libertad-he-identidad-humana.pdf'/>Transhumanismo Libertad e Identidad Humana</a><br />
536
+
537
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/cy2/tecno-biopoder.pdf'/>Tecno BioPoder</a><br />
538
+
539
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/cy2/Biopunk-y-etica-DIYBio.pdf'/>BioPunk y Ética DIYBio</a><br />
540
+
541
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/11-09-21/filosofia/AION-KHRONOS-ZEITLICHKEIT.pdf'/>
542
+ AION KHRONOS ZEITLICHKEIT
543
+ </a><br />
544
+
545
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/11-09-21/filosofia/transhumanismo-nietzscheano.pdf'/>
546
+ Transhumanismo Nietzscheano
547
+ </a><br />
548
+
549
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/02-11-2021/jack_donovan_el_camino_de_los_hombres.pdf'>
550
+ Jack Donovan - El Camino de los Hombres </a><br />
551
+
552
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/02-11-2021/como_el_mundo_se_convirtio_en_una_fabula.pdf'>
553
+ Como el mundo se convirtio en una Fabula
554
+ </a><br />
555
+
556
+
557
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/21-12-2021/antropologia-humano-animal-cyborg.pdf'>
558
+ Antropologia Humano Animal Cyborg
559
+ </a><br />
560
+
561
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/21-12-2021/aproximacion-general-al-transhumanismo.pdf'>
562
+ Aproximación General al Transhumanismo
563
+ </a><br />
564
+
565
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/21-12-2021/bioetica-neuroetica-libertad-justicia.pdf'>
566
+ Bioética Neuroética Libertad y Justicia
567
+ </a><br />
568
+
569
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/21-12-2021/desafios-bioeticos-de-las-tecnologias-emergentes.pdf'>
570
+ DesafÍos Bioéticos de las Tecnologias Emergentes
571
+ </a><br />
572
+
573
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/21-12-2021/identitas.pdf'>
574
+ Identitas
575
+ </a><br />
576
+
577
+
578
+
579
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/23-03-2022/actitud-ezquidoanalitica-ezquisoanalisis.pdf'/>Actitud esquizoanálitica. Esquizoanálisis</a><br />
580
+
581
+
582
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/23-03-2022/cuerpo-humano-arte-y-medios-de-masas.pdf'/>Cuerpo Humano Arte y Medios de Masas</a><br />
583
+
584
+
585
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/23-03-2022/los-adictos-maquinicos.pdf'/>Los Adictos Maquinicos</a><br />
586
+
587
+
588
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/23-03-2022/ontologia-maquinica-deleuze-guattari.pdf'/>Ontología maquínica de Deleuze y Guattari</a><br />
589
+
590
+
591
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/23-03-2022/ontologia-mundo-virtual-nicolai-hartmann.pdf'/>Ontología y Mundo Virtual Nicolai Hartmann</a><br />
592
+
593
+
594
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/21-12-2021/ultimo-suspiro-de-dios-filosofia-posthumanista-posmoderna.pdf'>
595
+ Último suspiro de Dios Filosofia Posthumanista Posmoderna
596
+ </a><br />
597
+
598
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/06-09-2022/filosofia/sintomas-del-giro-martirial-del-sacrificio.pdf'>
599
+ Síntomas del giro martirial del sacrificio
600
+ </a><br />
601
+
602
+ <br />Economía <br /><br />
603
+
604
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/cyberpunk/El-Manifiesto-Libertario.pdf'/>El Manifiesto Libertario</a><br />
605
+
606
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/posmodernidad/manifiesto-neolibertario-samuel-edward-kokin-III.pdf'/>El Manifiesto Neolibertario Samuel Edward Konkin III</a><br />
607
+
608
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/hedo/La-economia-utilitarista-del-libre-mercado.pdf'/>La Economía Utilitarista del Libre Mercado</a><br />
609
+
610
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/anarquismo/la-teoría-del-caos-Anarquia-de-mercado.pdf'/>La teoría del Caos Anarquía de Mercado </a><br />
611
+
612
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/industria4/cuarta-revolucion-indsutrial-deloitte.pdf'/>La Cuarta Revolución Industrial Deloitte</a><br />
613
+
614
+
615
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/industria4/industria-4.0-fabricando-el-futuro.pdf'/>Industria 4.0 Fabricando el Futuro</a><br />
616
+
617
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/industria4/cuarta-revolucion-industrial-y-materialismo.pdf'/>La Cuarta Revolución Industrial y Materialismo</a><br />
618
+
619
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/industria4/digitalizacion-industria-4.0.pdf'/>Digitalización y Industria 4.0</a><br />
620
+
621
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/industria4/infografia-revoluciones-industriales.pdf'/> Infografia Revoluciones Industriales</a><br />
622
+
623
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/block/blockchain-economia-de-confianza.pdf'/> Blockchain Economía de Confianza</a><br />
624
+
625
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/block/Guia-de-Criptomonedas.pdf'/> Guía Uso de Criptomonedas</a><br />
626
+
627
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/block/blockchain-informe-equisoft.pdf'/> Blockchain Informe Equisoft</a><br />
628
+
629
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/block/criptomonedas-infografia.pdf'/> Criptomonedas Infografia</a><br />
630
+
631
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/11-09-21/economia/blockchain-comercio-internacional.pdf'/>
632
+ Blockchain y Comercio Internacional
633
+ </a><br />
634
+
635
+ <br /><b>PDF Literatura</b><br /><br />
636
+
637
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/interes/Sueñan_Androides_Ovejas_Electricas.pdf'/>Sueñan Androides Ovejas Electricas</a><br />
638
+
639
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/posmodernidad/Douglas-Rushkoff-Ciberia-La-Vida-en-Las-Trincheras-Del-Hiperespacio.pdf'/>Douglas Ciberia Vida en Las Trincheras Del Hiperespacio</a><br />
640
+
641
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/cyberpunk/la-caza-de-hackers.pdf'/>La Caza de Hackers Bruce Sterling</a><br />
642
+
643
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/cy3/underground-haruki-murakami.pdf'/>Underground Haruki Murakami</a><br />
644
+
645
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/posmodernidad/Homo-Deus.pdf'/>Homo Deus Yuval Noah Harari</a><br />
646
+
647
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/cyberpunk/De-Animales-a-Dioses.pdf'/>De Animales a Dioses Yuval Noah Harari</a><br />
648
+
649
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/interes/La_Rebelion_de_Atlas.pdf'/>La Rebelion de Atlas</a><br />
650
+
651
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/cy3/ayn-rand-capitalismo-el-ideal-desconocido.pdf'/>Ayn Rand Capitalismo el Ideal Desconocido</a><br />
652
+
653
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/interes/Debajo_de_la_Alfombra.pdf'/>Debajo de la Alfombra</a><br />
654
+
655
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/interes/Odio_la_Escuela.pdf'/>Odio la Escuela</a><br />
656
+
657
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/interes/Palahniuk_Chuck-El_club_de_la_lucha.pdf'/>Palahniuk Chuck El club de la lucha</a><br />
658
+
659
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/posmodernidad/Ouspensky%20PD%20-%20Fragmentos%20de%20una%20ensenanza%20desconocida.pdf'/>Ouspensky Fragmentos de una enseñansa Desconocida</a><br />
660
+
661
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/pos2/manifiesto_ciborg_dona_haraway.pdf'/>Manifiesto Ciborg Donna Haraway</a><br />
662
+
663
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/pos2/testo_yonqui_beatriz_preciado.pdf'/>Testo Yonqui Beatriz Preciado</a><br />
664
+
665
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/hedo/Enrique-Rojas-El-hombre-light.pdf'/>Enrique Rojas El Hombre Light</a><br />
666
+
667
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/cyberpunk/la-magia-del-caos.pdf'/>La Magia del Caos</a><br />
668
+
669
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/cyberpunk/liber-null-Peter-J-Carroll.pdf'/>Liber Null Peter J. Carroll</a><br />
670
+
671
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/06-09-2022/literatura/zona-de-caos-compilado-de-textos.pdf'/>Zona de Caos Compilado de Textos</a><br />
672
+
673
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/posmodernidad/vigilar-y-castigar-michel-focault.pdf'/>Vigilar y Castigar Michel Foucault</a><br />
674
+
675
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/anarquismo/necromicon-ilustrado.pdf'/>Necromicon Ilustrado</a><br />
676
+
677
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/anarquismo/el-necromicon-libro-de-hechizos.pdf'/>El Necromicon Libro de Hechizos</a><br />
678
+
679
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/celes/Numeros-que-Curan-Gregori-Grabovoi.pdf'/>Numeros que Curan Gregori Grabovoi</a><br />
680
+
681
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/11-09-21/literatura/quemando-cromo-william-gibson.pdf'/>Quemando Cromo William Gibson</a><br />
682
+
683
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/06-09-2022/literatura/politica-en-el-infierno-Dante-Alighieri-interpretacion-de-la-commedia.pdf'>
684
+ Política en el Infierno : Dante Alighieri y el develamiento de una interpretación de la Commedia
685
+ </a><br />
686
+
687
+
688
+ <br />
689
+
690
+
691
+ <b>PDF Vida Artificial</b><br /><br />
692
+
693
+ <b> > </b><a target='_top' href="https://underpost.net/ir/pdf/artificial/Automatas%20Celulares%20generacion%20de%20Bits.pdf">Automatas Celulares generacion de Bits</a><br />
694
+ <b> > </b><a target='_top' href="https://underpost.net/ir/pdf/artificial/Automatas%20Celulares%20y%20Computacion.pdf">Automatas Celulares y Computacion</a><br />
695
+ <b> > </b><a target='_top' href="https://underpost.net/ir/pdf/artificial/Descripcion%20y%20Aplicacion%20Automatas%20Celulares.pdf">Descripcion y Aplicacion Automatas Celulares</a><br />
696
+ <b> > </b><a target='_top' href="https://underpost.net/ir/pdf/artificial/El%20nuevo%20paradigma%20filosofico%20de%20la%20IA.pdf">El nuevo paradigma filosofico de la IA</a><br />
697
+ <b> > </b><a target='_top' href="https://underpost.net/ir/pdf/artificial/Geometria%20Fractal.pdf">Geometria Fractal</a><br />
698
+ <b> > </b><a target='_top' href="https://underpost.net/ir/pdf/artificial/Inteligencia%20Artificial%20El%20Futuro%20del%20Crecimiento.pdf">Inteligencia Artificial El Futuro del Crecimiento</a><br />
699
+ <b> > </b><a target='_top' href="https://underpost.net/ir/pdf/artificial/Inteligencia%20Artificial%20Juegos.pdf">Inteligencia Artificial Juegos</a><br />
700
+ <b> > </b><a target='_top' href="https://underpost.net/ir/pdf/artificial/Jugando%20a%20ser%20Dios%20Experimentos%20en%20Vida%20Artificial.pdf">Jugando a ser Dios Experimentos en Vida Artificial</a><br />
701
+ <b> > </b><a target='_top' href="https://underpost.net/ir/pdf/artificial/La%20Vida%20Artificial%20Stefan%20Helmreich.pdf">La Vida Artificial Stefan Helmreich</a><br />
702
+ <b> > </b><a target='_top' href="https://underpost.net/ir/pdf/artificial/Sistemas%20Cognitivos%20Artificiales.pdf">Sistemas Cognitivos Artificiales</a><br />
703
+ <b> > </b><a target='_top' href="https://underpost.net/ir/pdf/artificial/Sistemas%20Complejos%20Caos%20y%20Vida%20Artificial.pdf">Sistemas Complejos Caos y Vida Artificial</a><br />
704
+ <b> > </b><a target='_top' href="https://underpost.net/ir/pdf/artificial/Vida%20Artificial%20Biocomputaci%c3%b3n%20y%20Nanotecnologia.pdf">Vida Artificial Biocomputacion y Nanotecnologia</a><br />
705
+ <b> > </b><a target='_top' href="https://underpost.net/ir/pdf/artificial/Vida%20Artificial%20Jose%20Santos.pdf">Vida Artificial Jose Santos</a><br />
706
+ <b> > </b><a target='_top' href="https://underpost.net/ir/pdf/artificial/Vida%20Artificial%20Luis%20Carlos%20Ospina%20Romero.pdf">Vida Artificial Luis Carlos Ospina Romero</a><br />
707
+ <b> > </b><a target='_top' href="https://underpost.net/ir/pdf/artificial/Vida%20Artificial%20el%20Nuevo%20Paradigma.pdf">Vida Artificial el Nuevo Paradigma</a><br />
708
+ <b> > </b><a target='_top' href="https://underpost.net/ir/pdf/artificial/Virus%20Informaticos%20Y%20Vida%20Artificial.pdf">Virus Informaticos Y Vida Artificial</a><br />
709
+ <b> > </b><a target='_top' href="https://underpost.net/ir/pdf/artificial/automatas%20celulares%20y%20aplicaciones.pdf">Automatas Celulares y Aplicaciones</a><br />
710
+ <b> > </b><a target='_top' href="https://underpost.net/ir/pdf/mili/defensa-militar-y-inteligencia-artificial.pdf">Defensa y Inteligencia Artificial</a><br />
711
+ <b> > </b><a target='_top' href="https://underpost.net/ir/pdf/mili/robotica-e-inteligencia-artificial.pdf">Robótica e Inteligencia Artificial</a><br />
712
+
713
+ <br />
714
+
715
+
716
+ <b>PDF Hacking</b><br /><br />
717
+
718
+
719
+ <b> > </b><a target='_top' href="https://underpost.net/ir/pdf/cy2/hacking-pruebas-de-penetracion-avanzada.pdf">Hacking Pruebas de Penetración Avanzada</a><br />
720
+
721
+ <b> > </b><a target='_top' href="https://underpost.net/ir/pdf/cy2/metodologias-ing-social.pdf">Metodologías Ingeniería Social</a><br />
722
+
723
+ <b> > </b><a target='_top' href="https://underpost.net/ir/pdf/21-12-2021/el-libro-blanco-del-hacker.pdf">El Libro Blanco del Hacker</a><br />
724
+
725
+ <b> > </b><a target='_top' href="https://underpost.net/ir/pdf/cy3/el-libro-negro-del-programador.pdf">El Libro Negro del Programador</a><br />
726
+
727
+ <br />
728
+
729
+
730
+ <b>PDF Redes Neuronales</b><br /><br />
731
+ <b> > </b><a target='_top' href="https://underpost.net/ir/pdf/redes/ciencias_matematicas_redes_neuronales.pdf">Ciencias Matemáticas y Redes Neuronales</a><br />
732
+ <b> > </b><a target='_top' href="https://underpost.net/ir/pdf/redes/aprendizaje_de_sistemas_redes_neuronales.pdf">Redes Neuronales y Aprendizaje de Sistemas</a><br />
733
+ <b> > </b><a target='_top' href="https://underpost.net/ir/pdf/redes/redes_neuronales_basicas.pdf">Redes Neuronales Basicas</a><br />
734
+ <b> > </b><a target='_top' href="https://underpost.net/ir/pdf/redes/redes_neuronales_resumen.pdf">Resumen Redes Neuronales</a><br />
735
+ <b> > </b><a target='_top' href="https://underpost.net/ir/pdf/redes/redes_neuronales_retropropagacion.pdf">Redes Neuronales Retropropagación</a><br />
736
+ <b> > </b><a target='_top' href="https://underpost.net/ir/pdf/redes/redes_neuronales_y_finanzas.pdf">Redes Neuronales y Finanzas</a><br />
737
+ <b> > </b><a target='_top' href="https://underpost.net/ir/pdf/redes/redes_neuronales_y_programacion_lineal.pdf">Redes Neuronales y Programación Lineal</a><br />
738
+ <b> > </b><a target='_top' href="https://underpost.net/ir/pdf/redes/redes_neurunales_y_aplicaciones.pdf">Redes Neuronales y Aplicaciones</a><br />
739
+
740
+ <br />
741
+
742
+ <b>PDF Desarrollo de Video Juegos</b><br />
743
+
744
+ <br />
745
+
746
+ <b> > </b><a target='_top' href="https://underpost.net/ir/pdf/cy2/diseño-de-video-juegos.pdf">Diseño de Vídeo Juegos</a><br />
747
+
748
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/interes/MMORPG_conceptos.pdf'/>MMORPG conceptos</a><br />
749
+
750
+ <b> > </b><a target='_top' href="https://underpost.net/ir/pdf/videojuegos/arte_y_videojuegos.pdf">Arte y VideoJuegos</a><br />
751
+
752
+ <b> > </b><a target='_top' href="https://underpost.net/ir/pdf/videojuegos/arte_y_videojuegos_cyberpunk.pdf">Arte y VideoJuegos Cyberpunk</a><br />
753
+
754
+ <b> > </b><a target='_top' href="https://underpost.net/ir/pdf/videojuegos/contenidos_digitales_sociedad_conectada.pdf">Contenidos Digitales en la Sociedad Conectada</a><br />
755
+
756
+ <b> > </b><a target='_top' href="https://underpost.net/ir/pdf/videojuegos/El_pixel_hace_la_fuerza_Narrativa_y_video_juegos.pdf">El Pixel hace la Fuerza Narrativa y VideoJuegos</a><br />
757
+
758
+ <b> > </b><a target='_top' href="https://underpost.net/ir/pdf/videojuegos/El-videojuego-como-laboratorio.pdf">El VideoJuego como Laboratorio</a><br />
759
+
760
+
761
+ <b> > </b><a target='_top' href="https://underpost.net/ir/pdf/videojuegos/HUMANIDADES_DIGITALES_Y_VIDEOJUEGOS.pdf">Humanidades Digitales y VideoJuegos</a><br />
762
+
763
+ <b> > </b><a target='_top' href="https://underpost.net/ir/pdf/videojuegos/jugadores_y_cibernarrativas.pdf">Jugadores y Cibernarrativas</a><br />
764
+ <b> > </b><a target='_top' href="https://underpost.net/ir/pdf/videojuegos/Ruta_epistemica_en_la_teoria_del_videojuego.pdf">Ruta Epistémica en la teoría del VideoJuego</a><br />
765
+ <b> > </b><a target='_top' href="https://underpost.net/ir/pdf/videojuegos/teoria_practica_diseno_conceptual_videojuegos.pdf
766
+ ">Diseño Conceptual de VideoJuegos</a><br />
767
+
768
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/11-09-21/videojuegos/factor-emocional-videojuegos-belicos.pdf'/>
769
+ Factor Emocional en los Videojuegos Belicos
770
+ </a><br />
771
+
772
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/11-09-21/videojuegos/gamificacion-y-diseno-videojuegos.pdf'/>
773
+ Gamificacion y diseno Videojuegos
774
+ </a><br />
775
+
776
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/11-09-21/videojuegos/videojuegos-y-ingenieria-social.pdf'/>
777
+ videojuegos y Ingenieria Social
778
+ </a><br />
779
+
780
+ <b> > </b><a target='_top' href='https://underpost.net/ir/pdf/02-11-2021/videojuegos_y_cultura_visual.pdf'>
781
+ Video Juegos y Cultura Visual
782
+ </a><br />
783
+
784
+ <br />
785
+
786
+ <b>Documentación Desarrollo Web</b><br /><br />
787
+
788
+ General:<br /><br />
789
+
790
+ <b> > Oficial&nbsp;</b><a target='_top' href='https://www.w3schools.com/'/>w3schools.com</a><br />
791
+
792
+ <b> > Guías&nbsp;</b><a target='_top' href='https://desarrolloweb.com/'/>desarrolloweb.com</a><br />
793
+
794
+ <b> > Guías&nbsp;</b><a target='_top' href='https://www.geeksforgeeks.org/'/>geeksforgeeks.org</a><br />
795
+
796
+ <b> > Guías&nbsp;</b><a target='_top' href='https://web.dev/'/>web.dev</a><br />
797
+
798
+ <b> > Guías&nbsp;</b><a target='_top' href='https://roadmap.sh/'/>roadmap.sh</a><br />
799
+
800
+ <b> > Consultas&nbsp;</b><a target='_top' href='https://stackoverflow.com/'/>stackoverflow.com</a><br />
801
+
802
+ <b> > Patrones de Diseño&nbsp;</b><a target='_top' href="https://refactoring.guru/">refactoring.guru</a><br />
803
+
804
+ <b> > Patrones de Diseño&nbsp;</b><a target='_top' href=" https://www.patterns.dev/posts/ssr/">patterns.dev</a><br />
805
+
806
+ <b> > Utilidades&nbsp;</b><a target='_top' href="https://tutorialspoint.com/">tutorialspoint.com</a><br />
807
+
808
+ <b> > Utilidades&nbsp;</b><a target='_top' href='https://manytools.org/'/>manytools.org</a><br />
809
+
810
+ <b> > Data Utilidades&nbsp;</b><a target='_top' href='https://tableconvert.com/'/>tableconvert.com</a><br />
811
+
812
+ <br />Backend: Lenguajes<br /><br />
813
+
814
+ <b> > PHP&nbsp;</b><a target='_top' href='https://www.php.net/manual/es/index.php'/>php.net</a><br />
815
+
816
+ <b> > NodeJs&nbsp;</b><a target='_top' href='https://nodejs.org/es/'/>nodejs.org</a><br />
817
+
818
+ <b> > TypeScript&nbsp;</b><a target='_top' href='https://www.typescriptlang.org/'/>typescriptlang.org</a><br />
819
+
820
+ <b> > Python&nbsp;</b><a target='_top' href='https://www.python.org/'/>python.org</a><br />
821
+
822
+ <b> > R&nbsp;</b><a target='_top' href='https://www.r-project.org/'/>r-project.org</a><br />
823
+
824
+ <b> > Scheme&nbsp;</b><a target='_top' href='https://groups.csail.mit.edu/mac/projects/scheme/'/>groups.csail.mit.edu</a><br />
825
+
826
+ <br />Backend: Bases de Datos<br /><br />
827
+
828
+ <b> > SQL&nbsp;</b><a target='_top' href='https://mariadb.org/'/>mariadb.org</a><br />
829
+
830
+ <b> > SQL&nbsp;</b><a target='_top' href='https://www.mysql.com/'/>mysql.com</a><br />
831
+
832
+ <br />Backend: Framework<br /><br />
833
+
834
+ <b> > PHP Apache&nbsp;</b><a target='_top' href='https://www.apachefriends.org/es/add-ons.html'/>apachefriends.org</a><br />
835
+
836
+ <b> > PHP Ratchet&nbsp;</b><a target='_top' href='http://socketo.me/'/>socketo.me</a><br />
837
+
838
+ <b> > NodeJS Express&nbsp;</b><a target='_top' href='https://expressjs.com/es/api.html'/>expressjs.com</a><br />
839
+
840
+ <b> > NodeJS socket.io&nbsp;</b><a target='_top' href='https://socket.io/'/>socket.io</a><br />
841
+
842
+ <b> > Scheme Racket&nbsp;</b><a target='_top' href='https://docs.racket-lang.org/'/>docs.racket-lang.org</a><br />
843
+
844
+ <br />Backend: Gestor de Paquetes<br /><br />
845
+
846
+ <b> > PHP&nbsp;</b><a target='_top' href='https://getcomposer.org/'/>getcomposer.org</a><br />
847
+
848
+ <b> > NodeJS&nbsp;</b><a target='_top' href='https://www.npmjs.com/'/>npmjs.com</a><br />
849
+
850
+ <b> > Python&nbsp;</b><a target='_top' href='https://pypi.org/'/>pypi.org</a><br />
851
+
852
+ <b> > R&nbsp;</b><a target='_top' href='https://cran.r-project.org/'/>cran.r-project.org</a><br />
853
+
854
+ <b> > Scheme&nbsp;</b><a target='_top' href='https://pkgs.racket-lang.org/'/>pkgs.racket-lang.org</a><br />
855
+
856
+ <br />Frontend: Librerias<br /><br />
857
+
858
+ <b> > JavaScript&nbsp;</b><a target='_top' href='http://vanilla-js.com/'/>vanilla-js.com</a><br />
859
+
860
+ <b> > jQuery&nbsp;</b><a target='_top' href='https://api.jquery.com/'/>api.jquery.com</a><br />
861
+
862
+ <b> > Canvas&nbsp;</b><a target='_top' href='https://konvajs.org/'/>konva.js</a><br />
863
+
864
+ <br />Frontend: Framework<br /><br />
865
+
866
+ <b> > Svelte&nbsp;</b><a target='_top' href='https://svelte.dev/'/>svelte.dev</a><br />
867
+
868
+ <br /><br /><br /><br /><br />
869
+
870
+ -->
871
+ <br />
872
+ <img class='in' style="width: 280px; height: auto; margin: auto;" src="${getProxyPath()}assets/img/gbe.png" /><br /><br /><br /><br /><br />
873
+ <br />
874
+ <br /><br />
875
+ `;
876
+ },
877
+ };
878
+
879
+ export { CyberpunkBloggerUnderpost };