#🍁・general-2

1 messages · Page 86 of 1

arctic niche
#

😟

#

wtf did Ido

tranquil canopy
#

you signed up for trouble

ocean otter
#

.iam 🔥Hardcore🔥

junior crystalBOT
#

Rocco the Racoon#1131 You now have 🔥Hardcore🔥 role.

tranquil canopy
#

.iam softcore

lavish estuary
#

Lol pupper

arctic niche
#

Oh no this is hardcore mode fallout new vegas

ocean otter
#

.iam learning english

junior crystalBOT
#

Rocco the Racoon#1131 You now have Learning English role.

ocean otter
#

hola

arctic niche
#

I will starve in less than an hour

#

😟

ocean otter
#

-.-

median trail
#

no u

lavish estuary
#

Escribe algo más largo

median trail
#

no u

arctic niche
#

HELLO

#

this was longer right

ocean otter
#

Noice!

arctic niche
tranquil canopy
#

what

#

waith, wth does hardcore do

arctic niche
#

Hello everyone my name is tonyantonio and I like looking at pictures of birds

tranquil canopy
#

RACISM

ocean otter
#

If you have the "learning (languaje)" tag, you can only speak that languaje

arctic niche
#

oh lol

tranquil canopy
#

how can it tell

arctic niche
#

I don't have that tag

tranquil canopy
#

what if you use loan words

arctic niche
#

@tranquil canopy you die

#

in real life

ocean otter
#

If you speak spanish having "learning english" and "hardcore" your msg will be deleted

#

Po' ni idea

arctic niche
#

what if you are learning both spanish and english

#

does that mean you can't post anymore

ocean otter
#

Lets crack the system bois

#

I suppose you can use both

#

ikd

tranquil canopy
#

hmm

#

I mean

#

the bot is told

you can only speak spanish
you can only speak english

#

you are basically muted

arctic niche
#

lol

ocean otter
#

Lets give it a try

#

If i dont come back, tell jaleel i love him

#

.iam learning spanish

junior crystalBOT
#

Rocco the Racoon#1131 You now have Learning Spanish role.

tranquil canopy
#

you will be missed

ocean otter
#

Hola

#

-.-

#

Adiós dramatismo

tranquil canopy
#

que anticlimático

arctic niche
#

If you can't speak neither just speak in Japanese

tranquil canopy
#

да

arctic niche
#

😟

ocean otter
#

@rough lava Not that there will be more idiots like me who have both tags and hardcore but, i just recived this and the original msg is still on

rough lava
#

si tienes los dos roles, no debes usar hardcore mode 😄

#

pero gracias

#

eso es un bug

tranquil canopy
#

this is the best debugging

#

give it to the users to break it

gusty ermine
gusty ermine
#

@ pupper, always suprised how users know how to mess up programs lol

lucid junco
#

It ez

#

Just do silly things

lusty widget
#

Ready chavales

gusty ermine
#

falta el pastel

past harbor
#

Pásalo genial campeon

open glacier
#

@lavish estuary tenés el juego con el patch?

lavish estuary
#

@open glacier Sip

open glacier
#

me lo pasás?

lavish estuary
#

Claro, se está subiendo. Te haré saber en cuanto termine

open glacier
#

ok gracias

lavish estuary
#

O prefieres que te mande los enlaces?

open glacier
#

enlaces de qué?

lavish estuary
#

Para descargar el patch y el juego

open glacier
#

el patch lo bajé pero no me dejó patchearlo

lavish estuary
#

Ah vale

marsh harness
gusty ermine
vapid bobcat
gusty ermine
lavish estuary
#

I use it lol, it seems more practical

arctic niche
#

you guys > everything

arctic niche
gusty ermine
#

i have no idea what this map is supposed to represent

arctic niche
#

legends are for chumps

gusty ermine
#

Guess I'm a chump.

#

But does that make non-y'all usage a myth? 🥁

gusty ermine
#

i use y'all and i am not even from 'Murica

feral minnow
#

so the southerners are actually taking over the us?

#

and the world

#

in terms of y'all usage anyways

gusty ermine
#

sup y'all

feral minnow
#

the confederate states of y'all

gusty ermine
#

texan muslims be like y'allah akbar

feral minnow
#

mind you don't cut yourself on that edge

gusty ermine
#

wont take long for europe to become northern arabia anyway

#

😄

feral minnow
#

oh right

#

all 100 refugees that ireland has accepted

#

i forgot

gusty ermine
#

informs merkel

#

😄

ocean otter
#

This is very specific but, i need someone who knows how to make scripts for extracting data from games in Noesis

gusty ermine
#

doesn't get more specific than that lol

gusty ermine
#

@ocean otter

im busy rn, maybe l8r?

#

well.... what is Noesis? how does it work?
dm me? @__@

ocean otter
#

Noesis scripting languaje is python, i just wanted to ask how Noesis stores bones

#

Because they ask for a 4x3 matrix and i have no idea whats the purpose of each of those vect3

