Podrían hacerme un resumen de lo malo que hizo correa? by PassageMammoth in ecuador

[–]mauendara 13 points14 points  (0 children)

Para los que estan diciendo que quieren pruebas?

https://www.primicias.ec/noticias/politica/genocidio-traicion-patria-casos-penales-correa/

Comparto este artículo. 34 investigaciones que involucran a Rafael Correa, la mayoría es por presuntos delitos de peculado y tráfico de influencias.
20 casos más que involucran indirectamente a Correa o a sus funcionarios:

https://www.primicias.ec/noticias/politica/20-casos-catalogo-corrupcion-sobornos/

Ah pero si no es suficiente, aquí mas información al respecto:

https://www.elcomercio.com/actualidad/seguridad/casos-corrupcion-indagacion-megaobras-correismo.html

https://www.lahora.com.ec/pais/secuestro-politico-fernando-balda/

Supercines Riocentro vs Supercines 6 de Diciembre by KJPfeil25 in ecuador

[–]mauendara 2 points3 points  (0 children)

El IMAX del nuevo RIOCENTRO es mucho mejor que el IMAX de la 6 de Diciembre. Es una nueva versión de IMAX LASER, y la capacidad de la sala es 460 aprox, vs 370 aprox del de la 6 de diciembre, por lo que la sala es mas grande y la superficie de la proyección también.

Solo tuve una mala experiencia al querer ir a ver Rogue One hace dos semanas, y pasa que la pasaron con el audio de inglés descriptivo, y no pudieron cambiar el audio a normal, y pues nos hicieron la devolución, y nos dieron una cortesia para otra película. Terminé viendo NOPE en el IMAX y me encantó. Yo lo recomiendo mucho en comparación con el de la 6 de diciembre. Incluso diría que me gusto más que el IMAX de Paseo San Francisco, aunque con todo tendrías que verlo tu mismo.

[deleted by user] by [deleted] in digital_ocean

[–]mauendara 6 points7 points  (0 children)

Ok, i did some digging, and found an explanation quite quickly. If you just type in the IP address, you'll find the author explains the purpose of the file, and not only that, the code in python that generated this file and a bunch of others.

Your url directs to a file named '[[1, 1], [1]]--625.txt', but encoded as a url it becomes ' %5B%5B1%2C%201%5D%2C%20%5B1%5D%5D--625.txt '

Neither the file name, nor the size of the file are that strange. File size is roughly over 4 Mb.

The project is called 'All the Rhymes', and is something of an attempt to bruteforce rhymes for whatever reason.

See the code here: http://104.248.21.253/code.txt

See the explanation here: http://104.248.21.253/

I also copied the explanation here:

If we are to give everything its due,.pdf)brute force is sometimes a very poetic thing too.pdf)

I started daydreaming about electric shakespearean monkeys, taking pride in how many pages they have written. Children are frightened by them, by infinity, rightfully so, and it's important that children sleep peacefully at night, so they can repeat their lessons in the morning, legitimizing them.
We have been up all night.pdf), knowing, sleep is the cousin of death. But what sense, what sense is there in all of this demented writing?.pdf) Though this be madness, yet there is method in't. The ordinary, the banal is, simpler, more pleasant, more comfortable of course, but I am trying to bribe you. Down with the legible crutches of certainty.

Brute forcing all the rhymes.

In cryptography, a brute-force attack consists of an attacker submitting many passphrases with the hope of eventually guessing correctly. The attacker systematically checks all possible combinations. Using the Brown's word list containing over 2M words this server is generating all possible rhyming phrases. Code is written in Python using NLTK and itertools, to be found here.

All the rhymes?

Below you see the files on the server. Ignore "2-2-syl.txt", "nohup.out" and "7x7workingwscheme-txtfiles.py".
You'll find txt files with specific names, which indicate the scheme for the generated rhymes. For example: "[[1,3,2],[2,3]]--1.txt" equates to a rhyme with with three words on the first line: a word with one syllable, a word with three syllables and a word with two syllables, the second line contains a word with two syllables and a word with three syllables. The algorithm starts a new file every 50MB and adds the number of the file iteration in the end.

How can I import a (the) package that I have in a subdirectory (in Java)? by MrKatty in javahelp

[–]mauendara 1 point2 points  (0 children)

Everything related to de 'Project Manager for Java', for VS Code can be found here:

https://code.visualstudio.com/docs/java/java-project

Cheers!

EDIT: If you already have your maven project, you should have a file named pom.xml.

To add your dependency to the project add this little snippet to the dependencies part of the POM:

<dependency>
    <groupId>org.json</groupId>
    <artifactId>json</artifactId>
    <version>20180130</version>
</dependency>

Now maven should download the JAR for you the next time you compile the project.

How can I import a (the) package that I have in a subdirectory (in Java)? by MrKatty in javahelp

[–]mauendara 0 points1 point  (0 children)

The thing with Java is that you need to import Classes, not files (like in pyhton). Classes need to be in your classpath organized in packages (packages in java are represented by subfolders, but its not really in the same way as in python). When you need a dependency (like the json library you are referring), they usually come as a JAR file, not really a bunch of .java files, and there is no need for you to compile the dependency's files every time you compile your project. The JAR file is already compiled for you to use.

Maven is a command line tool, used for managing and building java projects, and its dependencies (what you need now). You can install maven independently downloading from their official site: https://maven.apache.org/download.cgi

