All public logs
Jump to navigation
Jump to search
Combined display of all available logs of ChuWiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)- 08:41, 26 January 2023 Chudiang talk contribs created page Categoría:Logback (Página creada con «[https://logback.qos.ch/ Logback] es un sistema de log para java que pretende ser la continuación de [https://logging.apache.org/log4j/2.x/ log4j]. Nace con la idea de añ…»)
- 20:29, 23 January 2023 Chudiang talk contribs created page Cliente Web Service REST con Python y requests (Página creada con «__TOC__ Categoría:Python»)
- 13:22, 22 January 2023 Chudiang talk contribs created page Archivo:Python-flask-post-request-web-service.PNG (Ejemplo de llamada a web service POST Flask python con Postman)
- 13:22, 22 January 2023 Chudiang talk contribs uploaded Archivo:Python-flask-post-request-web-service.PNG (Ejemplo de llamada a web service POST Flask python con Postman)
- 12:55, 22 January 2023 Chudiang talk contribs created page Archivo:Python-flask-post-request.PNG (Petición POST con la extensión Postman de Google Chrome para probar el ejemplo de Web Services REST con python y Flask)
- 12:55, 22 January 2023 Chudiang talk contribs uploaded Archivo:Python-flask-post-request.PNG (Petición POST con la extensión Postman de Google Chrome para probar el ejemplo de Web Services REST con python y Flask)
- 09:33, 21 January 2023 Chudiang talk contribs created page Web Services REST con Python y Flask (Página creada con «__TOC__ pip install Flask Categoría:Python»)
- 21:35, 16 January 2023 Chudiang talk contribs created page Ejemplo de application assembler maven plugin (Página creada con «__TOC__ Categoría:Maven»)
- 13:13, 15 January 2023 Chudiang talk contribs created page Leer y escribir ficheros CSV con python (Página creada con «__TOC__ El módulo ''csv'' de ''python'' nos permite leer y escribir ficheros CSV fácilmente. Veamos cómo usarlo. == Leer ficheros CSV con python == Lo primero es impo…»)
- 21:46, 9 January 2023 Chudiang talk contribs created page Usuario:Chudiang (Página creada con «Blog https://blog.chuidiang.org/ Github https://github.com/chuidiang Twitter https://twitter.com/chuidiang»)
- 11:15, 7 December 2022 Chudiang talk contribs created page Leer y escribir ficheros XML con python (Página creada con «__TOC__ Veamos cómo escribir y leer ficheros XML con ''python''. == Módulo python ''xml.etree.ElementTree'' == En el módulo <code>xml.etree.ElementTree</code> que vie…»)
- 10:25, 6 December 2022 Chudiang talk contribs created page Leer y escribir ficheros json en python (Página creada con «__TOC__ Veamos como convertir un objeto python a json, tanto en memoria, como escribiendo o leyendo de un fichero. Para ellos necesitamos el módulo <code>json</code> que…»)
- 19:20, 5 December 2022 Chudiang talk contribs created page Listar renombrar y borrar ficheros en python (Página creada con «__TOC__ El módulo <code>os</code> que viene por defecto con python nos permite interactuar con el sistema operativo. Veamos en este tutorial las funciones que tiene para…»)
- 12:13, 5 December 2022 Chudiang talk contribs created page Arrays en python (Página creada con «__TOC__ Python viene con un módulo <code>array</code> que nos permite manejar arrays de diversos tipos de forma eficiente. Soporta todo tipo de variantes de caracteres, e…»)
- 14:35, 1 December 2022 Chudiang talk contribs deleted page Categoría discusión:Ecosistemas de Desarrollo (el contenido era: «Existe este tratamiento natural REVOLUCIONARIO que puede hacerte lucir hasta 20 años más joven en solo dos semanas. Si te ves más joven, tienes más éxito en el amor, en los negocios, en el trabajo... En general, la gente te mira con más agrado si te ves más joven. El tratamiento está incluso disponible en Amazon en https://www.amazon.es/dp/B…», y el único autor fue «95.217.132.42» (discusión))
- 14:34, 1 December 2022 Chudiang talk contribs blocked 95.217.132.42 talk with an expiration time of indefinite (anonymous users only, account creation disabled, email disabled, cannot edit own talk page) (Añadir basura en las páginas)
- 20:37, 30 November 2022 Chudiang talk contribs created page Mayúsculas y minúsculas en python (Página creada con «__TOC__ Veamos las funciones python para saber si una cadena tiene mayúsculas, minúsculas, convertir mayúsculas a minúsculas y las posibilidades que python nos ofrece.…»)
- 13:26, 30 November 2022 Chudiang talk contribs created page Translations:Generar números aleatorios en Java/83/en (Página creada con «int randomValue = (int) Math.floor(Math.random()*(N-M+1)+M); // Value between M and N, both included. </syntaxhighlight>»)
- 13:23, 30 November 2022 Chudiang talk contribs marked Generar números aleatorios en Java for translation
- 20:02, 29 November 2022 Chudiang talk contribs created page Translations:Llamar desde una clase java a otra clase/61/en (Página creada con «A service locator adds additional complexity, it is one more <code>Service</code> class that needs to be initialized in our <code>main()</code> with something like <code>Se…»)
- 20:01, 29 November 2022 Chudiang talk contribs created page Translations:Llamar desde una clase java a otra clase/60/en (Página creada con «If we don't expect class A to ever be reused, we can skip using <code>InterfaceB</code> and make it use directly B, making the code simpler and not complicating it for some…»)
- 20:01, 29 November 2022 Chudiang talk contribs created page Translations:Llamar desde una clase java a otra clase/59/en (Página creada con «But as always, it is better to use your head than to follow recipes to the letter. The use of one or the other mechanism depends on each specific case and on the possible c…»)
- 20:00, 29 November 2022 Chudiang talk contribs created page Translations:Llamar desde una clase java a otra clase/58/en (Página creada con «Which is better? Of course, it is a matter of taste. The usual thing is that when a class is going to be used in many places and you want it to always be the same instance,…»)
- 19:58, 29 November 2022 Chudiang talk contribs created page Translations:Llamar desde una clase java a otra clase/57/en (Página creada con «== Inversion of Control or Service Locator? ==»)
- 19:58, 29 November 2022 Chudiang talk contribs created page Translations:Llamar desde una clase java a otra clase/56/en (Página creada con «The version of <code>Service</code> we just saw is a '''service locator'''. Services (class B) are "registered" at some point <code>(Service.setB(new B());)</code> and can…»)
- 19:57, 29 November 2022 Chudiang talk contribs created page Translations:Llamar desde una clase java a otra clase/55/en (Página creada con « We mentioned before that there were several variants of this option: service locator, factories, singleton, etc. The basic difference between all of them is basically wher…»)
- 19:57, 29 November 2022 Chudiang talk contribs created page Translations:Llamar desde una clase java a otra clase/54/en (Página creada con «<syntaxhighlight lang="java"> Service.setB (new Connection()); A a = new A(); a.aMethodOfA(); </syntaxhighlight >»)
- 19:56, 29 November 2022 Chudiang talk contribs created page Translations:Llamar desde una clase java a otra clase/53/en (Página creada con «We have already achieved what we wanted, we can take A, Service and InterfaceB to any other project without having to take class B, which is no longer useful to us. Also, i…»)
- 19:55, 29 November 2022 Chudiang talk contribs created page Translations:Llamar desde una clase java a otra clase/52/en (Página creada con «<syntaxhighlight lang="java"> Service.setB (new B()); A a = new A(); a.aMethodOfA(); </syntaxhighlight >»)
- 19:55, 29 November 2022 Chudiang talk contribs created page Translations:Llamar desde una clase java a otra clase/51/en (Página creada con «And in our <code>main()</code> we will have to do this»)
- 19:55, 29 November 2022 Chudiang talk contribs created page Translations:Llamar desde una clase java a otra clase/50/en (Página creada con «<syntaxhighlight lang="java"> public class Service { private static InterfaceB b; public static setB(InterfaceB b) { this.b = b; } public static Interface…»)
- 19:54, 29 November 2022 Chudiang talk contribs created page Translations:Llamar desde una clase java a otra clase/49/en (Página creada con « To avoid this, we need to prevent <code>Service</code> from doing new directly, so we put a set method on it, like so»)
- 19:53, 29 November 2022 Chudiang talk contribs created page Translations:Llamar desde una clase java a otra clase/48/en (Página creada con « The "patch" as we have done it is that if we want to reuse A in another code, we have to take the <code>Service</code> class and to take this one, we also have to take cla…»)
- 19:53, 29 November 2022 Chudiang talk contribs created page Translations:Llamar desde una clase java a otra clase/47/en (Página creada con «This mechanism is very useful when class B is something that will be used in many places in our program, such as a database access class, sockets, etc.»)
- 19:52, 29 November 2022 Chudiang talk contribs created page Translations:Llamar desde una clase java a otra clase/46/en (Página creada con «<syntaxhighlight lang="java"> public class A { public void aMethodOfA() { Service.getB().aMethodOfB(); } } </syntaxhighlight >»)
- 19:52, 29 November 2022 Chudiang talk contribs created page Translations:Llamar desde una clase java a otra clase/45/en (Página creada con «Done, being <code>static</code>, we can call it from anywhere in our code by doing this»)
- 19:51, 29 November 2022 Chudiang talk contribs created page Translations:Llamar desde una clase java a otra clase/44/en (Página creada con «<syntaxhighlight lang="java"> public class Service { private static InterfaceB b = new B(); public static InterfaceB getB() { return b; } } </syntaxhighlight >»)
- 19:51, 29 November 2022 Chudiang talk contribs created page Translations:Llamar desde una clase java a otra clase/43/en (Página creada con « The idea is to have a class, let's call it <code>Service</code>, that is the one that has the instance of B and a method to get it. Since we want to be able to call this c…»)
- 19:50, 29 November 2022 Chudiang talk contribs created page Translations:Llamar desde una clase java a otra clase/42/en (Página creada con «When a class B is going to be used in many places and we want to avoid all the "mess" of putting getters and setters in the classes, there is another alternative that is to…»)
- 19:50, 29 November 2022 Chudiang talk contribs created page Translations:Llamar desde una clase java a otra clase/41/en (Página creada con «Things can get really complicated, there can be many more classes that we need to pass back and forth, not just B. And there can be many levels of classes, like AAAA making…»)
- 19:48, 29 November 2022 Chudiang talk contribs created page Translations:Llamar desde una clase java a otra clase/40/en (Página creada con «== Service Locator ==»)
- 19:48, 29 November 2022 Chudiang talk contribs created page Translations:Llamar desde una clase java a otra clase/39/en (Página creada con «<syntaxhighlight lang="java"> AA aa = new AA(); BB bb = new BB(); aa.setB(bb.getB()); </syntaxhighlight >»)
- 19:48, 29 November 2022 Chudiang talk contribs created page Translations:Llamar desde una clase java a otra clase/38/en (Página creada con « And our <code>main() </code> would do something like this»)
- 19:47, 29 November 2022 Chudiang talk contribs created page Translations:Llamar desde una clase java a otra clase/37/en (Página creada con «<syntaxhighlight lang="java"> public class BB { private InterfaceB b = new B(); public InterfaceB getB() { return b; } } </syntaxhighlight >»)
- 19:47, 29 November 2022 Chudiang talk contribs created page Translations:Llamar desde una clase java a otra clase/36/en (Página creada con «On the other hand, BB must have a <code>getB()</code> method that allows us to get B»)
- 19:47, 29 November 2022 Chudiang talk contribs created page Translations:Llamar desde una clase java a otra clase/35/en (Página creada con «<syntaxhighlight lang="java"> public class AA { private A a = new A(); public void setB (InterfaceB b) { a.setB(b); } } </syntaxhighlight >»)
- 19:47, 29 November 2022 Chudiang talk contribs created page Translations:Llamar desde una clase java a otra clase/34/en (Página creada con «For the one hand, AA must have a <code>setB()</code> that passes B to A.»)
- 19:46, 29 November 2022 Chudiang talk contribs created page Translations:Llamar desde una clase java a otra clase/33/en (Página creada con «The example we've done for A and B is pretty simple in the sense that there's a piece of code that does new A and B and then passes B to A. But in a more complex program, t…»)
- 19:44, 29 November 2022 Chudiang talk contribs created page Translations:Llamar desde una clase java a otra clase/32/en (Página creada con «== Complicating the matter ==»)
- 19:44, 29 November 2022 Chudiang talk contribs created page Translations:Llamar desde una clase java a otra clase/31/en (Página creada con « * Our class is more reusable, we can take it to other projects without having to take many more classes. * Our class can change its behavior by calling future classes that…»)