#
#index is used to ensure order and match to vertex weights. it is possible to have gaps in your bone list by specifying out-of-order indices.
#NOTE: you don't need to specify parentIndex as long as you specify parentName. parentIndex is optional.
class NoeBone:
    def __init__(self, index, name, matrix, parentName = None, parentIndex = -1):
        self.index = index
        self.name = name
        self.setMatrix(matrix)
        self.parentName = parentName
        self.parentIndex = parentIndex #parent index may be specified instead of parentName, if it's more convenient. this is an index corresponding to self.index, and not the position in the list.
    def __repr__(self):
        return "(NoeBone:" + repr(self.index) + "," + self.name + "," + repr(self.parentName) + "," + repr(self.parentIndex) + ")"

    def setMatrix(self, matrix):
        if not isinstance(matrix, NoeMat43):
            noesis.doException("Invalid type provided for bone matrix")
        self._matrix = matrix
    def getMatrix(self):
        return self._matrix```
#

Thats the function to create a bone

#

This guy tryed to explain it to me but I cannot understand him for some reason

#

@gusty ermine

gusty ermine
#

Noesis is that 3D model thing for gaming?

#

@gusty ermine

ocean otter
#

Well, not for gaming xD

#

Noesis is a universal extractor of packaged data

#

If you imput a 3d model encripted from a videogame, and a plugin for the extension of the archive, you can visualize the model and export it in a different extension like .obj, .dae .etc

#

What i am doing is a plugin

#

And in what i am on now is with the skeleton of the 3d model of the protagonist

gusty ermine
#

so what do u wanna parse?
is there a file type u want to parse?
or the code itself?

#

or?

ocean otter
#

Is just, i need to fill 4xvector3 of information to declare a bone, and i dont know what to write xD

#

One of those v3 is the position, that i know for sure

#

One of them, or maybe the other 3, are for the orientation of the bone

#

My true identity should keep being under cover for the sake of humanity

#

You better not tell this to anyone blobangery

gusty ermine
#
  • purged from the Discord - except for those using some non-ToS software *
#

Here's a video or 2 on quaternions that I think explores them neatly:

Here's another on 3D linear transformations:

How to think about this 4d number system in our 3d space. Thanks to supporters: https://www.patreon.com/3blue1brown With extra-special thanks here: http://3b...

▶ Play video

Go experience the explorable videos: https://eater.net/quaternions Ben Eater's channel: https://www.youtube.com/user/eaterbc Previous video on Quaternions: h...

▶ Play video

What do 3d linear transformations look like? Having talked about the relationship between matrices and transformations in the last two videos, this one exten...

▶ Play video
ocean otter
#

I do know what quaternions, euler angles etc are, what i dont know is the information needed to declare a bone xD

gusty ermine
#

GWfroggyMonkaThink los nerdes están aquí

ocean otter
#

Y a mucha honra blobcoffee

gusty ermine
#

That's in the information, it seems.

#

And understanding how the geometric information relates to the bone's formatting at a data type helps make that more clear.

#

Which I think is part of what the ppl are saying.

#

in the forum

feral minnow
#

ppl

#

sToP tEaChInG bAd EnGlIsH

gusty ermine
#

though im not sure why you need to supply both a parent_name & a parent_index in the bone declaration.

#

@feral minnow you're welcome.

feral minnow
#

*You're

gusty ermine
#

lel

#

Next.

gusty ermine
#

maybe performance reasons?

gusty ermine
#

what?

#

As in it helps improve the runtime? how?

#

I feel like the index should be an attribute od the parent accessible by a method.

nova dust
#

@lavish estuary ^^ can you please help?

gusty ermine
#

@nova dust , do you think you will have more luck if you ask a Reddit or post on the soundcloud itself... or maybe check out a general language server? Maybe a server dedicated linguistics or african languages?

Idk if that will be more helpful.

nova dust
#

I had a lot of luck here in the past. You´d be surprised how fast someone can Id or recognize a seemingly obscure song

lavish estuary
#

Idk lol

#

I'm only African by skin colour. I'm as Afrikaans as they come.

nova dust
#

thanks for checking anyway

#

does the language remotely sound African?

lavish estuary
#

Nope

#

Sounds South Asian

nova dust
#

Ok. Interesting

gusty ermine
#

Sounds more like Indian to me

#

Have you tried using 'shazam'?

#

Or asking the author /uploader?

#

Lemme know if you found it

gusty ermine
#

How the hell did that song get 367m views

midnight gulch
#

ahahaha

lusty widget
#

GUYS

#

Feliz navidad y'all

gusty ermine
#

same

#

yeet

#

For lease navy dad

#

I love crimbo

lusty widget
#

.trans en>es lease

junior crystalBOT
#
Translation: en>es

arrendamiento

lusty widget
#

Uhm

gusty ermine
#

Feliz navidad a vosotros!

nova dust
#

@gusty ermine positive IDs thanks to Shazam. Both artists are from Mali. There are over 80 languages/dialects according to wikipidea

analog moon
#

@steep token Cause I am one kiny fucker

steep token
#

Lol!!

#

No kink shaming from me

#

👀

analog moon
#

@glass dragon You should have stayed hidden

#

Cause now you gotta do it. Get in here

steep token
#

Also Amaroq is a woman ^^;

analog moon
#

Face this lowly no modded Discord goer

#

Oh goodness my bad.

#

Oh that's weird.

#

Thought she was a dude loooool.

glass dragon
#

I'm going to bed, so you can go back to being unmonitored

analog moon
#

Quick puntos

#

Let's talking about something illegal

steep token
#

Good night Amaroq blobpeek Merry Christmas

#

Ummm

analog moon
#

Or talking about something illegally

steep token
#

stabs someone

analog moon
#

It will be, uh, Illegalmente!

steep token
#

Lmaoo

#

😂

analog moon
#

Which is illegally

#

But with spice

arctic niche
#

That is what a mod wants you to think

tranquil canopy
#

Wait did anyone say illegal?

#

I love doing crimes

arctic niche
#

I did

tranquil canopy
#

It creemas

#

Perfect time for crimes

arctic niche
#

c:

#

What are the best Christmas crimes pupper?

tranquil canopy
#

Drinking responsibly and not using fireworks

arctic niche
#

🤔

indigo girder
#

te gustan los delitos?

arctic niche
#

Isn't that legal?

indigo girder
#

es como la cancion q escucho ahorrita ;/

tranquil canopy
#

Oxi

#

Please no

#

Not on christmas

remote kettle
arctic niche
#

Spotify notlikeblob

tranquil canopy
#

But instead using bootleg fireworks, tony

arctic niche
#

Hmm

#

blows stuff up

tranquil canopy
#

Whoever has more fingers intact/left wins

arctic niche
#

Whoever has less fingers intact/left wins

tranquil canopy
arctic niche
#

I have only 1 now

#

Hah

tranquil canopy
#

This wasn't a very good crime

arctic niche
#

Yeah it is hard doing crimes in a hospital blobdead

#

With no fingers

lavish estuary
#

You only need one finger to pull out a plug

tranquil canopy
#

That's not the spirit

#

Wow

lavish estuary
#

That's pretty dark, even for me

tranquil canopy
#

Jaleel

#

it creemas

#

pls

lavish estuary
#

I'll behave

tranquil canopy
#

In only 2 weeks

#

We lost tony

arctic niche
#

Jaleel that plug you pulled wasn't just for one person

#

What have you done

lavish estuary
#

Population control

tranquil canopy
#

wow

arctic niche
lavish estuary
remote kettle
tranquil canopy
#

You missed someone then...

#

You.

lavish estuary
#

I work for the US government

tranquil canopy
#

🗡

lavish estuary
#

Lol

remote kettle
arctic niche
#

Jaleel

#

Could you

nova dust
#

this is very morbid

arctic niche
#

How

lavish estuary
#

I am crow

tranquil canopy
#

Jaleel this isn't the christmas spirit

#

We only do good crimes

lavish estuary
tranquil canopy
#

Killing is never good

#

:(

lavish estuary
#

Like pirating?

nova dust
#

did you all read about gene editing baby in China?

tranquil canopy
#

Pirates are cool as heck

lavish estuary
#

No

#

Cuéntanos

arctic niche
#

Yarr

tranquil canopy
#

Yar har

arctic niche
#

There are no pirate emotes

lavish estuary
#

@open glacier hombre, he tardado un poco en subirlo. (nuestro Internet es una putada). Aún quieres el rom ?

nova dust
#

soon there will be babies with 12 fingers who will kill us in video games

open glacier
#

sí @lavish estuary

nova dust
#

or play better beethoven because of 2 extra fingers

tranquil canopy
#

Discord is made by narcs

#

That's why

#

Tony

arctic niche
#

Oh

arctic niche
#

That is sad pikacry

open glacier
#

gracias jaleel, feliz navidad

lavish estuary
arctic niche
#

Xenophobia?

open glacier
tranquil canopy
#

Wot

arctic niche
#

Huh

remote kettle
arctic niche
#

Jaleel explain

tranquil canopy
#

Oh

#

Xenophobic rom

open glacier
#

ya está patcheado? @lavish estuary

tranquil canopy
#

Wow jaleel

open glacier
#

o es solo el platinum?

lavish estuary
#

#

Estás parcheada

arctic niche
#

Jaleel all the wrong crimes

lavish estuary
#

Joder

arctic niche
#

Stop it

open glacier
#

ah ok

#

nais

nova dust
#

@lavish estuary btw the language I asked you earlier is Mali

tranquil canopy
#

Jaleel you do the worst crimes

lavish estuary
#

😁

tranquil canopy
#

They will imprison you 4 evah

#

in creemas

lavish estuary
#

They'll never catch me

tranquil canopy
#

Uncool

lavish estuary
#

I'll just fly away

#

@nova dust nice

tranquil canopy
#

We can't do crimes with you

lavish estuary
#

There's always that one guy

open glacier
#

look who's talking about crimes

lavish estuary
#

I'm that guy feelsbadman

arctic niche
#

Pupper I stole a book today

tranquil canopy
#

Umm

#

Did it have an owner?

open glacier
#

@lavish estuary es la versión completa o la clásica?

arctic niche
#

The internet police

tranquil canopy
#

Nah

#

That's cool

arctic niche
tranquil canopy
#

The internet bolice sux

lavish estuary
#

@open glacier la Completa

open glacier
#

ah okaso

stiff maple
#

@grim lava you can't say I unrun (for I don't run)

#

If you like, try this just for curiosity. Try translating any verb on Google translate into Turkish (for example I run)

#

Then add "don't" or "didn't" before it

#

And see if you can find a case where the verb is two words in Turkish

grim lava
#

dije que para algunos verbos, se puede

#

no todo

stiff maple
#

Yo sé. Pero en el turco, son todos

grim lava
#

pero hay excepciones para las flexiones de turco?

stiff maple
#

Qué quieres decir?

grim lava
#

flexiones - inflections*

stiff maple
#

Hmm, no sé bastante turco para contestar eso 😄

tranquil canopy
#

@arctic niche the power of christ compels you

arctic niche
#

wait no

#

my weakness

tranquil canopy
#

satanás

#

deja este cuerpo!!!

#

dios te lo ordena

arctic niche
#

satanás think

#

I prefer diablo

tranquil canopy
#

but that's not his name blobdead

#

unless you are playing Diablo

arctic niche
#

diablo satan

#

what is the difference 🤷

tranquil canopy
#

one is a name

#

and the other is a nickname

#

D:

arctic niche
#

oh

tranquil canopy
#

el diablo

#

Satanás

#

the devil vs Satan

arctic niche
#

Ronald Regan es el diablo whatthink

tranquil canopy
#

who's Nixon then

arctic niche
#

lucifer

#

wait

#

that works

#

😃

#

I meant to say Judas

#

but I can't go back now

daring badger
#

Isn't satanás that guy who did the Smooth song

gusty ermine
daring badger
#

^Somewhat related I think we have translated ancient sumerian texts complaining about how "kids these days write all the time and don't know how to remember things or talk to people anymore"

lavish estuary
#

Thanks for sharing the video, Señor Álvarez

#

What's wrong with avocado toast lol

stiff maple
#

@daring badger to be fair, sumerians were probably the first people to develop writing, so it was a new phenomenon for them

daring badger
#

Right I'm not saying that it's unexpected, especially with a technology like that but I think it goes to show that part of the reason people complain about younger generations is that they're doing new stuff that the older people don't understand

stiff maple
#

Of course. And in some cases they even complain about things they used to do themselves when younger, and forgot about it or chose to ignore it

#

Complainers will complain

daring badger
#

I hope self awareness of it will lead it to happen less so
This generation onwards
But that's probably unlikely 😅

stiff maple
#

The thing is this generation is gonna grow up to be very different I believe, what with all the mass availability of information on demand

#

So I'm optimistic

daring badger
#

It's hard to sift through everything
With the mass avalibility of information that includes both good and bad and just incorrect information

#

But I'm hopeful

past harbor
lusty widget
#

Hostias qué guapo

#

Lo malo viene cuando sean mayores y tenga que alimentarlos a todos

#

Definitivamente, si fuera rico, tendría una veintena

#

No miento

#

Y gracias <3

#

Ya se me ha pasado

past harbor
#

De nada, era sólo para que sonrieras = D

lavish estuary
#

😯

lusty widget
#

Mierda

#

A mi no me ha salido la notificacion

#

Gracias por avisar

lavish estuary
#

De nada. Ahorita no puedo verla que tengo familia en casa : C

lusty widget
#

Verlo(?)

lavish estuary
#

la broma telefonica

lusty widget
#

Ahh

#

Es que hay diferentes cosas

#

Nada, olvídalo GWsetmyxPeepoPinged

lavish estuary
#

🤷🏿

median trail
#

Gracias por avisar jaleel

lavish estuary
#

De nada guapo

stiff maple
#

Todos están siguiendo eso? think

lavish estuary
#

Es mi YouTuber favorito

feral minnow
#

Does anyone here have any experience using Dyno Bot?

lucid junco
#

Yed

river ivy
#

@unborn wraith de nada
funcionó y en algún lado tenía que contestar GWslippyPeepoH

unborn wraith
#

@river ivy lol

feral minnow
#

Does Dyno limit the number of ranks that show up when you use ?ranks? @lucid junco

gusty ermine
#

ponelo

lavish estuary
#

Pues la regla me la sé pero no sé cómo explicarla en español jaja

When you substitute the past subjunctive for the conditional you may only use the -ra form

Me gustaría
= quisiera ✅
= quisiese ❎

habría comprado
= hubiera ✅
= hubiese ❎

gusty ermine
#

crasia yali

lavish estuary
unborn wraith
#

Aunque no siempre es así con el pretérito pluscuamperfecto

lavish estuary
#

¿Por ejemplo?

unborn wraith
#

Yo lo habría comprado en otra tienda

#

Yo lo hubiera/hubiese comprado en otra tienda

#

Es una situación irreal, usar cualquier forma de los subjuntivos está bien. Aquí, 'habría', que introduce el condicional perfecto, puede alternar con las formas del subjuntivo

lavish estuary
#

Ah sí, gracias Daniel

#

lo tendré en cuenta

unborn wraith
#

@lavish estuary gracias a ti, sigo leyendo acerca del pretérito imperfecto y pluscuamperfecto del subjuntivo. Ahora tengo que leer también sobre el condicional simple y perfecto del indicativo

eager forum
lavish estuary
#

Jajaja, pues me alegra haber sido de ayuda. Si averiguas(encuentras?) algo interesante, hazme saber.

unborn wraith
#

Encontré un resumen un poco grande

#

@lavish estuary

median trail
#

ohhhhhh

#

i just got rekt by the bot

unborn wraith
#

Y su hermano pequeño explicando los verbos modales (muy brevemente)

lavish estuary
#

Uy, a ver

unborn wraith
#

Allí excluye la forma -se

stiff maple
#

Cri cri cri

celest bay
#

heyo

lavish estuary
#

That joke's expiration date is coming up

gusty ermine
#

some of us will be alive to hear relevant '69 jokes

lavish estuary
#

69?

#

Nice

gusty ermine
#

nice

lusty widget
#

@gusty ermine can u help me with russian?

#

I mean, I dont understand how it works

lavish estuary
#

Ask Rocco to help you

lusty widget
#

If I wanna say fish, I just write how it sounds

#

?

#

I dont get it

#

But the real question is, they say ры́ба? For fish

#

Apart of that

#

Well, and why can it be with and without accent mark?

stiff maple
#

@lusty widget they don't use accents in writing, except to explain where the stress is. But not normally

#

You're learning it?

feral minnow
#

iirc they only use accents in some children's books and material for people learning russian

lusty widget
#

I will try, yes

stiff maple
#

If you need help, let me know

lusty widget
#

I'm learning how to read first, and then I guess I will have to learn vocab

#

And how do they construct phrases

#

Oh shit

#

Now I understand when they say : Davay B

#

It means "let's go B"

#

Huhuh

#

A new world showered

stiff maple
#

Haha

#

Yeah

lusty widget
#

Now I have an english question

#

Is it lets go b or lets go to b?

#

B is a place

stiff maple
#

Oh, let's go to B

#

Unless you say let's go there

lusty widget
#

I dont understand that last part

stiff maple
#

I mean let's go to new York. Or let's go there

#

@gusty ermine B is a place though. You can't say let's go new york

lusty widget
#

But the thing is that is a place

#

So is needed the "to" ?

stiff maple
#

Yes it's needed pasta

#

If it's a place

lusty widget
#

Ok,so everyone says lets go B

#

&_&

#

Thank you

stiff maple
#

Do you have an example pasta?

lusty widget
#

I got you

#

In Spain is the same

#

Spanish*

stiff maple
#

*it's

lusty widget
#

Ty again

copper fox
#

'e

stiff maple
#

Np

lusty widget
#

The 3 waysof saying let's go

stiff maple
#

I think that you have to use to

copper fox
#

how do you even write accented letters on a Spanish kezboard

lusty widget
#

Yes

copper fox
#

win 8.1

stiff maple
#

@copper fox there's an international English keyboard in windows

#

Add it

lusty widget
#

Vamos, Nueva York!
Vamos a Nueva York

#

Except the last one you said

stiff maple
#

Then you can just hold right alt and any vowel to get the accent

lusty widget
#

Do u even say "lets go halves"?

stiff maple
#

Halves?

lusty widget
#

Yes

#

To pay something equally

stiff maple
#

Ohh, yeah it could work. Though I never heard it

lusty widget
#

^

stiff maple
#

Usually we say split

lusty widget
#

Oh thank you

stiff maple
#

Lol. I haven't encountered it or I forgot

#

We say split equally

lusty widget
#

We say "vamos a medias/pagamos a medias"

#

But some other may say "pagamos a pachas"

#

So,lol ahahah

stiff maple
#

Bulgaria

lusty widget
#

Is like a meme

#

I have discovered something new

stiff maple
#

I understood it like it was a revelation or something

lusty widget
#

Maybe should I say "showered up"

#

Since you use these expressions a lot 😂

#

Showed xD

stiff maple
#

So it's not literally showered? Like a new world rained down on you?

lusty widget
#

NO

#

AHAHAHAH

#

I meant showed

#

OMFG

stiff maple
#

Damn, I thought it was more poetic like that

lusty widget
#

Ivan.. you are really mean

#

XD

#

You always laugh at me

#

:'(

#

No pubi

#

I know you like these jokes, ive talked with you many times

#

Dw

#

Te he dicho que no pasa nada

#

No me voy a enfadar por eso

lavish estuary
#

@gusty ermine
Another interesting discovery I've made:
I always find it fascinating that the word 'right', meaning: (1) the direction and (2) legal, social, or ethical principles of freedom or entitlement are the same/have the same origin in many IO languages

Afrikaans:Jy het nie die reg om hier te wees nie. Draai asseblief regs.
English: You do not have the right to be here. Please turn right.
Spanish: No tienes derecho a estar aquí. Por favor, gira a la derecha.
French: Vous n'avez pas le droit d'être ici. Tournez à droite, s'il vous plaît.
Polish: Nie mają państwo prawa być tutaj obecni. Proszę skręcić w prawo.

gusty ermine
#

@lavish estuary vos tenés una explicación por qué?

lavish estuary
#

@gusty ermine For the " right" , there's a cultural/religious thing we've inherited. Rightness as holy or correct. Leftness as evil or dirty or sinister.

gusty ermine
#

when will the discrimination end

lavish estuary
lavish estuary
terse cliff
#

*no grape modification, we die by choking on grapes at 12am january 1st 2019 like real men

gusty ermine
#

well one explanation for 'right' is that a lot of languages have the same greek/latin base

#

english spanish french

gusty ermine
arctic niche
#

Should I listen to every one of these? think

#

becasue tbh I don't know where to start

lavish estuary
#

just google your favourite genre in Spanish, start from there 😛

median trail
#

RBD blobmelts

arctic niche
#

oof

median trail
#

blobaww blobaww blobaww blobaww blobaww blobaww blobaww RBD

lavish estuary
#

That's what I did

arctic niche
#

what if everything is your favorite genre blobsweats

lavish estuary
#

Even better

arctic niche
#

oof

#

except country

median trail
#

la camisa negra de juanes es buena

arctic niche
#

unless it is alternative

lavish estuary
#

What platform do you use?

arctic niche
#

I am a dumb ass who keeps using youtube

#

lol

lavish estuary
#

Nice, me too lol

arctic niche
#

i have a playlist of every song I have favorited

#

I actually need to update it soon

lavish estuary
#

Nice nice

#

That's what I do as well

#

But the important thing

arctic niche
#

186 videos

#

huh

#

I thought it would be more

#

wait what

lavish estuary
#

you have to listen to those songs again lol

arctic niche
#

355 vistas

#

holy shit

lavish estuary
#

and again

arctic niche
#

I feel bad for people who had this on autoplay and then reached my vocaloid music

#

oh wait

#

huh

median trail
#

la flor es otra cancion buena

arctic niche
#

I don't have any of it on here I forgot I made a seperate playlist for it

lavish estuary
#

@tranquil canopy ¿Me ayudas más tarde, o sea, cuando te despiertes?

tranquil canopy
#

mi sueño es cuántico

#

nunca se sabe cuándo voy a despertar

#

si me ves on haceme ping y avisame

lavish estuary
#

zoop gracias

lavish estuary
#

@ocean otter Happy Birthday Ale! I hope you have great day and that you'll be spoiled rotten. Thanks for being the great friend that you are peepoLove2

ocean otter
#

@lavish estuary Gracias Jaleel, espero que tu año este lleno de cositas bonitas. Porque te las mereces compadre

cursive wave
#

Hey happy birthday man!! Have a good one blobnomcookie eat lots of cake

gusty ermine
#

Feliz cumpleaños a Rocco!

stiff maple
#

Happy birthday rocco! Que bueno es envejecer junto con el calendario. Mi hermano y uno de mis amigos tienen cumpleaños hoy tambien

ocean otter
#

Gracias gracias, pero es mañana xD

#

Aquí es 1 de Enero aún

#

Pero os lo agradezco de corazón

#

#

Me habéis alegrado la resaca blobcoffee

median trail
#

feliz cumple compañero del metal @ocean otter

ocean otter
#

Muchas gracias Edsel! 🤘

arctic niche
#

10 more years and it will be out : o

cursive wave
#

hi 😄

#

i can answer questions here

vapid bobcat
#

Lauren, why are you studying a computing science degree? (I know this is kind of a hard question blobsweats ) @cursive wave

cursive wave
#

haha to me its just because im interested in it

#

im actually hoping to be a commercial pilot

#

but i really enjoy the theoretical aspect of computer science

#

like i like the algorithms and the logic and the math behind it all

vapid bobcat
#

What I like most about the degree is that I'm not tied to anything specific as other choices make me

cursive wave
#

what do you mean with that?

vapid bobcat
#

Computer science is very wide.

cursive wave
#

ah yes

#

like the nice thing is that after say year one or two you have lots of different areas to go into

vapid bobcat
#

If I wanted to I could choose to learn AI or apply my knowledge to anything I can think of

cursive wave
#

my uni offers 6 different specializations

#

AI, Graphics, computer systems, information systems, theoretical computer science, and computer languages and software

#

so yea thats another nice thing

#

you have lots of different choices

vapid bobcat
#

Is the degree choice expensive where you live?

cursive wave
#

yes

#

it costs me about 3000 canadian dollars per semester in tuition

#

and thats just to pay for the courses

#

then you need to buy books, housing, living cost etc.

vapid bobcat
#

and do you think that's how it is only in Canada or is it like this everywhere?

cursive wave
#

hmm in north america its like that

#

like the US is also very expensive

#

but in europe if you are a citizen its much cheaper

#

idk about south america

#

i heard mexico theres also cheap universities or the government give lots of scholarships i think

vapid bobcat
#

Yes, it is true

#

In Perú, I'll try to get a scholarship where I can pay just 10% of my semesters and then pay everything later with no intereses (?).

cursive wave
#

ohh i see

#

university is also not too expensive there right

vapid bobcat
#

Yeah, If I had to pay the full semester

#

It'd be about 700 - 800 american dollars

#

Which it isnt much. But, here it is a lot because of our currency

cursive wave
#

oh true yea

#

lol uni is expensive

#

but its usually a good investment

#

especially if you enjoy what you are doing

vapid bobcat
#

If you were rich, which university would you choose?

#

Europe or America?

cursive wave
#

hmm for my bachelors id probably just stay in canada

#

but i want to go abroad for my masters

#

id love to go to MIT or Harvard for a Maths masters

vapid bobcat
#

Because of the education or the universities status?

#

When it comes to study computer science, MIT popped in my head too blobaww

cursive wave
#

well mit and harvard are the top two unis in the world for mathematics...

vapid bobcat
#

I know, it's just that I've seen people graduating from top tier universities and some times not being able to find a job

#

Or more common not getting the job they expected because of lack of experience

cursive wave
#

honestly thats usually that persons fault

#

because there are way too many jobs available

#

its just that people who graduate from top schools feel entitled to get a really good job right away

#

so they turn down jobs that are still really good, but they think they are worth more...

vapid bobcat
#

I think I'm out of questions, but do you think is there anything else I should know? Like something you would tell to yourself if you could

#

@cursive wave I think you might've missed my last question so I'll ping you to make sure blobpeek . Also I'll make sure to repay your time somehow

cursive wave
#

oh whats the last question??

#

oh about extra tips? @vapid bobcat

vapid bobcat
#

Ye

cursive wave
#

hmmm

#

lets see

#

go for the uni that you want to

#

even if it might mean living away from home or needing more financial support

#

i believe that will help you be more motivated in your studies

#

also talk to as many people as you can once you are in uni. go to all the events. talk to profs, graduate students, people in the industry

#

get as many connections as you can

#

its super interesting to talk to all those people and it will give you many good opportunities later on after you finish your degree

vapid bobcat
#

Thanks! I'm really glad you're here (I'm saying thanks for the sixth time blobsweats )

cursive wave
#

lol de nada

median trail
#

@lusty temple pierrot una pregunta, probablemente debes saber, una integral indefinida de una funcion primitiva F(x) no representa el area de dicha funcion cierto ? si no que ya el area la representaria la integracion definida

past harbor
#

"Psique" significa "alma" en griego. La tradición popular la imaginaba como una mariposa que se escapaba del cuerpo después de la muerte. De una belleza sobrehumana, Psique sólo se manifiesta tímidamente en el rostro (de ahí que se diga que la cara es el espejo del alma). Por su divina hermosura, no puede ser amada por ningún mortal, sino sólo por Eros, el dios del amor. La leyenda de Psique nos la ha trasmitido Apuleyo en Las metamorfosis.

#

Psique era hija de un rey. Tenía dos hermanas muy bellas, pero la belleza de Psique sobrepasaba con creces la de sus hermanas, era, en cierto modo, sobrehumana. A pesar de ello, sus hermanas pronto fueron solicitadas en matrimonio y se casaron. pero nadie se casó con Psique, tal era su belleza que ningún mortal osó desposarla.
Pasó el tiempo y Psique seguía soltera. El padre, desesperado al ver a su hija solitaria, acudió al Oráculo en busca de consejo. El dios del Oráculo le dio instrucciones precisas: debía vestir a su hermosa hija de novia y dejarla abandonada en una montaña, entonces vendría un monstruo y se la llevaría con él; ése era el Destino. Como los antiguos creían firmemente en las palabras del Oráculo, siguió sus indicaciones y, en doloroso cortejo fúnebre, acompañó a la "novia" hasta su triste destino. Con gran dolor la abandonó allí expuesta a los peligros de la noche y al cumplimiento de lo que estaba escrito.
En vano esperó angustiada la doncella, las sombras de la noche la envolvieron, pero el monstruo no comparecía. Entonces se levantó un fuerte viento, el Céfiro, que la elevó por los aires y la llevó a una mansión de mármol y oro. Allí escucho voces que se presentaron como sus sirvientas, allí las puertas se abrían a su paso, hasta que llegó al dormitorio. Cuando anocheció notó la presencia de alguien a su lado: era su marido, del que había hablado el Oráculo. Pero, aunque no podía verlo, no le pareció un monstruo. El extraño le habló muy dulcemente y le advirtió que no intentara ver su rostro. Durante el día quedaba Psique sola con las voces en el palacio, por la noche recibía a su amado de quien no conocía el semblante, sólo sus caricias y su dulce voz.

median trail
#

👀

past harbor
#

Día tras día, la felicidad de Psique iba en aumento, pero echaba de menos a su familia. Intuyendo la melancolía de su amada, el desconocido marido le preguntó por su pesar. Ella le confesó que era feliz, pero le pidió que le permitiera ir a visitar a sus padres y a sus hermanas, prometiéndole que después volvería junto a él. El marido, siempre preocupado por la dicha de su amada, le concedió su deseo.
Psique pasó un tiempo con su familia y contó a sus hermanas con qué intenciones y riquezas vivía en su palacio y el secreto de su esposo. Ellas, sintiendo envidia por su suerte, le convencieron para que escondiera una lámpara en su habitación y la encendiera cuando su marido dormía, de esa manera se daría cuenta de que vivía con un horrendo monstruo. También la convencieron para que llevara oculto un cuchillo con el que podría matar al ser que yacía a su lado.

median trail
#

👀

past harbor
#

Al volver Psique a su palacio, hizo lo que sus hermanas le habían indicado: ocultó la lámpara y el cuchillo tras un velo negro y, cuando el esposo dormía, retiró el velo y, para su sorpresa, descubrió un apuesto joven. Pero una gota de aceite cayó sobre el hombro del esposo, quien despertó y, al verse descubierto, desapareció para siempre.
El joven era Eros, el dios del amor, que había recibido el encargo de Afrodita, envidiosa de la belleza de Psique, de traspasar con sus saetas a la doncella, con el fin de que quedara irremisiblemente prendada de todos los hombres más indeseables. Pero Eros, al ver a Psique, quedó perdidamente enamorado de ella y se la llevó a su morada.
Una vez abandonada, Psique cayó en manos de Afrodita, quien la sometió a arriesgados trabajos. Uno de ellos consistió en descender al averno para traer en una caja la belleza de Perséfone. La joven no debía abrir la caja, pero vencida por la curiosidad la abrió y quedó profundamente dormida. Pero Eros seguía enamorado de Psique y la despertó de un flechazo. Entonces suplicó a Zeus que la convirtiera en diosa para poder casarse con ella. Zeus concedió la inmortalidad a Psique y goza ahora la compañía eterna de su amado.

#

En el mito de Psique hay muchas similitudes con la naturaleza de alma humana. Nuestra alma habita en un cuerpo mortal, pero ella es inmortal. Tiene una belleza muy superior a la corpórea, pero que no se puede ver con los ojos. La belleza del alma, de la que hablan tantos filósofos, poetas y místicos, es sobrehumana, porque el alma está llamada a hacerse divina. El alma, como Psique, no tiene un destino mundano, sino que está reservada para un dios: tal es su hermosa que sólo la puede poseer el dios del amor, Eros. En el palacio de Eros, no pueden verse, porque lo exterior no tiene importancia, no cuenta para el amor verdadero. Pero el alma añora los sentidos y quiere estar entre los suyos, quiere ver a su amado. Entonces, Psique enciende la lámpara. El deleite de los sentidos dura unos segundos y toda la felicidad se desvanece para siempre. Desde aquel momento, el alma queda prisionera de los caprichos de la belleza externa, esclava de las veleidades de lo sensible. Movida por la envidia y la curiosidad, destapa la caja que guarda una belleza menor que la que ella posee sin saberlo. El castigo por haberse deshonrado a sí misma es el sueño.

#

@sullen rapids @steep token @lavish estuary

#

Espero que os guste 😄

#

@gusty ermine Especialmente a ti, que eres griego y sabes de esto 😛

gusty ermine
#

Dios mío 😂 👏 ❤ @past harbor

sharp ginkgoBOT
#

@amber latch, you can't send other server invites here!

gusty ermine
#

🤔

lavish estuary
tawdry bridge
#

Este video tiene subtitulos?

vapid bobcat
#

@lavish estuary Me has hecho acordar cuando trabajé en una empresa de telecomunicaciones.

#

Lo veíamos todo 👁

#

Es interesante y triste a la vez

shrewd fjord
#

@lavish estuary thanks! very clear speaker. i loved this

#

did she recommend tor there at the end? and she's spanish? i want to marry her

ocean otter
#

Yep she recomended tor towards the end (or so i think because the audio cuts in that very moment)

#

And yes, she has a spanish accent

lavish estuary
#

blobpats Me alegra que os haya gustado

lusty widget
#

Lo he visto también y te abre un poco más los ojos...

#

Aunque Tor no es completamente seguro, sólo "dificulta" seguir tu rastro

past harbor
shrewd fjord
#

@lusty widget claro. pero por protegerse es super útil como tu conexión va a través a varios paises. tendrían que acordar con muchos leyes para procesarte

#

simplemente, usar tor es mejor que no

ocean otter
#

Y como se mantiene la infraestructura de tor? Utilizan tu ordenador como proxy también?

median trail
#

hacen cosas del diablo

shrewd fjord
#

@ocean otter solo si quieras utilizarlo así. por defacto no.

#

el uso estándar es conectarse a un sitio de web como usar un proxy normal, pero a través de multiples nodos en vez de 1

glass dragon
#

@gusty ermine why are you suddenly "other native"

manic plover
#

@gusty ermine

#

tell me link pls

gusty ermine
#

mm

#

how do u know who am i?

manic plover
#

i saw ur name

gusty ermine
#

cheater

manic plover
#

noo

#

no cheat

#

chinese

gusty ermine
#

ok

#

but change ur nick

manic plover
#

ok ok

#

erk its spanish lol

royal pine
#

@cursive lion
I recently learned that 'millipedes' means thousands of feet. 🐛
It made sense; mille + ped !
How did I not notice this???
I learned 2 languages with latin origins.

arctic niche
#

they don't actually have a thousand feet though

feral minnow
#

Average is like ~300 iirc

#

Centipedes also don't have 100 feet

sterile grove
#

is it just me or is this channel less popular than i expected?

glass dragon
#

@sterile grove it's not meant to be popular. It's just a place to have a quick side conversation without derailing whatever channel you're in

lusty temple
#

@median trail recién veo tu pregunta sobre la integral

#

no sé si la entiendo correctamente

median trail
#

jaja o sea

#

ya me la respondieron pero te explico igual

#

que mi pregunta era si la integral indefinida tenia el uso de que nos permite tener una solucion general para hallar las funciones primitivas que pertenecen a esa integral

#

y si ademas tenia otro uso

#

porque la integral definida es la que nos da el area

lusty temple
#

si entiendo bien tu pregunta, es si el procedimiento de hallar primitivas de funciones tiene otras aplicaciones aparte de calcular integrales definidas aplicando la regla de Barrow, no?

#

o sea, te pregunta es ¿qué sentido tiene resolver una integral inddefinida (esto es, hallar la primitiva de una función) si no es para calcular luego una integral definida?

median trail
#

mi pregunta es mas si la integral indefinida tiene otras aplicaciones que no sea solo hallar la primitiva

lusty temple
#

bueno si es eso, es más fácil de responder. la integral indefinida consiste en hallar la primitiva de una función

#

son la misma cosa

royal pine
#

Yes, of course.
You're right.
The scientist(s) naming these crawly bugs probably discovered
the centipedes first before they found the millepedes.
"Look Dave this worm bug seems to have a 100 feet!"
"Oh no, Dave! This one has like a thousand feet!"
Don't you think? whatthink
@arctic niche

arctic niche
#

sounds logical to me!

rain ermine
#

Please speken de ingles I need to pratise

shrewd fjord
#
public static int add(int x, int y) {
    return x + y;
}```
gusty ermine
#

