#🍁・general-2
1 messages · Page 149 of 1
I was always 1 semester behind on the maths stuff
@abstract scaffold are you a math major?
O sea como tu degree?
yeah. finished me degree last year technically (graduation ceremony delayed tho because of pandemic)
differential equations mainly. (lol, this is why i derive the projectile motion formulae)
yet, as a mathematician, no sabemos las aplicaciones de esas ecuaciones, sólo las resolvemos.
#puremathematican
Haha yeah true
But there’s a beauty to pure math
Like following the string of logic to describe the language of the universe
Idk it’s just such interesting shit tbh Lool
So much to learn
it can get interesting, but then sometimes you just wanna bang your head on the wall repeatedly because of the absurd level of maths needed to understand concepts.
I think that's what physics majors feel too
In Engineering I would say it's pretty chill in comparison
because yeah I mean it's hard
but we don't cover a lot of axioms, theorems, proofs, etc that you do
we don't prove them most of the time
but it depends on the class like logic is very proof-based
even though it wasn't like that in my university
computational engineering
dew is majoring in something that's related more to electricity and those kinds of stuff
Ah I see 🤔
hola
hi uwi
half iwi half uwu
I like linear algebra
it has completely changed the way I saw functions
and vectors
and sets
and math in general
If y’all see my exams
That would be easiest
Lmao
That is not but it was the hardest exam
Only 2 hours to do all of them
what's your uni?
that exam is not that hard either
well to be honest I thought that test was harder, but it's fine for calc 1 students
I'm gonna solve the first two images you sent just for fun. I like to remember stuff I already learned
Oh yeah, i know it right now but when the classes was doing, the professor always turn on the screen from PC and then he only showed us “how to make graphics in Geogebra”
Lmao
Lol I'm just starting to learn french and at first I thought I read "sir, you are a retard"
😅
i mean, it technically means "to be delayed" but nowadays it gets used as an insult.
where you can kinda link it to tardar
but yes false friends in a nutshell xD
That’s practically a false cognate
@abstract scaffold yeah that makes sense
https://www.constituteproject.org/constitution/Uruguay_2004.pdf?lang=en found the uruguayan constitution translated to english
Why dost mine MacBook overheat
I have closed all the apps, restarted it, updated it, but still it overheats
Does anyone else have this issue?
puedes esuchar empiezan los ventiladores?
alguien tiene un sito en el que hay mexicanos hablado del programación/tech en general? Quiero emepzar a estuidar palabras de tecnología
si sabed de uno por favor @ me
❤️
I'd recommend you watch youtube videos
uranium
quien es
Alguien de la serie "la casa de papel"
ambos valen, pero diría "ver" creo
ah
hola
Would it be bad to use Excel to make a graph for use in a paper I'm trying to get published?
I have access to jmp pro but I don't know if I particularly want to use it
I just want it to look as nice as possible and excel seems like the wrong way to go lol
What kinda of graph do you wanna do?
We were thinking just a simple bar graph to show the results we got for a survey.. But a table might look better
And we're using latex
I used to excel to do simple graph like when i analice some examples of Microeconomy or (Operations investigation)?
Ohh gotcha
I mean, you can change colors or desing, not really awesome but you can do a decent work
I guess we'll try both and just see how it looks
We're not really expecting our paper to get accepted, but we don't want it to get turned down because it looks weird
Probably if you use the lastest excel, it probably would have more desings
Oh yeah, i think that it sometimes looks better at least you did that good, but if you only have a sketch, it’ll be better in a software
Yeah that's true
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
I LOVE RECURSIVE FUNCTIONS
is this what it feels to be powerful
Lol, what did you use them for?
recursion can always be rewritten as a loop, but it sure is fun :)
Sorry, I'm being snarky
we are covering trees in my data structure class
and my teacher showed us her method to create each method of the tree class
but it's pretty straightforward and difficult to understand for someone who's new doing this
so I decided to change every method she did
because I can understand better what's going on using my own way
and everything works so yay
it took me two days but it's worth it
and she made an extra method for two different methods
and on my way I didn't have to
nice
bien hecho @median trail
public class Whatever {
public static void main(String[] args) {
((java.util.function.Consumer<java.util.function.Consumer<java.util.function.Consumer>>)(f -> f.accept(f))).accept(f -> f.accept(f));
}
}```one liner to trigger a stack overflow in Java
idk how to golf in Java
maybe it's possible to make it shorter
doesn't look as good as ((f)=>f(f))(f=>f(f)) in JS
or any close equivalent
Fire engulfed a 48-storey high-rise in the United Arab Emirates on Tuesday, sending flames shooting into the night sky.
Seven people were reportedly injured in the blaze at Abbco Tower in the city of Sharjah near Dubai. Authorities said it wasn’t immediately clear what caused...
la realidad es que la gente no le importa la seguridad contra incendios
quizá el revestimiento sea inflamable
me parece que sí
wow
also i just realized
the us saw that the corona cases were going down
and it can be assumed because of self-quarantine
but then the governors and people thought that they could just reopen everything
but then the cases and risk of getting infected went up 
@eager wagon la medalla de plata 

my governor didnt want to reopen but he was being pressured 
Learning about files in java uwu
Qué nostalgia
I don't get why everything in java takes more steps than other programming languages ;-;
Por lógica
hahahah
to create a file I have to create the actual file, a "bridge" between the file and the source code, and the variable that will either read or write ;-;
Parecerá una gilipollez, pero a veces dar más pasos de los normales te ayuda luego de cara a problemas que se te presentan con cosas así
yeah
Si falla un fichero piensas
I realized when learning recursive functions
my professor likes one liners
but I don't understand the logic behind one liners
And I rewrote what my professor did, and my way takes more step, but I understand it better
Vale,
- Existe?
- Está abierto?
- Tiene permisos?
A mí java me ayudó con sus pasos largos a pensar mejor las cosas
yeah I agree
how many steps you need will depend on how the layers of abstraction for that language were designed
notice this doesn't mean more or less steps
writing a file in C is quite simple iirc
yea
I was comparing the amount of steps it takes to create a file in C from the amount it takes in Java
because there are no objects, so you might write on the disk without the steps of serialization/deserialization
it can literally be "ok let's write this... bits are just bits"
on the other hand, I'd say you'll have to check for things like permissions in most languages, since that's stuff reported by the OS
Java does a lot of work for you though, that's what languages are for
@median trail check this out, for example!
this is very, very bad code by the way
public class Whatever {
public static void main(String[] args) throws IOException {
int bytes;
while ((bytes = System.in.read()) != 'X') {
System.out.print((char) bytes);
}
}
}```
this will read your input from the stdin and print each byte as ASCII characters
in fact, it's very bad code beacuse I didn't think out the while condition quite well, lol != 0
now it will stop if it finds an X character
when you use something like Scanner and BufferedReader, many things are happening
things are never as simple as casting an int as char 
oh yeah we are using try and catch
oh yeah, Java's try block also has a try-with form (without the actual with word in it)
it works kinda like Python's with for example, but its functionality doesn't go as far, it will do the implicit .close() for you even if something fails
hmm
Oracle's documentation would be much easier to read if they added color highlighting to the snippets
jesus christ
I have the feeling they won't teach you streams
python's with is cool
if you have the time some day and if you have fun practicing languages and have some interest in Java, I highly recommend them as your next topic
Oh yeah many experts recommend learning troubleshooting methods
Java's streams are these things
public class Whatever {
public static void main(String[] args) throws IOException {
IntStream.range(0, 5).forEach(num -> System.out.println(num));
}
}```
prints 0 1 2 3 4
oh yeah
you saw interfaces
wanna learn how to make a lambda? it's quite easy
(but also a bit of a pain in Java)
you won't find any use for it any time soon though
streams work really well with lambdas tho
so the entire idea is that functions in Java can be passed, but functions are not "first class"
that means they need to be wrapped in an object somehow
for example
if you define void lol();, you can't pass lol as an argument
but you can pass an object with some interface, an make one of the methods be the function you want to "pass"
Java has a way to automatize this
the simplest way is the following, hold on
so let's assume you have the doSomething function, and you want it to be able to accept a function
this will look a bit weird at first, but I will write it in several ways:
you first need an interface with a single abstract method, for example:
interface MyFunc {
void triggerFunc();
}```
that triggerFunc is implicitly abstract
since it's the only method there
(you can add the abstract if you feel like it, abstract triggerFunc();)
now, that will be the interface for the function you pass around
so its type can simply be MyFunc
here's the example
interface MyFunc {
void triggerFunc();
}
public class Whatever {
public static void doSomething(MyFunc function) {
function.triggerFunc();
}
public static void main(String[] args) {
doSomething(() -> System.out.println("Hello!"));
}
}```
so, doSomething is a function that accepts a MyFunc (parameter named function, you can name it as you please)
as I said, the function is actually wrapped in an object
in this line:
doSomething(() -> System.out.println("Hello!"));
Java can infer the type of the function you are passing: the function you pass needs to match with the signature of triggerFunc, that is, the abstract method in your defined interface
since triggerFunc takes no parameters and doesn't return anything (void), then Java knows () -> System.out.println("Hello!") matches with that
and what doSomething gets is a MyFunc object, with the function you want in its triggerFunc() method
now let's rewrite the snippet a bit differently
interface Func {
int doIt(String word);
}
public class Whatever {
public static void doSomething(Func func) {
int result = func.doIt("Edsel");
System.out.println("El resultado es " + result);
}
public static void main(String[] args) {
doSomething(s -> s.length());
doSomething(s -> s.length() * 2);
}
}```
so here Func defines a functional interface for functions String -> int (gets a String, returns an int)
since that's what doIt implies
so now in doSomething we can get Func objects with that interface
given the name of the parameter is func, we can do func.doIt(someString) to use it, and it will return an int
that will print
El resultado es 5
El resultado es 10```
I'm gonna read all of this once my classes finish for today haha
no worries
anyway, these are named "functional interfaces"
you would usually want to use the interfaces from java.utils.function..., which has a bunch defined
or add the annotation @FunctionalInterface if you define your own:
@FunctionalInterface
interface Func {
// ...
}```
it will work either way but the compiler will check for some things if you do it
Lol, I left the throws IOException, that has nothing to do with functional interfaces
and well, streams are the main pillar for functional programming in Java, which allows you to do the typical stuff like "let's only print the names that start with Edsel"
import java.util.Arrays;
import java.util.List;
public class Whatever {
public static void main(String[] args) {
List<String> names = Arrays.asList(
"John",
"Edsel Di Meo",
"Batman",
"Edsel The Muscle Man"
);
names.stream()
.filter(name -> name.startsWith("Edsel"))
.forEach(edsel -> System.out.println(edsel));
}
}```
prints Edsel Di Meo Edsel The Muscle Man
last example, with an anonymous class:```java
interface Func {
void trigger();
}
public class Whatever {
static void doSomething(Func func) {
func.trigger();
}
public static void main(String[] args) {
Func wrap;
// we make a new object "on the fly", from an anonymous class
wrap = new Func() {
// we need to override `trigger`:
public void trigger() {
System.out.println("Hello!");
}
};
// now we pass that object to `doSomething`, which will trigger the method contained in our object
doSomething(wrap);
// same practical effect as:
doSomething(() -> System.out.println("Hello!"));
}
}```
is this the chanel where nerds talk?
coz i need help
Hello guys. I'm a student of the IB diploma and as a part of my course I have to explore an area of mathematics. What do you think are some good areas of mathematics to explore. I was thinking of researching cryptographic methods and comparing which one is the best but there isn't any complex math used. I was thinking of doing complex numbers / calculus so does anyone have any ideas of what might be a good research area in complex numbers/calculus? Any help is appreciated!
researching cryptographic methods and comparing which one is the best but there isn't any complex math used. xD*
isn't any complex math used*

bruh
researching cryptographic methods and comparing which one is the best but there isn't any complex math used
wat
mi comprensión es que la codificación depende mucho en la distribución de los números primos
por consiguiente hay un relación fuerte entre la codificación y la teoría de números
y la teoría de números es una muy complicada rama de las matemáticas
Too much work to do, people just disappear, and I got to do what they were supposed to. I have to cover more topics for some classes but I don't have enough time, so I guess I will have to give up on sleeping 8 hours @vestal pine
cuál es tu trabajo Edsel?
Well... I wish I didn't have to, but I wanna pass...
I just need some time to cry and vent, and that's it. I don't even have time for myself
@still radish Well there's this project for my networking class in which we have to set up a network, design how each device is gonna be arranged in real life, document each port, address and such of each network, and choose what we would buy for this project and why
and this is not that hard
but taking into account a have more classes that require attention and tests coming soon this makes everything harder
since the time I can use for each class is very short
but yeah I'm just gonna cry for a few minutes, and I'll be fine I guess
I don't have time to complain
oh... es un proyecto de grupo? 😡
I mean, I think they didn't disappear deliberately
I guess there's a reason behind that
fue el COVID-19? 
idk
What that means?
Number of members*
there are 14k people in server
Nice
Por favor, les estaría muy agradecido si me respondieran esta encuesta, es para un trabajo de investigación. Muchísimas GRACIAS. https://forms.gle/ASZf74YLUKgtKn3aA
@spice pasture ya tienes dicotomizada la variable de edad?
Yo estoy haciendo una igual pero la variable edad la edad la dejo con respuesta abierta
Para luego segmentarla y en el análisis me aparezca más cómodo sabiendo de donde apareció ese valor
??
@sweet cape Es más que nada para agilizar el proceso, al poner rangos de edad evitamos respuestas troll y si hace más rápido tratar los datos. Aunque sí, creo que para ser más exacto es mucho mejor a respuesta abierta. Muchas gracias por comentar, siempre va bien consejos o ayuditas. Saludos CRACK.
hola
@still radish hay diferentes clases de algoritmos de criptografía. algunas cuentan con números primos, y otras no
hello there uwu
es común para la criptografía asimetrica
I have this hw for tomorrow where I have to like distribute different circuits in a house depending on the electronic devices the place will have. It's important the way I arrange every circuit and the devices I include in every circuit because if lights go out on one part of the house, then it shouldn't happen in all the house

my mom is helping me since she's an electrical engineer
qué familia lista tienes
I decided to major in engineering because my mom, step father and father are engineers
nadie en mi familia es ingeniero xd
ohhh so you are the first engineer in your family?
ohhhhhhhh that's cool uwu

@median trail entonces, estudiás la informática y la ingeniería?
creo que en su país informática es una tipa de ingeniería?
@glass dragon just remembered to ask if/when you watch afterlife tell me wha u think of it lol
anybody got advice for 7th graders because ion know what to say jskff
i mean thats kinda drama
hmmmm...
doing homework, getting good grades and being participative don't make you boring nor a nerd. You care about your future, and that's fine?
so you just meet new people
owo
and probably from that "whole variety of people" you will meet probably there will be only like 1 or 2 real g's
jk jk

Middle school was the woooorst
What did you have when you were 13, 14, maybe 15 then idk how the British school system works
tenía 13 años
primary until 11
secondary 11-16
college/sixthform 16-18
college is semi optional
you dont have to go so far as you're in some form of training
most people go tho to some degree
yep
Were the 11 year olds bullied a lot by the 16 year olds
year 7s are little shits
nah they're basically ignored
by the time ur in year 11 you just ignore the children
cos of the ages the size disparity is so large you can't even bully them
True
literally no one is a big enough cunt to do it
sorry except bizzle
@vestal pine u bullied the y7s right
who didn’t
fuckin pricks
shouldn’t think they’re all hard
@gentle heath I wouldn’t call it bullying though
didn’t do it all the time
just put the little cunts in place when needed to
no im not that much of a cunt
@vestal pine I watched the first episode yesterday and I thought it was funny enough to keep it on my watch list
hahahahahaha
which show?
^?
Hello and welcome to Feature History, featuring The Spanish Civil War, zero mic etiquette, and a super subtle political lesson.
History of Spain
https://www.youtube.com/watch?v=nPcfZLaMoAo
Patreon
https://www.patreon.com/FeatureHistory
Twitter
https://twitter.com/Feature_His...
😬 
confayderaysion nashional del trabacko
why hasn't anyone made a meme like this
"R^3 and P2"
they are the same picture
😛
Nicely done
which show?
@gentle heath afterlife with Ricky gervais
oh yeah good one that
quality la
Polynomials of degree 2
because of the 3 cooefficients?
so R^3 and P2 are isomorphic(?)
is that the right fancy maths work
word*
I see you are a man of culture uwu

Oh I see, in linear algebra those two are considered isomorphic
this is pretty much why
they are "the same"
and this happens with R^(n) and Pn-1
guys how do I record zoom screen?
like I can record audio
but if my teachers are sharing their screen
obs doesn't record that
I think there was some issue on Windows to capture certain windows with OBS
for example in Chrome you would need to disable the hardware acceleration rendering in the browser so OBS could capture it
if you capture the entire screen, it should work just fine though
I don't know a solution, but that's a clue I can offer
lo sabía
Vale, ¿Cómo funciona el mando de preguntas? Ya he visto preguntas con respuestas aún siguen en la lista de preguntas. No entiendo
creo que el preguntador debe escribir ;q a
@still radish Es que yo creo que hay normas de la gramática, aunque en ciertos casos no son obvios. Por ejemplo, en la pregunta Where are you from? se puede contestar con I am from the UK o the UK o UK. Pero la diferencia entre cada respuesta se puede ver en la estructura. Veamos en las primera dos respuestas, ambas son gramaticalmente correctas, sin embargo la última, no. ¿Por qúe? En mi opinión, como no se puede sustituir UK en la respuesta inicial, diría que no es gramatical. No obstante, para contestar la pregunta, yo creo que decir la ubicación, la ciudad o el país es lo suficiente. ¿Es correcto de la manera gramática? Yo creo que no. ¿Bastará para una contestación? Yo creo que sí.
tienes razón amigo
my notes when practicing recursive functions 😁
bien hecho 👍
@still radish https://youtu.be/wopmpzc7M9g
Jane Eyre by Charlotte BRONTË Chapter 33
Charlotte BRONTË (1816 - 1855)
Primarily of the bildungsroman genre, Jane Eyre follows the emotions and experiences of eponymous Jane Eyre, her growth to adulthood, and her love for Mr. Rochester, the byronic master of Thornfield Hall...
16:57
No sé cómo agregar tiempo
Hahahaha!
¡Es cierto! No había oído la primera parte del video
es la manera de EEUU?
No tengo idea, haahha, quizás
O tal vez pensó que sonaba más UK de esa forma
Como yo lmao
Silly me
Pero no persevere
claro
I see now
inglés xd
I agree that it sounds weird
I think Egg's right, it's like an American trying too hard to sound British lol
I agree with you all.
lol @ this captcha I had to fill in the Xfce forums
Quiero querer estar queriendo haber querido

oh no
Is he learning IP connection?
yeah this is a huge project, like I still got a lot to do
I still have to use static addressing and set up all the config of the switches and routers
and a few more tasks
What do you mean with fake
like they are not real?
we were provided with an IP for the project, so yeah they are not real
but the way we do this is how people do it irl(?
I saw someone post a really smart-looking spreadsheet with a diagram, so here’s this
Can someone peer review this quickly? It'll be a gaming video where u can build empires and stuff and u want to check if the intro is ok
its fine
From Justin Timberlake to the Bee Gees, we charted the popularity of men singing high.
Become a Video Lab member! http://bit.ly/video-lab
It’s nearly impossible to turn on the radio and not hear a male artist singing really high. Likely he’s a tenor, and more often than not h...
@tulip tulip es interesante
bienvenido al club señor @gusty ermine
Yo no comprende la pregunta
*it wasn't a question mate I was just saying welcome to the club @gusty ermine there are quite a lot of us here
qué hace?
Es para hacer emulaciones de topologías de red
owo
nah, no es complicado pero si es bastante estresante cuando no te sirven las cosas xD
como todo supongo
sí las cosas son difíciles hasta son faciles
nah, no es complicado pero si es bastante estresante cuando no te sirven las cosas xD
me when checking the segments going from one device to another
Oh Thankyou! 🙂
I feel like I'm about to have a heart attack
I'm just scared for what's about to come
I have so much to do
and I don't want to fail
I have three proyects, and I already finished one
but in one of them I'm.completely alone
because my team mate disappeared
and I haven't heard of him weeks ago
I’m pretty sure medical issues are usually acceptable excuses for missing assignments
and I have this test on friday which seems hard
and I don't want to fail 😭
I'm anxious
If you die, you definitely fail. Go to a doctor
😭
I just need to relax
I just don't know how
"average" methods for relaxing don't work with me
Hi, edsel, have you tried watching the latest episode of el mundo y el pais? I know you like it too 
I don't have time for this I'm gonna get back to work even if I die
This one is pretty hilarious too
Hi, edsel, have you tried watching the latest episode of el mundo y el pais? I know you like it too
@last loom yea
Oh crap, well there's another one called "bla bla bla" it's hosted by led varela, I haven't watched it yet but I like him as a comedian. 
@median trail sigues vivo?
edsel, call a doctor
no
😬
I feel like I'm about to have a heart attack
@median trail let me introduce you to Anxiety
season 1
I just don't want to make this a bigger deal than it actually is
this is just me stressed over something that doesn't require this amount of attention and can be sort out easily
most likely

but what if it IS a big deal? 
well... idk this happens every time
I must to learn how to deal with it. I just don't know how
Aka "I should ask what I should do in these types of situations."
Aka calling a doctor.
I'm pretty sure psychologists can help too
and my college offers free mental health services or something like that
basically you schedule an appointment with a psychologist
go for it then :o
I did last semester. Idk why I haven't schedule one this semester
how did that one go? 
pretty well
oh wait I remember why I haven't scheduled more appointments
the psychologist that helped me last semester quit their job
so...
yea
😛
there should be. My uni has a psychology department haha
and it's the most popular degree offered in my uni
ooh c.c
I guess you're not taking that one since that way you could've gone to the mirror and get yourself checked lol
well duh of course not lol but still 
hahahah
I gtg
see you
gl with that! :D
That joke reminded me of the old proverb. You go to a small town with two barbers and you need a haircut. One barber has terribly cut hair, bald spots all over the place and super patchy. The other barber has amazing hair that looks perfect. Which one do you go to?
i don't get the point
It’s a question. Also, I didn’t say there was a point, I said I was reminded of it XD
The answer is that you should go to the barber with the bad hair for your haircut.
why
Because. There are only two barbers, that means they have to cut each other’s hair.
LOL
My barber is bald
CALVO

I would much rather be bald than have my hair too long
So during self-isolation, I’m bald
XD
Haha
I solved this in one hour!! I'm so proud of myself
(all of them have to be recursive except number 4)
the first one was really hard but I solved it
to be fair in 5 of them I followed the same pattern
the first one was the only one really different
I had to change the first one but I fixed it

@median trail me alegra que todavía estás vivo 🙏
Y si no te responde en unas cuantas hoas, tendrás que retirar lo que has dicho
||espero que lo dijera bien||
@still radish I just had to convince myself that I wasn't failing as my mind made me think
Like it's not objectively true that I'm not doing well.
te entiendo
so... I'm just telling to myself 'this is not real'
la ansiedad es normal che
I guess so
(me gusta leer esta conversación, un huevo que habla inglés usa el español y a la inversa(?)
)
sí... yo y Edsel somos contrarios
él no quiere hablar español y tengo el rol de hardcore
Oh eso es el rol de ese rol? 
sí hablo en inglés se borra xd @gusty ermine
puedo hablar en inglés si utilizo los asteriscos
Ay, cuánto tuviste?
Type ;q <question text> to make a question, or do ;help q. For now, here's the questions list:
#🔸preguntas
By @tulip swallow in #📗・preguntas-lounge
can someone explain to me the phrase "cero y van dos"? i heard it in a tv show, but since there's no easy way to upload the scene that i heard it in, i just googled the phrase to try to find another example. i found this tweet
Jump URL
#🔹questions
By @brazen veldt in #📘・questions-lounge
Responses: 1
;q What is the difference between cursorily and perfuntorily?
Calanthe, raising her hand perfunctorily, accepted his explanation. Urcheon advanced, his
spiked armour clanging.
Jump URL
By @brazen veldt in #📘・questions-lounge
Responses: 1
;q Difference
jab
prick
poke
stab
Jump URL
By @past harbor in #📘・questions-lounge
;q Gonna vs Will ante situaciones de certeza.
Jump URL
By @past storm in #📘・questions-lounge
Responses: 1
;q are these words formal or common?
1)dressiest
2)gown
3)giddy
4)rousing
5)suitor
6)foggy (as in unable to think clearly)
6)hang-up (emotional problem ig)
7)enthused
8)vain (as in futile and as in shallow)
9)afflicted
Jump URL
#correct_me_please
By @crystal kraken in #📝・correct-me-please
;q Cuando me encuentre de buen estado y no me haya tocado tanta tarea, me esforzaré mucho para aprender
Jump URL
;u 550098642871255068
Last 30 days
5735 | 1994
#general: 51.07%⠀
#🔸principiante: 19.39%⠀
#🔹beginner: 5.98%⠀
12h 55m
107 times
😂 100 times
100 times
Spanish: 71.6%
English: 25.4%
Es muy bueno :v 71.6
antes fue 90% inglés xd
xD
Mopas, quieres ese rol?
Last 30 days
2087 | 545
#🔸principiante: 58.94%⠀
#🔹advanced: 15.29%⠀
#🔸preguntas: 13.32%⠀
117 times
👌 89 times
86 times
Spanish: 66.5%
English: 31.9%
a mí me parece inútil porque a veces le ayudo a otros y debo escribir en ambos
en todos esos canales ese rol no funciona 
sí no es útil para los otros nativos
sí, a veces ayudo en #📘・questions-lounge y además tengo que practicar el inglés tmb 
;uc
Last 30 days
1) 🔸principiante: 58.88% (1230)
2) 🔹advanced: 15.27% (319)
3) 🔸preguntas: 13.31% (278)
4) 🔹questions: 6.99% (146)
5) bot: 1.96% (41)
6) 🔸avanzado: 1.91% (40)
7) off_topic: 1.53% (32)
8) 🔹beginner: 0.14% (3)
Last 30 days
1) 🔸principiante: 37.77% (5115)
2) bot: 16.57% (2244)
3) 🔸avanzado: 11.35% (1537)
4) 🔹beginner: 8.41% (1139)
5) general: 6.72% (910)
6) welcome: 4.95% (670)
7) 🔸preguntas: 3.48% (471)
8) 🔹advanced: 2.69% (364)
9) 🔹questions: 1.0% (136)
10) sesión_de_lectura_1: 0.72% (98)
11) message_a_mod: 0.69% (94)
12) correct_me_please: 0.41% (56)
13) voice_text1: 0.29% (39)
14) off_topic: 0.21% (28)
15) channel_feedback: 0.11% (15)
16) 📹videos: 0.09% (12)
17) memes: 0.08% (11)
18) voice_text2: 0.07% (9)
19) ┊🔖▸roles: 0.04% (6)
20) 🎨art_arte: 0.02% (3)
21) 🎮games_juegos: 0.02% (3)
22) voice_text4: 0.02% (3)
23) ejercicios_discusión_es: 0.01% (2)
24) learning_resources: 0.01% (2)
25) aotw_feedback: 0.01% (1)
👀 ...
;uc
Last 30 days
1) general: 51.04% (2931)
2) 🔸principiante: 19.36% (1112)
3) 🔹beginner: 5.97% (343)
4) sensitive_topics: 5.66% (325)
5) 🔹advanced: 4.48% (257)
6) 🔸preguntas: 3.92% (225)
7) off_topic: 3.9% (224)
8) 🔸avanzado: 3.13% (180)
9) voice_text1: 1.46% (84)
10) 🔹questions: 0.68% (39)
11) memes: 0.23% (13)
12) bot: 0.17% (10)
I gtg, I can't believe I've been on here for a few hours straight 
xD
Mopas, ve a repasar esas tarjetas
yo también me voy
dame 2 minutos, te enviaré algo
creo que me voy a hacer ejercicio o cualquier cosa, nos vemos después espero
Ese porcentaje como lo calculan?
Por los canales que has hablado en español?
No entiendo el porcentaje que dice Spanish : ...% English: ...%
Es decir, en base a que lo calcula, a escribir en ese idioma? A hablar en canales de vc? Hablar en texto en english/spanish channels?
You lack permissions to do that.
oh se me olvidó que ya no funciona
does anyone know how the heck I typehint a frame object in Python?
found my answer just reading the docs, it's types.FrameType: https://docs.python.org/3/library/types.html#types.FrameType
why is my systemd drunk
La cosa es que yo pienso en ingles pero hablo en español a expressar mis ideals
Guys
BioShock's twist ending is so godlike
It's like done so well that you can guess what's gonna happen by a few things before he encounter but then when it's confirmed you're like, "I did not see this turn of events, even though I thought I did"
Which Bioshock?
||idk why I ask I haven't played any of them lol||
^Not an actual spoiler
The first
The seconds story is really bad imo, at least so far as I'm close to finishing but nothing has really happened.
I have a pair of friends that have very different opinions about Infinite
Like on loves it and calls it masterpiece and the other thinks it's plain idiotic and ruins the whole series
So if you ever play that one let me know so I can tell them who gets their tally mark lol
@brave mango I haven't played it but I'm about to in the next few days and I know a lot of people hate that game because it develops the idea of a multiverse and how all the worlds are connected and shit you just don't know it
Also apparently it's really easy and dumbed down a lot of gameplay aspects in the original 2 but like the original 2 aren't perfect. Like far from it in fact. The gameplay of both is just plain repetitive at portions, another critique of infinite, but you know infinite has its perks
Bioshock 1 pros:
Old 50+60's music
Cool setting of rapture and being creepy
Really sick iconic gaming moments that some games never will rival
One of the first shooter/RPG hybrids
Amazing story with a twist that's mind bogglingly good
Cons:
Not the best shooter in the world.
Annoying as hacking mini game (and you do a shitload of it). Loading screens on the oringal is ass. Controls feel really wonky if you're not playing the PC version.
Controls feel wonky if you're not playing the PC version
My opinion of every shooter lol
There is beautiful girl in my group. I want to befriend her, but we don't comunícate... And I have no idea how.
😭
eso paso a mi también
Just befriend her like she's a normal person
that's ridiculous
Ok. How do people make friends?
@brave mango well then you'll be right at home. Also, different people prefer different things in their games. Like I personally adore halo 2 to 3, I think breath of the wild sucks, and my favorite game ever is Lego star wars the complete saga
Different strokes for different folks
bioshock infinite 10/10 brian approves
lemme see, i wrote it
I'm curious if you pro gamurs here had to list like your top 10 favorite juegos (not in any order) what would your list look like?
ok, i have it
first thing, i couldn't experience bioshock 1 or 2 well because they made me sick. literally sick, as in motion sickness, so there's that
what I liked from bioshock infinite i think is that the gunplay was fun, and the story was also something grabbing
can't truly explain why the story is so exciting without spoiling it I think, but it was good science fiction
I see
Brian if you played Bioshock on the PC there's two things. Did you turn off the motion blur and did you drink the alcohol.
nah it was on ps4
kinda stomached my way through both first games because I liked them
but it just ruins it a little
prob because of the headsets, now that i think of it. it also happened with half life (which is also an fps and i used headsets)
so it must come from 1) my ears not being comfortable 2) dark colors and being indoors 3) first person
i played bioshock with some cheap earphones so the only same thing was first person
Friends... Gross
es una serie genial
odio active directory wtf
dejá de decirme que la relación de confianza se caducó akdjsakljdklasjfklsajkflasjklvsklcaskljcaskljcs
haha
;uc
Last 30 days
1) voice_text1: 82.61% (19)
2) welcome: 8.7% (2)
3) bot: 8.7% (2)
no entiendo esto
como voy a escribir mi respuesta ahí si soy el receptor del mensaje
Juanisimo
El viejo aj
isn't texas a country

*chile
I’m particularly fond of the Kenya flag
no me parece bien
@main hatch kenya flag is whack yo
la de sri lanka es copada tb
panama is a pretty sick flag ngl
tho canada deserves better
*eh canda is meh, it's unique but not cool enough
canada's got a fuckin leaf, leaves are dope
wow ok uk does not deserve to be there
*it's not the worst but it's still kinda ugly
*looking back, I would probably increase the blue with the white star
*and maybe colombia
*but the rest are so ugly lol
somalia that is
i like the philippines' one idk
and papua new guinea
pft zambia deserves to be down there that's a hella ugly flag
*aha for sure
*the red + crescent and the star would go higher
*I can of did this fairly quickly
*lets go
but that's not even all the world flags
wtf why they all blue lmao
mine broke but i think we all know what the superior flag here is
wrong
it's hawaii
*ugly
why they gotta be white tho
- S & A are the best
terrible judgement on your half
*hell no
all the flags that had the state names on them were automatically D's for me
tf is the point in a flag if its got words on it
*and what if this one had the words out of it
itd still be shit cause its white and basic
*you like the hawaii one with all those stripes
- i admit it loks better when flown
*however, just looking at it, I wouldn't change it
yeah see no one can be arsed with all the farty details of the other ones
and whats that flag that's literally closing in on itself lol
shite that
*god tier
texas at the bottom no
they didnt copy off of them
you cant verify that
its simplistic and represents the state well
is that ohio
*yes
it isnt that bad
*looks like someone was trying to be all intricate
ah that's the one closing in on itself
*it's not awful but it's the worst one
i guess
*epic, whats ur fav?
texas, california, colorado
classic
*These photos look so photoshoped
it looks fine
*some corporate logo
ladrón
still
it doesnt state that it got inspiration
also texas has a darker shade of blue
well where the fuck else would they get it
they had 20 long years to come up with their own idea
still
it is different
longer blue
larger star
darker blue
now australia and new zealand
Lazy!
and this can be backed up lmao
pfft yall didnt get independence for this
oh i wonder why, it's not like it was an american colony or anything 
exactly
*my town of salem account got hacked 😔

puedes decir gracias
*microsoft customer support number is useless
*finally
@rain ermine I think you can actually "ctrl+a" and then choose "crop" at the top
Alright I’ll get that in mind 
look at the difference when reacting to egg and when reacting to amaroq
conozco mi lugar @past storm
i see i see
epic hace u never used ms paint
tfw you configure this many routers, but for some reason the ipv6 command doesn't work, so you decide to configure them all with an ipv4 address ;-; first
And I think I will have to delete all the data in router 2
because I configured an interface that's not being used
because I thought it was the one that is
;-;
(it's annoying because I gotta configure everything again, and it's a lot)
but hey
most of it work
I gotta find out how static addressing works
my teacher already told me, but I forgot owo
magneton
I have many times @junior thicket
OMGOMGOMGOPMGO0IFCER
MY TEAMMATE IS BACCCCCCCCCK
my teammate for my networking class project
Static addressing no se hace con un archivo especial?
No recuerdo dónde se halla
O con ifconfig?
@median trail hay alguna razón no podés usar "default"?
como:
default interface gi1/1
I can now
I was using routers that didn't support ipv6
because I forgot that modules exist
;-;
Static addressing no se hace con un archivo especial?
nah I have to use a command
In which protocol OwO
Yo why I didn't know that here's so many people that know about networking, it would be helpful the last year
I mean what protocol of routing
Ospf
@median trail btw here's another way to write strings in Java, going back to that topic
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.Arrays;
import java.util.List;
public class Whatever {
public static void main(String[] args) {
List<String> lines = Arrays.asList("Uno", "Dos", "Tres", "Cuatro");
try {
Files.write(Paths.get("list.txt"), lines);
} catch (IOException e) {
e.printStackTrace();
}
}
}```
Files.write(Paths.get("list.txt"), lines); will write "Uno\n", "Dos\n"...
the nio package is quite nice ||as nice as Java allows it to be||
Oooooh
I have a question
what's your plan when you want to make recursive functions?
I don't
I don't really have to use them in the stuff I do, really... I've used them for some generative art, but not a lot
I have a strategy when it comes to the exercises that involve movement
Then there's that recursive lambda abomination from the other day, but that was a joke
like checking each node in a tree
depth first search?
ehmm
like
if I want to find all the nodes that contain an even number
I have to check each node
so
it involves movement
I use the structure of the inorder function
and this works for any exercise that involves checking each node
because you have to move and check
but I don't have any strategy for these kinds of exercises
it took me three days to figure it out
I could solve these using the same structure as above
I just had to change it a little bit
hah, I haven't written a self balancing binary tree in 10 years
it's hell
but hey I figured it out
even though it took me three days
but I've been the only person who figured it out in my class as far as I know
well everything you learn there is just to know how to think algorithmically