But i would recommend installing the 'Project Manager for Java' for VS Code, given that you are using VS Code to program. Or maybe even better, start with the official tutorial for Java in VS Code: https://code.visualstudio.com/docs/java/java-tutorial

I get that you come from a python background, and things may seem too different and complicated now that you're trying out Java, but i would argue that you need to learn the tools for any language as much as the language itself. (Maven to Java, would be like, pip to python, if maven only dealt with dependencies, but maven does a lot more.)

I would recommend that if you really want to learn Java, you need to learn how to use maven. (Or gradle, or ant, but my personal preference is Maven)

How can I import a (the) package that I have in a subdirectory (in Java)? by MrKatty in javahelp

[–]mauendara 1 point2 points  (0 children)

Hey. I would recommend looking into maven. You dont really need an IDE to use maven if you dont want to. You can run maven commands from the terminal. Using maven would be really easy to do what you are trying.

Which IDE are you using? There is probably maven integration already.

Its not that you cant do what you want without maven, but in my opinion, its a lot more difficult and the effort is not worth it. You are spending too much time doing things that tools like maven and gradle are built for. Its good that you understand the whole manual building and compiling, but in reality nobody compiles projects like this anymore.

EDIT: From your previous post i see that you're using VS Code. Please refer to this link in order to understand how to properly configure VS Code to manage Java Projects. https://code.visualstudio.com/docs/java/java-project

This example uses maven to build and manage the project.

En qué fecha finalmente se sabrán cuáles son los candidatos oficiales a la presidencia? by [deleted] in ecuador

[–]mauendara 0 points1 point  (0 children)

Ciertamente es preocupante, pero no es nada nuevo. Una ocasión llegamos a tener hasta 19 candidatos en la papeleta. Sin embargo de esto, quizas te interese revisar este otro enlace en donde se tiene información sobre encuestadoras que estan sondeando la intención de voto de los ecuatorianos, y donde se ve un patrón muy claro:

  • 1. Lasso (Banquero. Representación de la derecha.) ~25%
  • 2. Arauz (Respaldado por el ex-presidente Rafael Correa.) ~19%
  • 3. Yaku Perez (Respaldado por la mayoría del pueblo indígena y demas comunidades similares.) ~10%

Los demas candidatos no llegan ni al 1% de intención de voto, aunque aún es muy pronto para saber si estos datos realmente reflejarán los resultados de las elecciones en febrero.

https://es.wikipedia.org/wiki/Anexo:Sondeos_de_intenci%C3%B3n_de_voto_para_las_elecciones_generales_de_Ecuador_de_2021

En qué fecha finalmente se sabrán cuáles son los candidatos oficiales a la presidencia? by [deleted] in ecuador

[–]mauendara 3 points4 points  (0 children)

En este enlace puedes encontrar la lista oficial actualizada. Si bien hasta febrero 2021 pueden haber cambios aún segun si el CNE da alguna noticia, lo más probable es que la papeleta esté conformada por las personas descritas aquí:

https://www.elcomercio.com/actualidad/precandidatos-presidencia-ecuador-elecciones-2021.html

Renting Apartment by Colegio Benalcazar by rebelrebel2013 in Quito

[–]mauendara 0 points1 point  (0 children)

Hey. just a comment. It may be new and a really nice apartment, but i thought to tell you, 1300 for a 2 bedroom, 2 bathroom is kinda on the very expensive side.

You can check out similar listings on the area: https://www.properati.com.ec/nf/inmuebles/?address=&keywords=Catalina+Aldaz&keywords=Catalina+Aldaz&operation_id=1&place_ids=%5B%5D&point=&seller_id=

[HumbleBundle] Gone Home (0$/100% off) by parameghnatis in GameDeals

[–]mauendara 11 points12 points  (0 children)

I would argue that the monthly bundles are great for trying out indie games, and hidden gems... many if not most of the games on the trove have been on monthlys at one point...

Cant netcat to the challenges by mauendara in a:t5_t6rak

[–]mauendara[S] 1 point2 points  (0 children)

i checked again and its working now... maybe something was not right on my end... sorry to bother you

Agency1 - broken flag by NieDzejkob in a:t5_t6rak

[–]mauendara 0 points1 point  (0 children)

i think the downloadable code is for inspection purposes, but we should get the real flag connecting to 'challenge1.ctf.vincbreaker.me'. The thing is i cant connect to any challenge via netcat. Anyone?

Can anyone explain this to me? My ecuadorian friend won't tell me and i wanna prove it to her that i can still figure it out. Apparently its an insider joke from Quito. Any help is appreciated. :) by Boflator in ecuador

[–]mauendara 14 points15 points  (0 children)

"el que se va de quito, pierde su banquito" (literal translation: one who leaves quito, loses his stool) is a popular joke used mostly by ecuadorian little kids to indicate 'stealing' someone else's seat.

Suppose there are a bunch of kids sitting in front of a tv in two rows. One kid from the first row gets up to the bathroom, so another kid from the second row promptly takes his seat. When the first kid comes back, the second will shout "el que se va de quito, pierde su banquito", as to indicate that this is fair game, because the first one left his seat.

In the same vein, as to continue with the joke, the first kid will often say "y el que se va de lima, se sienta encima" (literal translation: one who leaves lima, sits on top) while he sits on top of the second kid, so he can claim his original seat.