Why does the optimistic programmer use unsigned integers?
...
Because he doesnt like to be negative

arctic niche
#

man why did I find this so funny

feral minnow
#

wtf

#

lmao

tranquil canopy
#

JAJAJAJA

#

que grande el viejo

arctic niche
#

i need to find more spanish newstories like this

#

this is the proper way to learn spanish

lavish estuary
open glacier
#

wen equipo

lavish estuary
open glacier
#

yo voy lento

#

no llegué al tercer gimnasio

lavish estuary
#

Uf, me da mucha vergüenza decirlo, pero este fin de semana lo he jugado 14 horas. blobsweats

#

Eat, sleep, play pokemon

arctic niche
#

14 hours?

#

those are some rookie hours

lavish estuary
#

Maybe haha. This is the first pokemon game in 6 years that I'm actually going to finish lol. I need to get to rid of some of the rust : P

gusty ermine
#

nice, i liked Fire Red best

lavish estuary
#

Naisu. I love all games tbh but the 4th generation holds a special place in my dark heart peepoLove2

gusty ermine
#

👀

lavish estuary
#

ACERCA DE HIELO Y FUEGO WIKI Hielo y Fuego Wiki es una enciclopedia en español creada por fans sobre la serie de fantasía épica Canción de Hielo y Fuego escrita por George R. R. Martin y...