like
I'm afraid
like
this test is gonna be hard I think
I mean my teacher is okay when it comes to choosing questions for tests
but Idk
linked lists? they're a joke, no one writes that irl
this is completely different from what I've ever done in engineering
no
trees
and recursive functions
I was talking in general
ah
people still use trees though, and there are many libraries that implement them
it's alright, I'm just saying I'm afraid of not passing this test
but afaik some people still need to write their own for very very specific jobs. Don't ask, I don't know
well don't be afraid (?)
there are multiple chances I suppose
true
I'm gonna try to plan find a way to figure this out in a simpler way that I can use in any exercise regarding balancing
or you could try to write a wrapper for java.util.TreeSet
(?)
import java.util.TreeSet;
class MyTree<T> {
TreeSet<T> tree = new TreeSet<T>();
void add(T element) {
tree.add(element);
}
}
public class Whatever {
public static void main(String[] args) {
MyTree<Integer> tree = new MyTree<>();
tree.add(1);
}
}```There.
it lacks functionality and some usual Java OOP practices but hey
it werks
I'm gonna try to plan find a way to figure this out in a simpler way that I can use in any exercise regarding balancing
if the theory they gave you isn't good, try some other resources
this is a common topic in college
or you could try to rwite a wrapper for java.util.TreeSet
Y así fue como Dave el bárbaro construyó un megáfono con un pedazo de cuerda, una ardilla y un megáfono.
got em
UWU
https://www.geeksforgeeks.org/continuous-tree/
I tried this exercise and solved it in a reasonable time
yeah using recursive functions

I feel proud of myself because this was something very different, and I could solve it






