#đă»general-2
1 messages · Page 153 of 1
@median trail tuve que hacer eso tmbn en uno de mis cursos de python. tmbn en excel.
pero no recuerdo nada
tengo ganas de comer una buena salsa de tomatoes
con pasta
uwu uwu Felicidades bus
UWU i passed linear algebra (my grades are the columns in yellow and blue)
the green one contains the grade I'd need to have in the final
(it's negative because I already passed)
felicitaciones
why did youtube recommend this to me ;-;
Lol youtube gives me the same recommendations
algo peor/mejor
wtf
quién es
en serio no la conoces?
Kim Yo-jong?
no la conozco
@still radish quieres que te doy mis notas? :v
que te dé*
notas de que @shrewd fjord
hahahahahahah
1900 blitz on lichess
@still radish
@marsh linden impresionante
yeah
I have a serious question. Should I change my avatar on little Yoda?
no
ya ha cambiado su foto
quién?
Lol what I got today
oh lol I just noticed it's a ship of princess bubblegum and the guitar girl from adventure time đ
Marceline
It might not actually be a ship
I haven't finished the series
But I have seen some things floating around like "omg it's true!! Confirmed!!" And I hurry scroll past it so I don't see
so calling it a ship implies it isn't canon?
I thought so
is my thinking incorrect? Am I incorrectly defining it?
QuizĂĄs
Ouch đŹ

It got crushed in the gears of a car seat
F
D:
:D
c is a function that maps to the (weak) positive reals
what does weak mean in this sentence?
help me maths geniuses đ
I have no idea >_<
and where did you get this from?
c is a function that maps to the (weak) positive reals
a paper im reading

Which paper nexus
Also is this the math channel now đđ
Also nexus often such definitions depend very much on the author and the paper you are reading since often they don't have a well defined meaning
@marsh linden
i can link the paper
Sure @marsh linden
Yeet
if i keep going down the road im going down atm im gonna have to start asking questions about things like this 
I was scared for a sec when you said page 1130
Ye
tengo miedo @marsh linden
es para la universidad?
im about to start writing my thesis
and im gonna base quite a bit of it on this paper
Thanks xd
Looks like a cool paper but idk what weak means here...
It probably don't matter too much tho
I'll ask around...
I'd really appreciate that đ
I remember weak and strong formulations from finite element analysis
Yea the thing is thst these terms often differ from subfield to subfield and even from author to author
i can imagine
Weak formulations are important tools for the analysis of mathematical equations that permit the transfer of concepts of linear algebra to solve problems in other fields such as partial differential equations. In a weak formulation, an equation is no longer required to hold ab...
mmmm
Apparently I have the mind of an East Asian person đ€·ââïž
The first relationship I thought of was âCow and grass, because cows eat grass.â
well you might've influenced mine cuz I literally couldn't come up with a reason to pair anything other than the cow and the grass
Woops XD
i paired them cause they're visually similar 
Which part of the world do the people who put the chicken and grass together come from 
Narnia
Which part of the world do the people who put the chicken and grass together come from :peepowide:
East Asia apparently, as it too is a relationship like the one between the cow and the grass
Gracias, hihi
It's a bit complicated, haha
Haha đ
For my education, I got to pick a second 'study' which I'd have to follow for 6 months (one semester). After that, my regular education continues. I could pick literally anything and I was interested in learning Spanish, so I picked that.
I'm still learning the basics. How about you?
Woaw! Nice
I am too! I am learning spanish at school and have studied myself a bit too.
But I am still a beginner definitely.
Cool (: For how long?
About a year in school! đ
Signe! :D
if i keep going down the road im going down atm im gonna have to start asking questions about things like this
@marsh linden gross
YUP
:((( im so sorry
đ
I didn't know portuguese was that similar
Oh, it is.
Perhaps the accent is what makes it less understandable, but it's quite easy to read.
haha, si.
en el salĂłn?
En la sala de estar?
Osos
qué hace el programa?
De doble
por dĂłnde salen los ceros?
Cada vez que instancio un array lo rellano con ceros
Pero en la funciĂłn, esos ceros deberĂa ser sustituido
Pero todavĂa me queda dos ceros misterios 
pon el cĂłdigo si quieres
void mergeArray( double * array, int size, double * array2 , int size2 )
{
int new_size;
new_size = size + size2;
double * temp;
temp = calloc(sizeof(double), new_size);
for (int i = 0; i < size; i++)
{
temp[i] = array[i];
}
for (int j = size ; j < new_size; j++)
{
temp[j] = array2[j - size];
}
array = realloc(array, new_size);
array = calloc(sizeof(double), new_size);
for (int i = 0; i < new_size; i++)
{
array[i] = temp[i];
}
}
void main(int argc, char const *argv[])
{
int size1, size2;
size1 = 4;
size2 = 7;
double * test_array_1 ;
test_array_1 = calloc(sizeof(double), size1);
double * test_array_2;
test_array_2 = calloc(sizeof(double), size2);
srand(time(NULL));
for (int i = 0; i < size1; i++)
{
test_array_1[i] = rand() % 100 - 50;
}
for (int i = 0; i < size2; i++)
{
test_array_2[i] = rand() % 100 - 50;
}
mergeArray(test_array_1, size1, test_array_2, size2);
//sortArray(test_array_1, size1+size2);
for (int i = 0; i < size1 + size2; i++)
{
printf("The index %d has element %f\n", i , test_array_1[i]);
}
free(test_array_2);
free(test_array_1);
}
AhĂ estĂĄ

is it possible that 0 values are being generated in the random part?
I guess not...
@gusty ermine do you have a printout of the arrays before/after?
en el mismo sitio?
crea una function que imprima los valores de un array
y no serĂĄ porque utilices punteros en la definiciĂłn de mergeArray?
Lo curioso es en C, arrays son punteros xD
De ahĂ que no pueda psaralos de otra manera
entendido
No, es raro no te preocupes
11
El Ășltimo de array uno y el primero del segundo
PensĂ© que eso serĂa el Index antes?
bueno...
Pero no sé
a ver...
No he intentado eso
cierto
Por quĂ© index 3 ya tiene nĂșmero
SĂ
Eso pensé también pero no sé
Puede ser tantas cosas
Porque en C tiene que ser responsable para todooo
Es una pesada
This server is like the "HelloTalk" app on steroids lol
"Hey Siri, who created Discord?"
"...Jason Citron"
ÂĄGracias Jason Citron!
@gusty ermine
I get the first array ok, the 2nd one starts two positions later for some reason
`array1 position 0 = 14.000000
array1 position 1 = 46.000000
array1 position 2 = -13.000000
array1 position 3 = -4.000000
array2 position 0 = -26.000000
array2 position 1 = -50.000000
array2 position 2 = -43.000000
array2 position 3 = 32.000000
array2 position 4 = 24.000000
array2 position 5 = 23.000000
array2 position 6 = -45.000000
The index 0 has element 14.000000
The index 1 has element 46.000000
The index 2 has element -13.000000
The index 3 has element -4.000000
The index 4 has element 0.000000
The index 5 has element 0.000000
The index 6 has element -26.000000
The index 7 has element -50.000000
The index 8 has element -43.000000
The index 9 has element 32.000000
The index 10 has element 24.000000`
SĂ eso es mi problema
Es triste @calm flax
Ya estoy comiendo chocolate para animarme
lo curioso es que el array temp dentro de mergeArray tiene los elementos correctos
@gusty ermine the calloc line is the problem
my guess is that it's allocating the array in a non-contiguous place in memory
then you re-allocate it
and there's 2 double's worth of memory in between which is empty?
Consideré algo semejante pero no lo intenté
What > and there's 2 double's worth of memory in between which is empty?
*
that doesn't make sense either
Es una funciĂłn cara
because you calloc before you assign the values...
SĂ
Es qué pensaba que tienes que inicializar después de mover el array
porque antes era del tamaño 4 y tiene que ser de tamaño 11
y por qué haces calloc?
Que no puedo hacer matemĂĄticas
sabes lo que deberĂas hacer?
realloc al nuevo tamaño
usar calloc también
y colocar el segundo array en memoria dentro de array donde deberĂa empezar
a ver si soy capaz de hacerlo yo
if it's contiguous memory though it shouldn't be a problem...
It's like*
Hardcore deleted a long message:
Arrays just like have to exist a priori to be used and cannot be returned in a way other than a pointer. Perhaps can change the function to just return the pointer of the temp array*
well if it was a function I guess
oh gotta love some c
ye I'd just make that temp array like you did and return the pointer
also I've not read up the chat too far but why calloc and not malloc?
I've been using cpp lately so the C memory allocation isn't so fresh in my head
I just put strip lights up in my room and I can set them to be bright red and it makes it look like Iâm opening a portal to hell, insidious-style
When I can play the violin proficiently, Iâm just gonna be waiting for the day somebody breaks in, so I retreat to my room, turn on the demon lights, and start playing some ominous music on the violin with the door closed
Mhm I am thinking of what rigs to go for largoies
The only rig I know is drop shot rig
I hate fishing it in grassy cover so I end up using a frog or smth
Iâm no expert fisherman. My area is hunting and somewhat trapping đ€·ââïž
When I go fishing, I put a hook, a bobber, and a weight on it XD
Unless Iâm catfishing or in the ocean
Bruh
Then no bobber
So do you just catch small sunfish and the like?
Mostly brim in the river, which is most of what I do
In saltwater... mostly small croakers
Crikey sounds good
Or rays, skates, and small sharks
Like I said, fishing isnât really what Iâm into, I do it more just for the peacefulness and to hang out with people XD
I think hear would work, because itâs an expression rather than a literal statement đ€·ââïž
Hmm
Anyway my hooks and lures too big
I think imma go back to small hooks, sinkers, and a bobber
And just pieces of stale bread or something
As a complete novice, that sounds good to me
Though Iâve never used bread. Usually worms and crickets for river fishing and squid strips and shrimp for saltwater
The only live stuff I use is the crickets. Squid comes in strips and raw shrimp comes in bags on ice
Iâm such a delicate person 
Oh believe me, Iâm the same way. I spent like an hour the other day trying to catch a mouse by hand in a small closet because I didnât want it to get caught in a glue trap and have to die
Oh I meant Iâm the slightest squeamish (although not really)
Mhmm I want to try with poppers tho
But the fish too small
đ«
đ€·ââïž
Eh time to look elsewhere thatâs not filled with people
Where I live is sorta rural, so I donât really have to worry about that.
Mhmmm
As a matter of fact, the river where I occasionally fish is only a short hike away
If I wanna go saltwater fishing, itâs like a 30 minute drive
Fish for some flounder

Alguien sabe circuitos eléctricos?
okay
I think I can help
Okay I'm gonna show you the way I'd solve it
what's the material of the diodes?
Si?
now using that information you can answer (a)
and I guess in (b) everything is zero because the diodes only let current pass in one direction
if the current is going backwards the diode won't let it pass
@calm flax El problem era ese función calloc pero no sé porque
The parameters are switched
Put your array size first, then the sizeof
void *calloc(size_t nitems, size_t size)
At least from what I read
@gusty ermine
nope, pero buena observaciĂłn, lo corrigĂ
holi 
ok so
si durante una explosiĂłn la intensidad en un punto a 48 km de la fuente es 2.0Ă10^6 w/m^2, cual es la intensidad en un punto que estĂĄ a 10 km de la fuente?
ajaja 
7
La intensidad alrededor de una explosion no serĂĄ la intensidad en la fuente*sqrt(r)?
AsĂ es con las ondas sonoras
Que raro
Tomé 3 trimestres de fisica en la universidad y no recuerdo haber estudiado las explosiones
alright I got it somehow
had to calculate el nivel sonoro of the first point and then use that to calculate the intensity that reachers the second point
yay I was right
@abstract scaffold
lmao
A really cool spanish vocabulary test I found
I got 16647 
At some point it didn't even look like spanish to me 
@crystal kraken could you please take this test
bc Im pretty sure you know more vocab than me
A youtuber I like got this
That test is kinda flawed
Told me I had the vocabulary of a spanish professional
Which I don't
It's easy enough to guess the definition of a word in a multiple choice test
just using what I know about latin roots and english cognates
I'm sure I guessed a couple, so yeah
@median trail Ya lo di, saqué 17500 o algo
cuestion could mean topic, issue, ...
Much better.
Yeah
You know, it's a bit weird if I cannot translate what you don't understand, so I prefer talking here.
Ive taken spanish classes but have problems with it because i kept havung to move schools
Yeah
Having*
I have problems with conjugations, bigger words, and hearing natives speak because its really fast
Yeah
But since i kept moving and stayed in spanish 1 i never got caught up
I see.
Fortunately, there's many words you'll understand just because they're almost the same as in English.
Yeah
Conjugations is just a matter of practicing your output a lot and getting corrected by natives
Yeah
Yeah, there's too many. xD
natives speaking though, it's a bit more complicated because there are a lot of different accents
I just dont wanna embarrass myself lmao
its really confusing when people speak spaniard Spanish
U should accept the fact that you will make mistakes though, it'll make your journey way easier
Perhaps you should choose learning a particular dialect.
Im learning mexican spanish
Oh, okay.
Think about it this way, you're a native of english and you still make mistakes in english from time to time right?
Ăłrale
yeah
You know, in Latin America the TH sound isn't used, so its easier in that sense.
Well...
from what ive heard
Argentinian accent is really fast though...
Perhaps not as fast as Ecuadorian, I think that's true.
lol
It's very fast in the South.
And Andalusian accents are very diferent from Northern ones.
Yeah
Its just pretty hard not having natives to speak to, correct me, and help. I know theres the server I've been in here for a while i just never talk
Yeah, and it's the best way to not carry any mistakes or bad habits in the long run
yeah
my teacher and all my friends say never use translate which i try to stay away from but sometimes theres huge words I have no clue what they mean
I normally use WordReference, it's very useful. (?)
Oh, English natives use it a lot.
Never heard of it till I reached this place, honestly.
Oh.
Like at one point I asked my native spanish friend about some words and said "es no palabra" because that made sense to me but its no es palabra
ÂżNo es palabra?
yeah
Yeah
puedes crear sus propias palabras
Sadly, I'm not the best guy to teach you the rules of Spanish, because basically I don't know them.
Lmao
I dont wanna use the online classes like duolingo and the other apps that teach you because they really dont
"pregunta" es una interrogante que uno tiene y espera que sea respondida.
"cuestiĂłn" no es utilizado de esa manera, al menos, yo no.
@gusty ermine sĂ preguntas gracias
I dont wanna use the online classes like duolingo and the other apps that teach you because they really dont
I don't really agree, they teach you vocabulary which is useful if you're learning grammar from other sources
relying only on Duolingo won't teach you much though
yeah
From my classes i know basic pronunciation and alphabet as well as numbers but
other than that I dont know much
if I were to learn spanish I'd probably learn the 1000-2000 most common words and after that I'd try to use spanish>spanish dictionaries when finding a word that I don't understand
Lmao
that alongside consuming tons of native content lol
yeah
or adding mente at the end of a word
like
what
facil = easy
facilmente?
yeah,that requires plenty of practice and I'm guessing that if you don't want to memorize entire grammar books the best way is to actually practice your spanish and getting corrected
yeah
Oh
But.
rĂĄpidomente es quickly?
Ohh
rĂĄpidamente
No.
Oh
Because "RĂĄpido/a" changes it's end with gender.
although
Yeah
If the word does that, then you'll make the adverb ended in -mente with the feminine form.
RĂĄpidamente, silenciosamente, curiosamente.
Ohh
Like i said though most of the spanish speaking people i know are really rusty on it or arent willing to teach because they dont know how
and that's an example of someone who knows his grammar and someone who doesn't 
Well, I try to do my best when teaching. :'3
I mean, I can't really teach Spanish, like, at all
and that's an example of someone who knows his grammar and someone who doesn't :lul:
@void verge I learnt that rule here like less than a week ago.
lol
Don't worry.
@burnt bison unenos
I mean, it's normal when your level's not high enough.
en ingles por favor
He even said it the wrong way. :v
Nah i dont even join english vcs
Ănetenos*.
what did it mean
Join us, as InFeRR said.
Oh
Oh
gracias 
Hmmm, I'd probably wait a bit more until practicing real conversations though
But don't be me and wait like forever
that's the reason behind my spoken English being like

Lmao
I feel comfortable with pronunciation
I just need to learn words
and learn to understand people speaking 90mph
then go and read more or just use spaced repetition learning to learn common words
Wym by spaced repetition
like, flashcards with words and their english meaning on the back
i'd just read a lot though
it's more entertaining than doing flashcards
Yeah
Associations work fine for me.
Still remember that baskets in French are snekers... Because in sneakers they play basketball.
Bc i know I'm gonna need to know how. How would you say the Spanish equivalent of the English asking someone to repeat themselves
yeah
No entendĂ, podrĂas repetir lo que dijiste? / Puedes decirlo una vez mĂĄs?
these are two ways in which you can say that although there are many more but w/e they get the point done
Yeah
but yeah you definitely should try at least chatting on #đžă»ê±áŽâprincipiante even if it's hard for you at first
and having an English>Spanish dictionary opened is a must lol
this is a good one as Vidistea said but there was another one that I like but I can't seem to find it
rip
yeah it is
I use it when I translate things
@median trail me topé con un problema re fastidioso de networking en mi trabajo
Pues, tenemos varias redes para hacer investigaciones, y hay que usar una VPN para acceder a ellas
El problema es que la VPN no tiene el concepto de "Split tunnel", asà que todo el tråfico siempre va a través de la VPN. Y el programa de la VPN borra cualquier cambio que intentes hacer con tu routing table
Asi que no podĂa establecer comunicaciones entre mi laptop y mi mĂĄquina virtual lol
SĂ
do people really care about it
Porque determinan la interfaz que van a usar para enviar los datos
cool 
Por ejemplo, mi laptop tiene dos interfaces. Una para la red de mis maquinas virtuales (192.168.1.0/24), y una para la VPN (10.1.1.0/24)
Digamos que mi mĂĄquina virtual tiene IP 192.168.1.10, y quiero que mi laptop le envĂe datos. Usualmente, la routing table tiene un registro que dice "si querĂ©s enviar datos a alguien en 192.168.1.0/24, usĂĄ interfaz X", y interfaz X deberĂa ser la interfaz correcta
Lo que pasa es que el programa de VPN hace que todos lod registros de la routing table digan "si querés enviar datos a alguien en X.X.X.X, uså interfaz Y, la cual es para la VPN"
Y la VPN no va a reconocer una IP de 192.168.1.0/24, asĂ que cuando mi computadora intenta enviar datos a 192.168.1.10, la informaciĂłn sale por la interfaz equivocada
Y no llega a su destino
Bajo circunstancias normales, podés manualmente añadir un registro en tu routing table para decir "uså esta interfaz para enviar datos a esta IP/red, pelotudo"
Pero el programa de VPN no me deja editar mi routing table :( cru
Cry
Routing table Tabla de enrutamiento * @ashen mist
Gracias
De nada
keep saying routing table, people understand better
idk in my class everyone uses routing table, and not everyone speaks english
Ya que aprende de Latinoamérica
Y la VPN no va a reconocer una IP de 192.168.1.0/24, asĂ que cuando mi computadora intenta enviar datos a 192.168.1.10, la informaciĂłn sale por la interfaz equivocada
@ashen mist I dont get it
Sigue diciéndolo en inglés, Vera
if it gives you the port for X.X.X.X, then why does it give you the wrong port
Bajo circunstancias normales, podés manualmente añadir un registro en tu routing table para decir "uså esta interfaz para enviar datos a esta IP/red, pelotudo"
oh port forwarding?
No, no tiene nada que ver con ports
Es que la interfaz es como el camino hasta otro reino
Y si vas por el camino equivocado, probablemente no llegues a tu destino
do you mean mac addressing
Yes
Linux o Windows
ok
Creo que route print es lo que deberĂas decir
ohhhhhhhh
Ah, pues
but that's like when going from one place to another
Te muestra cual interfaz tu computadora va a usar para comunicarse con IP/red X
yes
Porque si tu computadora tiene varias interfaces, tiene que decidir entre ellas
Y podés ver tus interfaces con ipconfig /all
ye
Obviamente, hay muchas redes en el internet, asĂ que no tiene sentido tener registros para cada una en tu routing table
Por lo tanto, disponemos de "default Gateway"
Lo cual es bĂĄsicamente el valor por defecto, tu "backup"
"che, mi routing table no tiene un registro para este destino. voy a enviarle mis datos a través de mi default gateway"
do routers have a list for all the networks?
Creo que no, porque se necesitarĂa una lista bastante grande
Lo entiendo como el sistema de carreteras
Una calle no tiene una salida para cada otra calle
I've covered this in my networking course, and I dont remember
Pero una carretera tiene salidas para otra carreteras que eventualmente te pueden llevar a tu destino
Also, estoy en un chat con otros nativos de español, y escriben re mal...
"haber" en vez de "a ver"
"qué asen"
"hiban pasando"
"haya" en vez de "allĂĄ"
Y mi favorito, "bayamos"
thats common imo
Es a propĂłsito?
im not sure, a lot of people dont know how to write properly
i write that way when joking around
gn
I have a music question
Wouldnât an Eaug chord and a Caug/E chord be basically the same thing?
It pertains to guitar in my case
Lmfao
Are there any cool (somewhat well known) events that happened in history? I need to do a sociology assignment and I was going to do it on fireside chats but thatâs not really an event.
UwU I appreciate
Letâs see... cool events that happened in history... you know there are like a million of those, right?
XD
How about the siege on Athens during the Peloponnesian War?
Or the Boston Massacre?
Or the signing of the Magna Carta? Thatâs an important one
Cool is subjective, I think all these events are cool
I could list off half a dozen applicable supreme court cases off the top of my head
Hmm okay
I think the siege on Athens is interesting
I was going to do this but it was some dude telling his drinking buddy he was going to make a hole in his boat for WWI
And then the buddy was understandably pissed but in the end they just went back to doing whatever
The dude who blew a hole and confiscated the shipâs gun was a British dude and the poor mate who got his boat shelled was German
Nothing to see here, just a hot and complex topic
it's a hot and complex topic
đ
@coral lagoon esa es el capital de cataluña
Spain's capital is Barcelona
is it not madrid
Having never been to Spain, I can confidently say that while it isn't the capital, Barcelona has better beaches than Madrid.
oop
Having never been to Spain, I can confidently say that while it isn't the capital, Barcelona has better beaches than Madrid.
kek
i think madrid's got an artificial beach
Historically, how did Madrid become the seat of power in Spain? It doesn't appear to have any big rivers or other natural crossroads for trade.
Ask Felipe II. Nobody knows why.
estĂĄ del centro
What's the difference between "General" and "General HD" voice channels.
"HD" is supposed to be some sort of better audio quality like "high definition"? Lol.
yes
we can change the audio quality, and the HD voice chats have better audio quality than the ones without the HD
i just updated my pc and now the whole OS runs faster wtf
la capital verdadera de españa es sevilla
+ => ma
- => meno
* => por
/ => dividido
** => ala
() => ()
2 ma 2 => 4
2 por 5 => 20
2 ala 2 => 4
1 + 2 * 3 => 9
1 + (2 * 3) => 7
Declare variables:
che (variable_name) es (value. just numbers)
che messi es 10
Declare multiple variables:
che (variable_name) es che (variable_2_name) es ... es (value. just numbers)
che a es che b es che c es 32
Conditions:
(1 => true 0 => false)
== => es igual
!= => no es
< => es menor
<= => es menorOIgual
> => es mayor
>= => es mayorOIgual
+- => es maomeno
1 es igual 1 => 1
a es igual 1 => 0
a es igual 32 => 1
a no es b => 0
a no es 2 => 1
5 es menor 6 => 1
5 es menor 4 => 0
5 es maomeno 4 => 0
5 es maomeno 4 => 1
Conditions Combination:
and => y
or => o
1 es igual 1 y 2 es igual 2 => 1
1 es igual 1 y 2 es igual 1 => 0
1 es igual 1 o 2 es igual 2 => 1
1 es igual 1 o 2 es igual 1 => 1
1 es igual 2 o 2 es igual 1 => 0
Es un lenguaje de programacion que se llama CheLang
es verbose
This is just the example but the source code is hilarious
2*5 20?!
from stringsWithArrows import * # eto pone flechitas en los errore
import string
import random
###################################################
# CONSTANTS - me dijeron que significa constantes -
###################################################
DIGITS = "0123456789" # los numerito
LETTERS = string.ascii_letters
LETTERS_DIGITS = LETTERS + DIGITS
###################################################
# ERRORS - bad news D: -
###################################################
###############################
# ERROR MESSAGES - sfw :D -
###############################
# violentitud : media
errorMessages = {
"IllegalCharError" : "Che pibe pusiste algo nada que ver, le mandaste",
"InvalidSyntaxError" : "Flaco tu sintaxis no la entiende ni tu abuelita (saludos)",
"RuntimeError" : "Che crasheaste todo, fijate que hiciste",
"ExpectedCharError" : "Te faltĂł poner algo: "
}
ikr?
programing in argentina*
im dying*
Flaco tu sintaxis no la entiende ni tu abuelita
"intOrFloatExpected" : "\nFlaco pasame un numerito ahi viste",
"exprExpected" : "\nFlaco pasame un algo ahi viste",
"operationExpected": "\nFlaco dame alguna operacion, lamentablemente no puedo hacer lo que me pinte",
"closeParentesisExpected": "\nFlaco porque no cerras los partentesis?",
"identifierExpected": "\nDecime un nombre pa la variable viste",
"equalExpected": "\nTenes que poner 'es' pa poner algo crack",
"equalAfterNotExpected": "\nChe no sabes español? Tenes que poner 'No es'",
"zeroDiv": "\nMacho dividĂs por cero vos?",
"unknownVariable": "\nCapo no me dijiste que es '"
}
So he's not writing a compiler this lang is basically just using python as its interpreter
oh
I mean all a language really is is just a grammar specification
thiccc source code*
Someone suggested calling the garbage collector rayoPeronizador()
Peronizador
oof esto de CheLang me da un infarto:
1 + 2 * 3 => 9
probably does ops left to right
Fun fact. I just looked up lyrics to a song and realized I was hearing a word wrong the whole time. It's Siento la tierra not Siento la pierna

I didn't know if "feeling the leg" was something to do with dancing that I just didn't know about.
Turns out that it just doesn't say that.
Packet tracer is such an accurate program.
I fixed a problem by restarting one of the routers...
wtf
Classic router problem!
this is not supposed to happen in a simulation ;-;
Wow thatâs an accurate simulation!
yeah lol
dict cobrar
transitive verb
7. (to take a shot) (Latin America)
ââââââââââ á”á” á”á”a) to take
á”á” á”á” á”á” á”á” á”á” á”á” El capitĂĄn del equipo cobrĂł el penal.
á”á” á”á” á”á” á”á” á”á” á”á” The team's captain took the penalty.
Ver en SpanishDict
lol, full marks then?
yeah
naisu
she took off some points, but then she decided to ignore the few mistakes I did
so I got 5/5

The mistakes I did were basically related to being pretty straightforward with my answers
for example
I didn't write out the expression QtAQ
meanwhile, hice el curso ĂĄlgebra lineal en el segundo año (primer semestre), pero nunca estudiĂ© antes de mis exĂĄmenes. por ejemplo mi examen final fue 60% de todas mis notas. (creo que el 60% fue la Ășnica razĂłn por la que aprobĂ© la materia)
I just gave the answer
right. i see.
meanwhile, hice el curso ĂĄlgebra lineal en el segundo año (primer semestre), pero nunca estudiĂ© antes de mis exĂĄmenes. por ejemplo mi examen final fue 60% de todas mis notas. (creo que el 60% fue la Ășnica razĂłn por la que aprobĂ© la materia)
wow
cool!!
xq fue una "distinciĂłn" [75,85)
taking into account you majored in math, then that's pretty high imo
o sea no estaba estudiando mucho para ĂĄlgebra lineal, sino estaba concentrĂĄndome mĂĄs en quantitative management optimizaciĂłn (96 v. 77)
oh
yeah. so i suck at linear algebra
i never really got what "span" meant.
it hurt me a bit porque necesitaba usar algunos conceptos de ĂĄlgebra lineal en mi otra clase en mi Ășltimo semestre
i was more of a calculus person i guess
but even then. i guess it was more like i didn't really try in my first year. tried a bit more in 2nd year. try harded too hard in 3rd year that it was high distinction average
I would like to study real analysis one day
I really want to be good at epsilon delta proofs
funny thing is that i don't really know what "real analysis" is. I kinda know what "complex analysis" is tho. did that in my advanced calc course.
oh wait I mean the analysis that covers epsilon delta proofs đ
i did epsilon delta in my first year. (didnt understand nor study. so i skipped every epsilon delta in my paper). ya aprobé el curso antes del examen final asà que no estudié para nada. el examen sólo fue para que tuviera mås notas.
and i never really bumped into it again until third year.
i chose more electives in my 2nd year
i accidently chose the wrong subjects.
well more like i accidently didn't realise i went "off the recommended order to choose subjects"
so i did third year subjects in 2nd year
and 2nd year subjects in 3rd year
wow
nothing wrong with that tho.
just i didn't realise. but it's not "wrong".
it was "what i wanted to do" anyway
so fuck "what they want me to do"
i'll do it my way.
I guess it would be helpful
@median trail is this University-level mathematics?
yes
Ălgebra lineal era mi favorita
who uses WPS office or at least knows about it?
because its a very good alternative to word, powerpoint, etc
But you can also get it on ur main pc
fr biz
There's a guy on my block that likes to blast norteña in his truck while driving home. I only get to hear it for a few seconds. But those few seconds brighten my day.
What is norteña? Is it like the gang?
Like is it a gang affiliated song if that makes sense


There's a norteña gang? I just mean the music genre. And honestly it might be something like ranchero, I don't know enough about different music genres from Mexico.
In California there are rival gangs that used to be both Mexican Mafia
But then the northerners (aka the immigrants) were oppressed pretty heavily by the southerners so they made their own gang
I think the disagreement that led to this was over a shoe

The norteños and the sureños are now different groups that have a very strong animosity against each other
âLongest-running gang war in the the state of californiaâ
Huh. Didn't know about that to be honest.
Uh... Then don't listen to norteñas
Guys do can learn me spannish pls
Personally, I think you should first learn a bit on your own, and after that come here to practice.
@grim lava CUAL ERA LA SORPRESA
@copper fox Hola 
Hola Loxi! CĂłmo estĂĄs? 
No, I don't tend to use Discord much lately, mostly only when I get notifs
@grim lava
What was it tho
La sorpresa
what's the difference between Android 10 and Android 9?
they look pretty much the same to me
oh oh okay
@river ivy. :v
Cuando te mandan a este canal la posta es matar la conversaciĂłn nomĂĄs
La verdad. xD
Pero qué se le va a hacer.
En fin, como iba diciendo... no estudio historia global, asĂ que no puedo hablar.
No diste nada no europeo en la escuela y eso? Xd
SĂ, en secundaria.
Bueno, de eso hablo jaja
Pues... daba Mesopotamia, Egipto, Grecia, Roma...
Qué tanto era al lado del contenido sobre europa?
La mayor parte era Europa/Occidente.
Esas cosas tipo "cultura general sobre historia" es como 90% europa, a eso me referĂa
A ver, en Europa veo normal que sea mĂĄs centrada en el continente.
¿Pero en América también?
Sip
.-.
Es pura historia europea, con excepciones como egipto y esa zona, algo de historia nacional obvio, y del resto de amĂ©rica bastante poco... Solo zonas especĂficas
Raro.
No sé cuånto se sabrå del resto, pero tampoco mucho.
Y mĂĄs cerca de la actualidad, los lĂos de eeuu con el racismo y eso
Lel
Del resto del continente no sé nada
Actualidad, mi parte de la historia menos favorita. :P

Bai bai
bim bam toi
I've just had my first dabble into future tenses, listening to an audio course, I learned a way that future perfect is kind of related to "haber" conjugation and suddenly it makes is easier to learn.
Tan emocionante 
@tawdry lake cĂłmo???????
haber + past participle = past perfect
el futuro es como
comeré
A no ser que sea "Haber (future) + Past participle = Future perfect".
@gusty ermine so how it was explained on this course was, first the explain the haber "he/has/ha/hemos/han" forms for "I have, you have" and so on.
Then show how you move "He" for I have " - this just goes to the end of the present tense verb.
E.g. He (I have) & comer (to eat) --> Comeré (I will eat)
These forms of haber that we have, are also the endings that we have for the future tense. So, we will learn the future tense now, without having to learn any new sounds.
The interesting thing about the future tense, is that, we take the verb in it's "to form" and we put the ending at end of the "to form" and we stress the ending.
We are effectively pushing the accent into the future."
No? That's how it was explained, I think it makes sense đ
Wrote the quote from the course above for better detail.
Oh well, as long as I'm learning đ
Well, it's kind of a fun mnemotechnical rule...
No? That's how it was explained, I think it makes sense đ
Wrote the quote from the course above for better detail.
@tawdry lake Wait, Keanu.
I'm talking with a guy.
And you're right, future tenses in Castilian come from that.
Ah, interesante, no?
where's the queen's gambit
?
So on a whim I decided to look up how to order a beer in Spain. Why are they so small? How much does a caña cost typically?
I think you've got the wrong word there.
The word for beer that I know is "cerveza".
If you look it up on Google images, you'll see that looks more like the typical pint of beer you would expect see.
Sà en España
En España hay palabras para diferentes tamaños de vaso. :v
Caña, cubata, chupito...
Bueno, la caña es sólo de cerveza, cierto.
¿Por qué es tan pequeño?
aparentemente hay una referencia a Monty Python en Vim, :Ni!
Wow as it turns out disney has a movie set in uruguay
Cangurolandia - Uruguay 
seh
rip
Cañas are pretty cheap
... Nex
#1110754 đŁ shut up and give my Belgian beer

UPDATE: The GoFundMe has been closed and the money was delivered to him last week. Thank you to everyone who donated!
For everyone asking, this was shot with the Galaxy S6.
Jukin Media Verified (Original)
- For licensing / permission to use: Contact - licensing(at)jukin...
Wow
Wow
@tawdry lake MADRE MIA :0
Hey Amigos
I know that it is a bit off-topic
But In Poland we have a huge issue
Our current Goverment is very intolerant towards the LGBT community
Would you want to help the cause and sign the petition
It will matter a lot to me
Hey
hey
isn't Maxwell the best name you guys have ever seen
Bang! Bang! Maxwell's silver hammer
Made sure that she was dead
Back in school again Maxwell plays the fool again
Teacher gets annoyed
@@rain wing The language roles are not a toy and should not all be assigned at once. You have been advised about this before. This is your last warning.*
*You have PMs disabled so I can not send you a message privately.
alegrĂa + tristeza = italiano
que

uf
Interesante, ni siquiera tengo una cuenta en ese sitio web aunque lo uso a menudo
fue mi error.... creé una cuenta 

i was looking at home insurance nil
pretty cheap actualy
much cheaper than car insurance
Huevo inteligente jjjjj
sĂ pero no tengo muchos contenidos
jaja
solo mi PC es caro
la seguridad de la casa estĂĄ obligada, el contenido no
Puedes, el año pasado tenĂa ambos con proveedores diferentes, este año es juntos
Solo debes asegurarte que tienes la seguridad el dĂa que firmas los documentos del "exchange"
porque si algo pasa con la casa entre el exchange y completion.. serĂĄ tu responsabilidad


pero sin pelo
Looks like he's talking
@still radish puedes verlo en la lĂnea de tiempo de nuestra casa tambiĂ©n, 14/05 vs 14/06
@vital ginkgo es el discurso del huevo
el seguro de la vida es importante? 
Euhm, si tienes pareja, dirĂa que sĂ
Si te mueres, ella tendrĂĄ que pagar para todo si no tienes seguridad
đ

Peepers
hola
has anyone created a program that lets you meme type like this https://yaytext.com/do-not-enter/ without having to copy and paste externally?
Dâ oâ nâ oâ tâ eâ nâ tâ eâ râ
surely can't be too hard
câ hâ iâ lâ eâ yâ oâ uâ gâ oâ tâ tâ aâ bâ eâ kâ iâ dâ dâ iâ nâ gâ mâ eâ
dict improve
ÂżQuĂ© el programa deberĂa hacer?
8K+ lines of code... how long did this take you sir @rough lava ?
Your grace


Go for it