celest bay
#

@lavish estuary ohhhh blobaww I like

lavish estuary
#

Pure 🔥

obtuse kite
lavish estuary
#

Wow, se ve asombroso :0

#

Bien hecho

obtuse kite
#

muchas gracias! :D

median trail
#

esta bueno pero qué miedo jaja

obtuse kite
#

lo siento jaja! el es de un videojuego llamado sally face

tulip lynx
#

Esperando el ultimo capitulo? jaja

copper fox
#

Hay un servidor como asi para aprender italiano?

rain ermine
#

Quieres aprender italiano?

copper fox
#

Es para mi amigo

rain ermine
#

Oh

#

Creo que Italiano y español tiene similarmentes

copper fox
#

tienen similitudes*

rain ermine
#

Gracias

copper fox
#

Y sí

rain ermine
#

Pero portugués y español son más similar

copper fox
#

Pero estoy tratando de encontrar un servidor como este porque es muy util para aprender nuevas palabras y mejorar tu conocimiento

rain ermine
#

Ok

#

I think I know an Italian server

copper fox
#

Sí, a veces puedo entender portugues debido a español

#

aa, de verdad?

rain ermine
#

sharp ginkgoBOT
#

@rain ermine, you can't send other server invites here!

copper fox
#

enviamelo en DM

