Mostrando entradas con la etiqueta gráficos. Mostrar todas las entradas
Mostrando entradas con la etiqueta gráficos. Mostrar todas las entradas

martes, 15 de julio de 2025

Cyberpunk 2077 y Mas Nuevos Juegos Disponibles para Suscriptores de PlayStation Plus

 

Los suscriptores de PlayStation Plus están de enhorabuena, ya que pueden acceder a una nueva oleada de juegos, incluyendo el aclamado (y previamente plagado de errores) Cyberpunk 2077. Después de numerosas actualizaciones y parches, Cyberpunk 2077, el RPG de ciencia ficción distópica de CD Projekt Red, se une al catálogo de juegos de PlayStation Plus para los suscriptores de los niveles Extra y Premium.

PlayStation Plus ofrece tres niveles de suscripción: Essential, Extra y Premium. El nivel Extra y Premium dan acceso al Catálogo de Juegos de PlayStation Plus, que ahora incluye Cyberpunk 2077, donde los jugadores se sumergen en Night City como el mercenario V, lidiando con corporaciones corruptas, crímenes y implantes cibernéticos, todo esto con la compañía virtual de Keanu Reeves como Johnny Silverhand.


Además de Cyberpunk 2077, los suscriptores también pueden disfrutar de Bluey: The Videogame, basado en la popular serie animada, donde los jugadores pueden explorar el mundo de Bluey como Bandit, Chili, Bingo o Bluey, participando en juegos y aventuras familiares. Otro título interesante que se une al catálogo es Abiotic Factor, un juego de supervivencia de ciencia ficción inspirado en los años 90, donde los jugadores, como científicos, exploran un complejo subterráneo secreto lleno de horrores sobrenaturales. Este juego estará disponible el 22 de julio.

Otros juegos que también están disponibles para los suscriptores de PlayStation Plus Extra y Premium incluyen Banishers: Ghosts of New Eden, New World: Aeternum, Planet Zoo, Risk of Rain 2 y Tropico 6. Los suscriptores Premium también pueden disfrutar de Twisted Metal 3 y Twisted Metal 4.

Fuente Original: https://www.cnet.com/tech/gaming/playstation-plus-subscribers-can-play-cyberpunk-2077-and-more-games-now/#ftag=CAD590a51e  

Artículo generado mediante LaRebelionBOT

miércoles, 15 de abril de 2020

Graphviz. Simple solution for recreating graphics

This is the first article that I publish in English, the main reason to do it is because all the documentation related to context maps that I have found so far, are related in English and obviously my way to contribute to the extensive Internet community, is to do it in a universal language, at least for this article.

Well, today I want to talk about two utilities that have helped me a lot, one of them is graphviz.org. Graphviz, which has versions for Windows, Mac or Linux (in my case I have tried in Linux and Mac OS), is a powerful Open Source tool that allows to easily generate almost any graphic, cool stuff like this:



Or simpler things than recreating a binary tree that I explained in the previous section, https://www.larebelion.com/2020/04/arboles-binarios.html

Imagine that in code C, you want to represent the resulting binary tree, with few lines of code you could get something like this:


Let me a simple C function to add to the previous tree and generate this:

static void _generating_graphviz_details(const tree_t node, const void *extra)
{
 FILE *f = (FILE *) extra;

 fprintf(f, " node_%p [label=\"{%p | content: %d | { <izqda> %p | <dcha> %p}\"];\n",
  node, node, node->content, node->left, node->right
 );
 if (node->left != NULL) {
  fprintf(f, " node_%p:left -> node_%p;\n", node, node->left);
 }
 if (node->right != NULL) {
  fprintf(f, " node_%p:dcha -> node_%p;\n", node, node->dcha);
 }
 fprintf(f, "f");
}

Okay, hopefully this tiny contribution will help you in the dynamic generation of your graphics.