rain ermine
#

BOT ESTUPIDO

#

Podemos habla inglés

#

Porque mi español es mal

copper fox
#

Podemos hablar*

rain ermine
#

Ok

barren abyss
#

help me die

lucid junco
#

RB + X

barren abyss
#

ok

unborn wraith
#

@river ivy ¿Algún mensaje hoy día?

river ivy
#

nope, desde que descubrí que server usaba y me salí ya no me ha llegado nada

#

pero ahora que decís eso asumo que sigue al acecho...

#

persistente el tipo

unborn wraith
#

Bien por ti

#

Aún quiere que le responda, pero no me deja

river ivy
#

ajajajjaa

#

y todos estos días había parado?

unborn wraith
#

No, desde el 31

versed moss
#

Alguien asiste a escuela secundaria o ha acabado de graduarse y tomado el examen AP

#

?

tranquil canopy
#

...

lavish estuary
harsh crag
#

ಠ_ಠ

grim sphinx
#

Omfg

tardy locust
#

; report

#

😛

#

.iam sensitive_topics

junior crystalBOT
#

JP 🌿#3968 You now have sensitive_topics role.

#

Gustav#6808 You now have sensitive_topics role.

grim sphinx
#

eso qué hace

tardy locust
#

zoop don't worry then

median trail
#

ya lo borro entonces

gusty ermine
#

.

gusty ermine
#

@tardy locust yo sí

tardy locust
#

I don't approve myself to be mod either

atomic jewel
#

Es el día del plátano

#

CHI

#

CHE

#

ÑOL

celest bay
#

quiero plátanos

tranquil canopy
#

oh no

#

ese video otra vez no

#

;-;

gusty ermine
#

*sonic says "here i'll show you!" or "now i'll show you!" ?

desert forge
#

@gusty ermine NOW I’LL SHOW YOU!

tranquil canopy
#

wait wtf

#

I heard this earlier today

#

and it totally sounded like here

#

now it sounds like now

#

what

desert forge
#

i 100% hear “now”

tranquil canopy
#

same

#

but I swear

#

before it sounded nothing like now

#

am I going crazy or what's going on

lavish estuary
#

Have any of you ever heard of Terrarium TV? As a pirate I'm ashamed to have found out about this so late blobsad

celest bay
#

Nope keseso

lavish estuary
#

You can basically watch any TV series or movie lol. The UI is nice as well, very user friendly. It's available on a lot of devices

celest bay
#

Ohhh

solemn torrent
#

Good stuff, gotta try it

arctic niche
#

wow a mod helping me pirate

#

something not right here

gusty ermine
#

@solemn torrent por favor use un VPN

#

supongo que debe saber que no es legal

lavish estuary
#

Tú no estás bien macho

gusty ermine
#

que quieres decir? no te entiendo..

lavish estuary
#

No me entiendo tampoco feelsbadman

gusty ermine
glass dragon
#

But it's an app. Who in their right mind watches TV on their phone

gusty ermine
#

chromecasting intensifies

glass dragon
#

Oh, I forgot those existed

#

Rich mofos with your smart TVs and extra devices

tranquil canopy
#

savage cooldoggo

glass dragon
#

Haha

#

I have a smart TV but I use my laptop connected to it. I need a rich person emoji

#

Oh I guess a Chromecast just goes through HDMI

gusty ermine
#

^ yes should be around 30$

solemn torrent
#

You dont need an smart tv to use a chromecast though!

lavish estuary
#

Yep, chromecast essentially turns your tv into one xD

drowsy sparrow
#

@median trail I have an idea

median trail
#

@drowsy sparrow tell me papi

drowsy sparrow
#

Have you ever used Jupyter notebooks?

median trail
#

nope

#

oooo it has something to do with julia

drowsy sparrow
#

who is she

#

wait when the f did you become a mod

median trail
#

it's a programmation language

drowsy sparrow
#

oh i use it for python

median trail
#

haha i became a mod like 3 days ago

#

oh i see

#

and what is it about ?

drowsy sparrow
#

congrats edselito

median trail
#

yay i was wondering where were you actuakly

drowsy sparrow
#

and it's like an interactive way to run a python script

#

having a quarter-life crisis

median trail
#

ooooh

#

i'll research more about it, seems interesting

drowsy sparrow
#

well anyway

#

I was thinking of making a basic machine learning tutorial on my github if you or @lucid junco were interested

median trail
#

oooooo

#

i am

drowsy sparrow
#

kew kew

#

how much about linear algebra, statistics, or machine learning do you know

lucid junco
#

@drowsy sparrow I am interested

drowsy sparrow
#

neet

#

ill work on that this weekend

median trail
#

s-senpai

drowsy sparrow
#

So what I'm thinking I'll make it on is making a basic neural network to classify digits from the mnist dataset

#

I'll try to make it user-friendly in terms of dependencies

#

it'll be good for me, I need to refresh myself on the basics

abstract scaffold
#

@lavish estuary I'm lighter than my sisters and my mother xD

lavish estuary
#

How? blobsweats

abstract scaffold
#

no se

#

Estoy mas alto que ellas tmbn

lavish estuary
#

How old are you?

abstract scaffold
#

20

lavish estuary
#

Eat something

abstract scaffold
#

jaja, cuando tenga hambre, comere

lavish estuary
#

Más te vale glare

abstract scaffold
#

does red bull count?

lavish estuary
#

Has it helped thus far? CrowThink

#

So no

abstract scaffold
#

it's helped me be awake

#

I'm now sucking on a lozenge, does that count?

past harbor
#

@sullen rapids

sullen rapids
#

hola

lavish estuary
#

@sullen rapids

To check which verbs get de, you ask yourself ''what......about'' about = de in Spanish

What did you forget about?
What are you happy about?
What are you complaining about?

sullen rapids
#

soy yo

#

OH SHITZU DOGS

#

so like

#

"de que te estás quejando?"

lavish estuary
#

*quejando

#

yeah

sullen rapids
#

pikawut ç

lavish estuary
#

You understand?

sullen rapids
#

i think so

#

i read something that was like

#

"replace que and everything after with eso and see if it makes sense"

#

but that about thing

#

makes 100000x more sense to me

#

oh so like

#

"estoy seguro de que" es como decir "im sure about"

past harbor
#

@sullen rapids
Teníamos muchísimas ganas que saliera el sol
Muero de ganas que lleguen las vacaciones
No me daba cuenta de que estabas aquí
Siempre se preocupaba que no nos faltara nada

#

Intenta decirme cómo es cada una

sullen rapids
#

.....me esforzaré glare a ver...

#
  1. incorrecta................
#
  1. incorrecta???? estoy diciendo esto porque estoy pensando en "ganas de" JAJA
#
  1. correcta
#
  1. in correcta
#

🙏

#

JAJA no creo que lo entiendo blobthinkcry

past harbor
#

Todas están perfectas 😃

#

Ya lo entiendes

sullen rapids
#

pues

#

numero 4

#

...

past harbor
#

es de que

sullen rapids
#

creo que lo entiendo pero todavía no podría usarlo en una conversación blobnervous voy a intentar practicar esto hoy

#

mil gracias @past harbor @lavish estuary

past harbor
#

gracias a Jaleel, no a mí

sullen rapids
#

?

#

acabas de hacerme ejemplos para estar seguro de que lo entiendo thonk

#

diría que me has ayudado renzo JAJA

drowsy sparrow
#

@lucid junco @median trail So this tutorial ended up being huge 😂

median trail
#

hahaha

drowsy sparrow
#

I'll push what I have currently to GitHub in a sec\

lucid junco
#

Ok ok

solemn torrent
#

son 81900 búsquedas o resultados? 🤔

#

deben ser búsquedas @past harbor

native spade
#

no son mejor resultados? 🤔 porque en ingles es " results" en ves de "searches"

gusty ermine
#

@random blaze , "resultados" es correcto en esa oración.

#

"búsqueda" es la acción de buscar. Si dijera 81.900 búsquedas, eso significaría que Google buscó 81900 veces esa palabra, lo cual no es lo que ocurre.

lavish estuary
past harbor
#

Se* hace el listo y el karma le da

lavish estuary
#

Qué?

past harbor
#

Hablo de Diego, no de ti

tranquil canopy
#

Viva la desvirtuación PartyParrot