#đŸăƒ»general-2

1 messages · Page 148 of 1

fallow dock
#

I can't tell you if this is good practice with this particular Framework. I've never used Swing. I can only help you with the concepts

#

what thing?

median trail
#

it's alright we are just beginners in my class

#

and there I created a person (the one with only ones)

#

and I don't understand why the info that's stored is still there

#

if this method I'm using for the button "closes" the instance as far as I understand

#

like after I close the window

#

the info in ventana shouldn't be there anymore

#

but using a static method it's still there

fallow dock
#

if your constructor doesn't do anything with personas, then it will be preserved since it's static

#

the idea of an static member is that it's not bounded to any specific instance. It's just there

median trail
#

oh

#

wow

fallow dock
#

that's why your programs usually contain public static void main(...)

median trail
#

this is pretty much why it works

fallow dock
#

let's take a look at that

median trail
#

do you want me to show you the main of my project? peepohide

hollow wedge
#

are we learning about static variables and instance variables?

#

and global and local state?

median trail
#

ehmmm

fallow dock
#
public class Whatever {
    String text = "Hello";
    
    void sayHi() {
        System.out.println(text);
    }
    
    public static void main(String[] args) {
        sayHi(); // won't compile
    }
}```
#

sayHi() there is a method for instances of Whatever. But right in main, there aren't any instances of it

#

you might think you're running in one, but Whatever.main(...) doesn't need an instance of Whatever

#

sayHi(), on the other hand, depends on one to work

#

so it would work like this:

#
public class Whatever {
    String text = "Hello";
    
    void sayHi() {
        System.out.println(text);
    }
    
    public static void main(String[] args) {
        new Whatever().sayHi(); // -> "Hello"
    }
}```
median trail
#

oh

#

I have a question

#

let's say I have sayHi2

#

which is another method of whatever

hollow wedge
#

note the distinction between

Whatever.staticMethod()
and
(new Whatever()).nonStaticMethod()
median trail
#

why can I use sayHi() inside sayHi2() if there aren't any instances of whatever

#

note the distinction between

Whatever.staticMethod()
and
(new Whatever()).nonStaticMethod()

yeah

fallow dock
#

if they aren't static, you can't. But it wouldn't let you call any of them if that's the case

hollow wedge
#

when you type

sayHi2()

inside a (non-static)method then you are implicitly writing

this.sayHi2()
median trail
#

ooooooooh yeah I thought it was somehow related to "this."

hollow wedge
#

also: you can use static and non-static methods from a non-static method

median trail
#

I see wolfsneaky

#

oh ok thank you guys

#

blob_hug I learned something new today

fallow dock
#

so in some time you'll find out about singletons by yourself. And you'll say "damn what a great thing"

#

then you'll regret

median trail
#

dynamic memory is fun

#

it's the core concept of my data structures class in uni

hollow wedge
#

what do you mean when you say dynamic memory?

#

the heap?

median trail
#

yes

#

basically memory that's stored when running the code

hollow wedge
#

hmm, stored, do you mean allocated?

median trail
#

yes

hollow wedge
#

yeah thats good stuff

median trail
#

I don't know the correct terms đŸƒâ€â™‚ïž

hollow wedge
#

they are good to know, they help clarifying stuff

#

allocation, intialization and assignment are words that come to mind

#

declaration

fallow dock
hollow wedge
#

haha, in this case you didn't make up a word though xd

#

anyway it depends on context whether its important to use the correct terms

fallow dock
#

gotta love language specific conventions

#

/s

hollow wedge
#

hello, I am python, this is called self thank me later

#

first one I could think of

fallow dock
#

I was thinking of List vs ArrayList. But not the interface vs the class

#

C#'s List vs Java's closest equivalent ArrayList

hollow wedge
#

yeah, it can get confusing

fallow dock
#

except in C#'s there's an ArrayList. But you shouldn't use it.

#

epic

main hatch
#

Alright I’m doing stuff with logarithmic equations and my calculator keeps screwing up

#

It’s giving me domain errors

#

But I know what I typed in is correct

#

And I can work the stuff out by hand fine and get the correct answer

#

Okay now I got to the point where I’m using the natural log and that’s gonna be a pain in the ass to do by hand

#

Because I’ll have to approximate

main hatch
#

Okay I just put in
log base 6 (x) = 2

#

(Formatted for the calculator it’s log(x,6) = 2)

#

And...

#

It said domain error

#

Like, I literally asked it what 6^2 is, in the format of a logarithmic equation

#

This thing is kinda stupid ngl

grim lava
#

are you sure you made it explicitly solve for x?

main hatch
#

Yeah

#

Well, what I did was I went into the equation solver and typed in log(x,y) = z, then I gave y and z their respective values, then asked it to solve for x based off of that

glass dragon
#

Which calculator?

#

Also you can always use the base change formula if your calculator is fucking up doing it that way

#

There's also lots of log calculators online if you want to go that route

median trail
#

@ashen mist are you there?

#

i need networking help pandasad

#

@fallow dock are you there?

fallow dock
#

I don't dare to assist with networking, sorry. What you're learning now is too specific for me.

hollow wedge
#

maybe if you ask the question someone can weigh in

#

I probably cant help

#

but I still like seeing your questions

median trail
#

" There are 50 dorm rooms with two drops each that will be on one sub-subnet"

what are drops

#

I assumed it meant host

fallow dock
#

I assume it's this definition I found:

A connection point in a network. The term generally refers to a local area network (LAN). Network drops are typically wall outlets with an Ethernet jack that a computer or other network device can plug into.
both of my colleges were full of those outlets

#

double check though

glass dragon
#

Yeah it means that each dorm room will have two places to plug in

median trail
#

oh ok then I did fine

#

2 * 50 hosts uwu

bold gull
crystal kraken
#

speaks

eager wagon
#

@safe ravine cuåntos años tienes?

safe ravine
#

18

#

Y tĂș?

eager wagon
#

👀 30

#

qué estudias?

safe ravine
#

Ahora no estudio. Estaba en un intercambio en Finlandia, pero causa de la corona estoy ahora en casa en Bélgica. Vendré a la universidad en septiembre. ||That took a long-ass time to type||

eager wagon
#

Qué haces ahora entonces? y qué estudiaste en Finlandia?

safe ravine
#

Ahora no hago nada. Estudio finés e español. Estudiaba al colé secundario en Finlandia, en finés blobsweats

hollow wedge
#

physics question, does anyone know how I can compute the refractive index of water with this sort of a setup?

#

like, actually compute it, not just explaining what is happening

fallow dock
#

||r u writing glsl||

hollow wedge
#

me? no

#

a friend got this physics question and I'm trying to help

#

I understand the underlying laws

#

but I cant see how you can arrive at the answer with just household items

quiet gull
#

My dogs fighting for attention

glass dragon
#

Well the gray one is cuter so give the brown one more pets so he doesn't feel bad

median trail
fathom flame
#

@grim lava how do i know if an emote is banned here?

grim lava
#

wot @fathom flame

#

if you have to ask that question, you probably have your answer

fathom flame
#

can i put it n u tell m? whatthink @grim lava

grim lava
#

i refer back to what i said

#

if you have to ask, then the answer is probably no, you probably shouldn't post it

fathom flame
sweet cape
#

Does anyone use this?

dapper bough
#

My Mom has them

#

but she used to be a hairdresser so thats why

sweet cape
#

But this one?

#

Or other like that

#

Cuz i’ve seen some of them but I bought one that it looks pretty good, i dismiss that

dapper bough
#

not this specific brand, no

sweet cape
#

I bought this one

#

Oh yeah, i’ve been watching some videos on youtube about “how to do a fade”

#

Lol

dapper bough
#

lmao

#

ur gonna cut ur own hair?

tawdry hatch
#

do it

#

it's going to be time consuming though

#

and there's a high chance of you botching up your hair if it's your first time

#

but if you never start, you'll never improve

sweet cape
#

That’s so motivating.
I don’t feel bad if i’ll botch up my hair, that would be great to learn about what i kinda like for haircut

#

Did you try it?

#

Oh yeah turtle, they seem like when they do that it’s so simple and easy haha

gusty ermine
tawdry lake
#

Whoever made the server logo change flags when you hover over it, that's a very nice little feature! Kudos 👍

vestal pine
#

thx it was a lot of effort but im glad it paid off

glass dragon
#

don't listen to bizzle it wasn't him

vestal pine
still radish
#

@glass dragon quién fue?

glass dragon
#

no recuerdo

still radish
#

estĂĄ bien

hollow wedge
#

no me acuerdo vs no recuerdo
discutid!

median trail
#

no

hollow wedge
#

no what?

#

what is the difference, which one fits better?

#

do they mean the same, are they interchangeable?

median trail
#

here's not the place for that sir

hollow wedge
#

ok thank you

#

lol

median trail
#

I'm joking pandasad

hollow wedge
#

I assumed so

median trail
#

this depends so much on the country that having a discussion would be pointless

hollow wedge
#

ok so then they are basically interchangable

#

I don't see recuerdo often

#

I am satisfied with your answer edsel, thanks for the negocio

quiet gull
#

I'm using like, all of our eggs in quarantine to bake cakes and cookies ._.

fathom flame
#

@still radish 😭

#

rip egg

vale quarry
#

you're next blurryeyes

fathom flame
rain ermine
#

Sorry I had to

alpine cradle
#

no lo entiendo

gusty ermine
#

ola bebés

#

alguien de aquĂ­ sabe de mates

past harbor
#

tu di lo que necesitas

#

van a empezar a salir como moscas

gusty ermine
#

yo me he quedado en mates de 2 de la eso

#

lo siento

#

bueno cuando mande lo que necesita ya lo pasaré

#

en que curso estĂĄ?

#

1Âș bach

gusty ermine
#

can someone please help me with my science homework

agile robin
#

What level of science

gusty ermine
#

im 14 higher level

#

I haven't done any of it

#

help me

#

@agile robin

agile robin
#

Oh shit I'm exactly where you are, cannot be much help because I haven't had any further lesson on it oof

copper fox
#

Liz en otros canales wowowowowowowowowow

fossil wyvern
#

Don't you just have to multiply the heat capacity with the mass and that times 10 for 10 °C ? @gusty ermine

agile robin
#

There's a formula for it, I can't think of it right now

fossil wyvern
#

Or maybe I'm thinking too simply 😅

rain ermine
median trail
past harbor
#

algo haces mal

#

32 pestañas¿

#

wtf

real imp
#

no necesariamente

past harbor
#

eres programador?

real imp
#

eso son los procesos, no las pesta;as

past harbor
#

q mania con abrir tantas pestañas

real imp
#

chrome abre un monton de procesos a la vez

past harbor
#

ah

real imp
#

independientemente de las pesta;as

past harbor
#

pues yo tengo 9 pestañas y me pone 9

#

acabo de cerrar 2

#

y pone 7

real imp
#

no siempre es asi

past harbor
#

sera coincidencia

real imp
#

sobre todo con extensiones

median trail
#

yeah I mean, every tab has an ID and its own process

#

but there's like a root process

median trail
#

so i don't think this number is accurate all the time

real imp
past harbor
#

no sabia lo de las extensiones

#

interesante

median trail
#

I learned about this in my networking class wolfsneaky yeah it's interesting

past harbor
#

yo aprendi lo basico del admin de tareas

#

no profundice en chrome la vdd 😄

real imp
#

I learned about this in my networking class wolfsneaky yeah it's interesting
@median trail que raro, por que ense;aron eso?

median trail
#

Because it's important when you are learning about UDP and TCP in the transport layer

#

since each process has a port

#

but there are ports for different purposes and such

#

and our teacher showed us each process has its own port

#

and when you install a program on your pc, and it asks you to restart the computer is because it wants to make sure the port it registered on your pc is available for use

#

at least that's the reason most of the time

real imp
#

ah

#

en bachillerato, en la clase de taller de mantenimiento, dimos redes pero no vimos eso

#

dios, como me canse de redes

#

dos a;os seguidos

#

ñññññ

#

agora sim kkk

median trail
#

Cisco CCNA course is very thorough, but sometimes there's so much to learn that becomes overwhelming

real imp
#

el que es online?

#

ah, si

#

es el curso que hizo mi profesor de taller de mantenimiento

rain ermine
#

i only have like 6 tabs open*

#

cinco

real imp
#

y nos recomendĂł el curso de cisco ese

#

dice que es genial

median trail
#

yeah it's nice. I've learned a lot

real imp
#

ese profesor era muy cool

#

me dejó llevar mi torre para enseñarme a instalar la nueva gråfica que había comprado

rain ermine
#

ticko

real imp
#

q

median trail
#

I went from knowing nothing to knowing more or less what everyone expects me to know

rain ermine
#

dime la razon por la que usa tanto ram mi pc por google chrome, discord, y spotify

real imp
#

yo qué sé

#

xd

rain ermine
#

ugh

#

debo googlearlo

real imp
#

y...

#

I went from knowing nothing to knowing more or less what everyone expects me to know
@median trail cuĂĄnto cuesta el curso?

past harbor
#

@rain ermine

#

cuantas extensiones tienes

real imp
#

pero no es eso, el spotify estå consumiendo banda de memoria también

#

1,5gb

rain ermine
real imp
#

no, son procesos

past harbor
#

no

rain ermine
#

jmm

#

no se que es pues

past harbor
#

esto es una extension

#

cuantas tienes en chroe

#

chrome

real imp
rain ermine
#

OHH

#

tengo muchos...

median trail
#

I don't know to be honest. I'm taking it because my university decided to make us take Cisco courses instead of normal networking classes

past harbor
#

utilizas todos?

real imp
#

dude

#

epic

rain ermine
#

diria que si

real imp
#

you are like a grandma

past harbor
#

deberias quitar alguno que no uses

real imp
#

installing everything they see on the pc

rain ermine
#

nah

#

tengo adblock

median trail
#

for example, next semester I'm taking the next course after the CCNA one

rain ermine
#

pero tienes razon

#

debo quitar unos

real imp
#

adblock doesnt even block everything whatthink

#

I don't know to be honest. I'm taking it because my university decided to make us take Cisco courses instead of normal networking classes
@median trail ohhh que genial

rain ermine
#

it does enough*

#

bloquea los ads de yt

past harbor
#

deberías intentar limpiar caché también

#

actualiza chrome

real imp
#

check the link i sent, epic

#

it was the first result

rain ermine
#

vale

#

OH

#

ya hice eso

#

y corrio lento spotify

real imp
#

but did it consume as much ram

rain ermine
#

no

real imp
#

or what are you talking about

#

cache?

#

or hardware acceleration

rain ermine
#

hardware acceleration*

real imp
#

also why do you need spotify to run fast

#

it's literally just music

past harbor
#

no se por que debes de escuchar musica en spotify, si te soy sincero

#

te puedes hacer una lista en youtube

#

xd

#

y gasta menos

rain ermine
#

nah

real imp
#

youtube music is much better than spotify premium

rain ermine
#

es que me gusta spotify

past harbor
#

yo toda mi musica la escucho en yt

real imp
#

even free youtube music is better than spotify

past harbor
#

y se escucha genial

#

pero puedes conseguir lo mismo y mejor en youtube

real imp
#

also if you team up with friends you can pay as low as less than 2 dollars for youtube premium

#

which is what i do

rain ermine
#

y si tienes que escuhar por tu celular

past harbor
#

te creas una cuenta, te haces una lista

#

y ya

#

pues tu movil es tu movil

#

pero el pc es otra cosa

#

xd

real imp
#

y si tienes que escuhar por tu celular
@rain ermine mobile yt music app?

rain ermine
#

es una mierda

real imp
#

?????

past harbor
#

no se, a mi me gusta yt

real imp
#

you haven't used it

#

clearly

#

lol

past harbor
#

y me va muy bien el pc

rain ermine
#

pues tenemos opiniones diferentes ok

#

te gusta eso me gusta eso y ya

real imp
#

your opinion is wrong tho

past harbor
#

pues, tendrás que comprarte más ram 😄

#

si quieres satisfacer tu opinion

#

cuanta ram tienes?

rain ermine
#

8gb

past harbor
#

normal que se te muera el ordenador

rain ermine
#

uyy quiero 16

real imp
#

nah, 8gb es normal

#

en mi laptop tengo 8gb y le sirve

rain ermine
#

es suficiente para hacer cosas basicas y jugar unos juegos

past harbor
#

con 5 o 6 pestañas de chrome ya son casi 4 gb comiendo en memoria por lo que lei

#

le sumas extensiones y spotify

#

mas el sistema operativo

rain ermine
#

en serio wow

past harbor
#

normal xd

real imp
#

depende mucho...

past harbor
#

claro, depende

#

pero en su caso que tiene mucha mierda

#

lo normal es que le pase lo q le pasa

rain ermine
#

aimbot jmm

#

no necesito esa extenstion

real imp
#

...

past harbor
#

q es eso

rain ermine
#

que cojones es keyword

past harbor
#

lol

#

xDD

rain ermine
#

no se

past harbor
#

tienes cosas instaladas

#

madre mia

#

intenta limpiar tu navegador también un poco

real imp
#

parece una abuela

past harbor
#

actualizalo, limpia caché, etc

rain ermine
#

que pasaria si limpio mi cache

real imp
#

nada

#

cache memory is just data that programs save to load stuff faster

past harbor
#

como que nada?

real imp
#

since it was already once downloaded

past harbor
#

si que ayuda xd

rain ermine
#

jmm

real imp
#

se limpia y actualiza seguido, no cambia casi nada limpiarla o no

#

a menos que tengas errores, por alguna razon

#

pero que la limpie, si igual se va a descargar de nuevo

past harbor
#

cuando las cosas van como el culo

#

lo primero q se hace es limpiar cache

rain ermine
#

tengo una historia

#

en el pc de mi hermano

past harbor
#

tu herman

rain ermine
#

habia trojan

past harbor
#

troyano

rain ermine
#

si lol

past harbor
#

por que teneis cosas asi

rain ermine
#

y 4k viruses o algo asi

past harbor
#

en vuestros ordenadores

#

que descargais

#

xDD

rain ermine
#

no se

#

pregunta a mi hermano

past harbor
#

como podeis tener viruses

real imp
#

extensiones

past harbor
#

si solo escuchais spotify

rain ermine
real imp
#

como aimbot

rain ermine
#

tenia algo de yahoo

past harbor
#

uh

real imp
#

tienen que dar ciberseguridad en secundaria

past harbor
#

antes de descargar cosas, es importante que mireis

real imp
#

es estupido que no se de

past harbor
#

si la fuente es fiable, comentarios

#

ver si n es un anuncio

#

pasar el antivirus

#

etc

rain ermine
#

ah

real imp
#

los gurisitos estos van a ser mis abogados un dia

#

y van a tener un virus en la pc con mi info

past harbor
#

y si quieres descargar

#

cosas si o si

#

con virus

#

deberias de tener un pc secundario que te importe una mierda lo q le pase

#

😄

rain ermine
#

nunca queria descargar un virus

eager wagon
rain ermine
#

hablabamos de los viruses

#

y decidi que queria hablar del pc de mi hermano

#

pq tenia muchos viruses

alpine cradle
#

tienes un hermano? wolfsneaky

eager wagon
#

ya no

past harbor
#

alguien por curiosidad tiene alguna idea

#

de pq un mismo trozo de codigo no funciona en una pagina idéntica a otra

rain ermine
#

si @alpine cradle

gusty ermine
#

oye

still radish
#

@quiet gull buena cocciĂłn

sweet cape
#

What an useful video đŸ‘đŸœ

median trail
#

a useful*

still radish
#

buena correcciĂłn

#

es un error comĂșn

river ivy
#

any discord expert around who can confirm me discord changed its people limit for the screen sharing option? GWseremePeepoThink

abstract scaffold
#

hace mucho tiempo, desde el once de marzo.

river ivy
#

gñal, gracias

celest bay
#

I think they changed it around the time coronavirus started, so that more people could use it

gusty ermine
#

ÂżAlguien sabe algo acerca de ĂĄcidos nucleicos?

still radish
#

no perdĂłn

#

es peligroso?

gusty ermine
#

No, es un ejercicio que tengo que hacer de la escuela xD

junior crystalBOT
#

Kulrox#6133 You now have SesiĂłn de Lectura role.

grizzled hedge
#

Deoxyribonucleic acid

shrewd pendant
ashen mist
#

alguien dijo virus?

cloud drift
#

Se bugea

#

O se me bugea a mĂ­ nomĂĄs?

#

Luego lo toqué, apareció 1, y luego lo toqué de nuevo y desaparecieon las reacciones

#

En las reacciones de Ryan

#

Del mensaje de Ryan

#

Supuestamente habian 2 reacciones

median trail
#

@ashen mist why is UDP used for live streaming but TCP used when watching a video whose audio and video is stored?

ashen mist
#

con UDP, no importa si algunos paquetes de datos se pierden

#

o sea, puede sacrificar la garantĂ­a de transmitir todos los datos correctamente para obtener mĂĄs movimiento

#

TCP tiene que trabajar mĂĄs para enviar los datos porque tiene que asegurarse de que todos los datos lleguen bien y en orden

median trail
#

garantia*

ashen mist
#

ty

#

con live streaming, no hay que tener 100% de los datos

median trail
#

Oh so that's why when we watch a video the order of the frames is important, thus TCP is required?

ashen mist
#

no se va a notar mucho

#

no estoy seguro, pero dirĂ­a que si quiere descargar el video, hay que obtener toda la informaciĂłn

#

oh wait, te referĂ­s a los videos de youtube por ejemplo?

median trail
#

hmmm but when we watch a video in youtube the video is being downloaded, right?

#

yeah

ashen mist
#

ah, pensé que hablabas de grabar una llamada de skype o algo así jaja

median trail
#

nah

#

haha

ashen mist
#

creo que youtube usa HTTPS para reproducir los videos, no?

#

eh, no creo que eso tenga nada que ver

#

parece que servicios como youtube quieren las garantĂ­as de servicio que TCP puede ofrecer

#

hmmm

#

wait

#

ese post se subiĂł en 2013 lmao

#

si me acuerdo bien, youtube ahora usa algo como QUIC

median trail
#

well my cisco ccna couse content says "when you watch a video, and it stops and says "buffering" TCP is reordering the segments received, and waiting until the network has enough bandwidth"

ashen mist
#

tiene sentido

#

oh

median trail
#

to be honest in some cases whether to use UDP or TCP seems confusing

#

I can understand when downloading stuff on the internet like a rar file or any file TCP is used

#

but when using VoIP like Skype(I think) UDP is used, but one might think TCP would be better since hearing everything what people is saying is important

#

but my teacher told my why this is not the case

fallow dock
#

I would assume the idea is to avoid a significant delay

#

if you start losing packets over TCP you'll have to wait and the rest will pile up

gusty ermine
#

I taught my cat how to sit on command.

median trail
rain ermine
#

Since when does pi equal 3

vale quarry
#

when u cba with decimals

rocky pond
#

Real chads approximate

fallow dock
#

since some engineer said so

ashen mist
#

Engineer... So true

fallow dock
#

oh I actually wrote a program to stream over HLS once

#

so that's over HTTP(S) which uses TCP

#

Twitch and YouTube work in the same fashion

#

you basically have a manifest listing the available video chunks which your clients asks for periodically

#

the delay is noticeable

grizzled hedge
#

g = pi^2

gusty ermine
#

can someone help me understand

#

a math problem

#

=wolf integrate 0 to 2 ln(x^2-3x+3)dx

rotund pawnBOT
#
Query made by

@inland bobcat

Assumptions

Assuming 0 to 2 is referring to referring to variable ranges. Use "0" as 🇩 a decimal number.

gusty ermine
#

can someone explain this in integration by parts please

abstract scaffold
gusty ermine
#

I tried and i did first integration but then i got stuck

eager wagon
#

@young torrent de dĂłnde eres?

young torrent
#

United Mexican States

#

Why?

gusty ermine
#

es que you seem also very anti vosotros xD

young torrent
#

I am not against vosotros lol

#

I just dislike that people think that all Spaniards use it.

gusty ermine
#

bueno pero es verdad que vas a oirlo en españa

eager wagon
#

Mexico?

gusty ermine
#

SĂ­ Mexico es un conjunto de estados

young torrent
#

Yes, United Mexican States.

eager wagon
#

Oh

gusty ermine
#

Tanto como los eeuu

#

pero los demĂĄs le llama mexico

eager wagon
#

No lo sabĂ­a, perdĂłname por mi ignorancia .x

gusty ermine
#

xD

young torrent
gusty ermine
#

jajaj jaja

#

Kwasi amas Mexico?

#

xD

young torrent
#

I’m the only weirdo who uses UMS instead of Mexico on Discord.

eager wagon
#

le

young torrent
#

What matters here is that I think that tĂș and vosotros should stop existing,

gusty ermine
#

es una posiciĂłn radical, no piensas?

eager wagon
#

Pero hay gente que se siente ofendida por eso, Kwasi porque es parte de su cultura e idioma.

gusty ermine
#

lo crees eso porque crees que el idioma serĂĄ mĂĄs facil sin tĂș y vosotros, Âżno?

eager wagon
#

Puedes tener opiniones pero no significa que debas expresarlas aquĂ­

young torrent
#

Nope

eager wagon
#

No me gusta el voseo pero no voy a desanimar a otra gente si lo quiera aprender

young torrent
#

Actually I love Colombian Spanish just because they use usted as informal some times.

#

I never said he shouldn’t learn vosotros for his entire life.

#

I just recommend that he not be that focused on it right now.

eager wagon
#

y por qué no?

#

yo aprendí español con el vosotros desde el principio.. qué hay de malo?

#

serĂ­a lo mismo que aprender el voseo desde el principio

#

si te interesa, por qué no?

young torrent
#

Mmm no

#

El voseo es mĂĄs Ăștil que el vosotros

#

Lol

#

Y

#

El punto es que

eager wagon
#

No estoy de acuerdo con eso

#

y no sé por qué lo dices

young torrent
#

Luego la raza se confunde

eager wagon
#

para mĂ­ el voseo no tiene ningĂșn uso

young torrent
#

Vosotros estĂĄn

eager wagon
#

es algo que se usa muy lejos de mĂ­ y no me interesa

young torrent
#

El voseo se usa en toda América del Sur

#

ÂżDĂłnde vive usted?

eager wagon
#

y? no vivo allĂ­, ni siquiera cerca

#

Inglaterra

young torrent
#

Esta bien que hubiese aprendido vosotros entonces.

#

EstĂĄ*

#

I’m too lazy to write Spanish :fjriekejri

eager wagon
#

Bien.. y creo que cada persona puede elegir lo que quiera, no?

young torrent
#

As well as the other guy was, I was just recommending him to not be focused on vosotros right now.

eager wagon
#

Me parece un poco dudoso empujar tus opiniones en alguien que estĂĄ buscando respuestas neutrales para poder tomar una decisiĂłn en lo que quiera hacer

young torrent
#

Nada es objetivo

gusty ermine
#

Kwasi, it's not what you said, it's just how you said.* Just be a little kinder if you can

young torrent
#

Ambos estĂĄbamos dando opinions

gusty ermine
#

It just seemed a little aggressive and out of place* as if you actually had something against the use of vosotros which is a little glottaphobic

young torrent
#

Mmm

gusty ermine
#

Just understand that new people are looking for guidance and need a little more sensitivity and help when trying to make a decision*

#

that's all Nil is trying to say*

young torrent
#

I could say he had something against America.

gusty ermine
#

You could, but if you read that log, it doens't support such a claim as he kept agreeing with what you said*

#

Just be a little kinder* the sever is for learning and everyone wants to feel comfortable

young torrent
#

I wasn’t rude to him.

gusty ermine
#

No, perhaps, but again. It's not what you said, but how it was said*

young torrent
#

In English?

gusty ermine
#

Nevertheless, kindness doesn't hurt. peepolove *

eager wagon
#

Para mĂ­ es importante que alguien se sienta seguro elegir lo que quiera, fuera de nuestras opiniones, nada mĂĄs

abstract scaffold
#

@gusty ermine puedes postear lo que has hecho ya para que pueda ayudarte?
could you post the steps you've done so far so I could lead you in the right direction?

gusty ermine
#

help?

#

;(9

#

please F14

abstract scaffold
hoary crag
#

Alguien sabe como poner playlists de soundcloud en el bot

still radish
#

QUE APLICACIÓN ESTUPIDA!

shrewd pendant
#

Lol

#

CuĂĄl aplicaciĂłn?

still radish
#

clozemaster*

glass dragon
gusty ermine
#

@abstract scaffold how do i do integration of fraction?

abstract scaffold
#

don't forget to put limits.

#

it depends.

#

are you permitted to use any substitution in this question?

real imp
#

oh god integrals

abstract scaffold
#

whenever you see a fraction where top and bottom are just simple polynomials with integer powers

  1. try to do polynomial division (if you have a quotient p(x)/q(x) and the degree of p(x) >= degree of q(x))
  2. try completing the square on the denominator.
#

OR:
if substitution is allowed, then - complete the square (denominator) then do either trig-sub immediately or a combination of u-sub and trig-sub.

still radish
kind elk
#

Mi bicicleta

subtle finch
still radish
#

muy bien

eager wagon
#

lame jokes, i love it

smoky comet
#

Lmao.

north bay
#

Estas bien

still radish
vale quarry
#

what's that? country placements?

ashen mist
#

Hola

glass dragon
#

@vale quarry it looks like "seterra geography games"

#

It's like "click on libya" or "click on Morocco" and you have to click on the country

vale quarry
#

nah, they'd be a darker green

glass dragon
#

Oh I assumed it was his saturation

vale quarry
#

and theres no timer in that

glass dragon
#

Yeah it times you

vale quarry
#

well there is but it's on the left and doesn't count down like most do

glass dragon
#

Is that counting down?

vale quarry
#

I'm doubting that took him 6 minutes but idk lol

glass dragon
#

Yeah I don't know

#

I assumed that was like an average time for Africa or something

vale quarry
#

I'm pretty sure it's not seterra tho

glass dragon
#

Ok

#

Well hopefully egg will answer soon then

vale quarry
#

if he thinks Africa is hard he should try Oceania ineedanadult

abstract scaffold
#

I think I'd fail to locate new caledonia and vanuatu, despite me being there b4.

vale quarry
#

oof the countries are hard enough

#

nevermind the tiny individual territories n islands

glass dragon
#

OceanĂ­a was so hard as to be a mere clicking game, which made it not very hard at all. Africa was hard because I knew generally where every country was, so I wasn't just clicking at random, which meant it felt much harder

median trail
hybrid hull
#

Very nice

#

Python is awesome

median trail
#

I love it

#

because I literally didn't want to open a program to execute my cose

#

code

#

and on top of that I would have to change it every time

#

I love I can just pull out cmd, and execute some piece of code

hybrid hull
#

It's such a practical language

median trail
#

yes

hybrid hull
#

Cheers!

ashen mist
#

Hola

#

Python

fallow dock
#

hola Veraniega

ashen mist
#

Hola manusaurio

fallow dock
#
irb(main):001:0> []
=> []
irb(main):002:0> [_] * 2
=> [[], []]
irb(main):003:0> [_] * 2
=> [[[], []], [[], []]]
irb(main):004:0> [_] * 2
=> [[[[], []], [[], []]], [[[], []], [[], []]]]```multiplicaos y poblad la tierra
#

mejor sigo con mi tarea ,_,

ashen mist
#

Jajajajajaja

#

Es como un germen

median trail
#

the fuck

ashen mist
#

Me pregunto si se puede hacer algo semejante en powershell

crystal marlin
#

HOLAAA

ashen mist
#

Hhhola

median trail
#

i don't even understand what that is

fallow dock
#

that's Ruby but you can do it in the Python REPL as well

#

_ is just an auto generated variable for the last evaluated expression

#
>>> 1 + 1
2
>>> _
2```
median trail
#

why

fallow dock
#

why does that feature exist?

#

idk, it might be easier to test something out if you don't want to declare variables

#

or you could do simple math, I guess

#

node does the same thing (with the _, not the JS arrays)

shrewd pendant
#

Is [[]] * 2 = [[], []] typical behavior for arrays?

fallow dock
#
>>> 1 + 4
5
>>> _ / 2 + 3
5.5
>>> my_results = [_]
>>> 50 * 100
5000
>>> _ / _
1.0
>>> my_results.append(_)
>>> my_results
[5.5, 1.0]```Hmhm. Idk, I never use this
#

Is [[]] * 2 = [[], []] typical behavior for arrays?
@shrewd pendant for Python lists, yes

#

in fact

shrewd pendant
#

Cool

fallow dock
#
>>> my_list = [[]]* 3
>>> my_list[0].append("hello")
>>> my_list
[['hello'], ['hello'], ['hello']]
>>> ```
#

the inner list is actually the same reference copied 3 times

#
>>> my_list[0] is my_list[1]
True```well, this also proves it
#
>>> my_list = [[]] * 1_000_000
>>> all(my_list[0] is current_list for current_list in my_list)
True```or this*
#

Ah, I remember an easy example I once used to explain this behaviour

#

or I think it's easy to get

#
>>> class Useless: pass
... 
>>> [Useless()] * 3
[<__main__.Useless object at 0x7f280261c460>, <__main__.Useless object at 0x7f280261c460>, <__main__.Useless object at 0x7f280261c460>]
>>> 
```if you have a class without repr/str, you can see its memory address
#

so you can appreciate that multiplying a list multiplies the references it contains

#

those 3 Useless are the same object @ 0x7f280261c460

#

so with [[]], the same thing happens

#

ofc not a problem with immutable objects, such as strings

shrewd pendant
#

Got it. Thanks!

median trail
#

I see hex values I cry

fallow dock
#

well

#
>>> f'{0xAA + 0xAA:012b}'
'000101010100'
``` cool way to use f-strings to compute hex and show binary!
#

0xAAAAAAAAAA!!!

#

brb in 20 minutes I'll finish my work

fallow dock
#

that took me some time

hybrid hull
#

That is really cool I didn’t know about that

#

I honestly just started using f strings pretty recently this semester

sweet cape
#

Nice channel foxcool

mellow laurel
past harbor
#

ÂżAlguien sabe de AJAX?

still radish
#

el equipe de fĂștbol?

past harbor
still radish
#

quiero unas series/películas en español basado en hecho

#

así puedo aprender español y unas historías real al mismo tiempo

trail haven
shrewd pendant
#

what a strange quesstion

trail haven
#

yeah and i need help

shrewd pendant
#

I don't understand why x would = 12

trail haven
#

he made a mistake somewhere

shrewd pendant
#

I'd say don't worry about that part, just solve it correctly

trail haven
#

i have to

#

its apart of the qustion

#

also this question

shrewd pendant
#

Rr = pink

#

seems simple enough

#

I don't understand why you need 4 sentences

trail haven
#

i cant read the question it requires too much from me

shrewd pendant
#

how do you mean?

trail haven
#

i cant focus on anything long enough to read that

still radish
#

the mistake is not subtracting the 12*

#

you can only use that logic if the right hand side is equal to zero *

trail haven
#

nice nice thank you egg

still radish
#

if x(2x+5) = 0 then either x = 0 or 2x + 5 = 0*

#

*it doesn't work if the right hand is 12

trail haven
#

thank you you are lovely

shrewd pendant
#

yeah but he got x = 12

#

12 is not a solution for x(2x+5)=0

#

he/she

#

but I think you should just write what egg said

#

because it's a stupid question

#

focus on solving it

still radish
#

*I actually think it's quite a good question that forces students to actually understand why it works rather than just following the algorithm but that's just me

trail haven
#

i dont like this math subject so fjfsjlkljkdf

fathom flame
#

lol

trail haven
#

the tutorial is too long with so much not needed atuff

fathom flame
trail haven
#

oh

shrewd pendant
#

@still radish wait but can you explain to me how they ended up with 12 then?

still radish
#

it's a wrong answer because they performed an illegal operation*

shrewd pendant
#

there's no illegal operation in the first 2 steps

#

did they just assume cause 12 was alone then x must equal 12?

still radish
#

*the 3rd step is wrong

#

*it does not follow from the 2nd step

trail haven
still radish
#

primero... intenta por ti mismo

trail haven
#

i have stared at this for like 30 minutes and none of it makes sense

#

i cant do word problems. In fact i cant read half the time

still radish
#

soluciona esta

gusty ermine
#

anyone good at physics

fathom flame
#

poor @trail haven no one helped her sad

still radish
#

@fathom flame a quien madruga Dios le ayuda

#

aprenderĂĄ nada si la ayudo

ashen mist
#

Hola

still radish
ashen mist
#

Por qué no?

still radish
#

tienes razĂłn

#

😂

#

es un mundo libre

cursive dew
#

@gusty ermine hola

gusty ermine
#

@cursive dew lol
hola mi amigo

fathom flame
#

@trail haven did u mange to solve it?

trail haven
#

i havent finished it yet

#

i took a shower and made mashed potatoes

still radish
#

jaja @fathom flame puedes ayudarla

median trail
#

Oh fuck I went to a papeleria (a place where you can buy all sorts of stuff regarding markers, paper, tools like pencils or print whatever you want etc) and I forgot to buy paper, because I love to make notes, or make drafts(? before writing smth on my notebooks

still radish
#

me pareces un perfeccionista Edsel!

abstract scaffold
#

stationery shop @median trail

#

donde las cositas como el papel y las plumas se llaman "stationery"

hollow wedge
#

stationery (n.)
1727, from stationery wares (c. 1680) "articles sold by a stationer," from stationer "seller of books and paper"

#

crazy word

#

I always thought it was spelled with an a not an e

abstract scaffold
#

con la "a", es otra palabra @hollow wedge

At t = 0, the object is stationary (i.e. the object is not moving).

median trail
#

@still radish I just don't like to fail ;-;

still radish
#

cuĂĄl es tu promedio de las notas? @median trail

median trail
#

last semester I got 4.8 out of 5

#

but this semester I'm not doing that well sadcat

still radish
#

cĂșal es la nota de aprobar? @median trail

median trail
#

3

still radish
#

bueno

#

bien hecho 👍

hollow wedge
#

yeah I never realized they were different, I knew about the two senses of the word though

#

well they are very related

#

both come from station

median trail
fallow dock
#

hello.

fathom flame
#

i took a shower and made mashed potatoes
@trail haven haveu solved it yet?

trail haven
#

no give me a second im googling smth

fathom flame
trail haven
#

sjhjfjdf

#

its just the tutorial

still radish
#

jaja

#

he perdido mi tiempo explicarla...

#

nunca jamĂĄs

eager wagon
rain ermine
#

Lol

past storm
queen cove
#

Yo?

sweet cape
#

Yep boys, i got this lmao

real imp
#

@median trailwhats max

#

5?

sweet cape
#

Anyone has some tips for using? I’m still beginner

median trail
#

what do you mean

real imp
#

score

median trail
#

yes

real imp
#

nerd

median trail
#

why

real imp
#

xd

#

congrats yo

median trail
#

ah

#

I'm not doing well this semester though. I got 3.4 on my linear algebra class midterm

real imp
#

Dude

#

3.4 is good

#

Last time I took linear algebra I couldn't even get a 2 out of 10

#

And that felt terrible

#

And no, I didn't turn it in blank

#

I did everything

median trail
real imp
#

I got a midterm next thursday

#

I really want to get a high enough score to not have to take the exam

#

But it may not happen

median trail
#

a midterm on what

real imp
#

Pre calc

median trail
#

oh I see

#

I've got like 3 projects this semester ;-;

#

I hate to be this busy

real imp
#

I gotta study database shit for work and I cant be bothered

#

and the awful part about it is that my client's data depends on it

median trail
still radish
#

*fuck it and just store it in plain text wesmart

#

*el huevo ha hablado

gusty ermine
#

como cum astas

fathom flame
#

soy bien

rain ermine
#

Mi alegrar

glass dragon
#

@sweet cape don't give up just because your first haircut sucks! Just keep trying

gusty ermine
glass dragon
#

Lol esas fotos

main hatch
#

How the hell am I supposed to play this chord without growing a sixth finger? XD

eager wagon
#

cĂłmo?

#

me parece que solo necesitas 3..

main hatch
#

Without a capo

mortal dagger
#

asĂ­, hay un dedo que cubre todos los 5

main hatch
#

I understand that it’s a barre chord, but I don’t understand how to hit the fifth fret on the high e string

#

It’s a normal G barre chord otherwise

glass dragon
#

With your pinkie?

#

Your pinky isn't doing anything otherwise

abstract scaffold
#

it seems the pinky is already on the D string.

glass dragon
#

That should be his ring finger

#

His ring finger should Barre the D and the A, with his middle finger on the G

abstract scaffold
#

yeah. i thought so. but i gave up afterwards. cos my poor fingers couldn't handle the steel string guitar too well.

glass dragon
#

I'll try to take a picture

#

I don't know if that perspective was good enough

main hatch
#

You see... people don’t normally fret both the A and D strings with the same finger, because that finger is very liable to mute the G string by accident

#

That’s what throws me off XD

glass dragon
#

Yeah I don't know why you wouldn't play it as an open cord

main hatch
#

In the song I found it in, I think it’s for consistency. The G barre is apparently played a lot, with an occasional variation that adds that high e 5th fret note, making it the Gadd9

glass dragon
#

Oh yeah I see

main hatch
#

Here’s the explanation.

I think the guitar in the song plays a normal G, but this way you can play the 5 on the e string to mimic the synth/keys sound; so only play that note when it’s normally played, don’t just strum it throughout.

#

Also, as an aside... the text formatting on the GuitarTabs mobile app is horrendous

glass dragon
#

@storm lodge you can post it here

glass dragon
#

@old shell why can't in ping you like a normal person

#

Anyway, it turns out that big spike in cases is because a state prison tested all their inmates

old shell
#

ping me?

#

oh the tennessee viruses?

sweet cape
#

@glass dragon oh jesus, i really appreciate that, i was just doing some haircuts but i choose like fade but that was good but i spent a lot of time haha, that was pretty decent in my first haircut

#

It isn’t final product

#

That’s what i get

rose egret
bold gull
#

Hey man, spamming isn't good :(

molten jacinth
#

;iamnot <Cats>

merry riverBOT
#

etta#8714 No role found

molten jacinth
#

uh

#

;iamnot <Tabletop>

merry riverBOT
#

etta#8714 No role found

vestal pine
#

https://www.youtube.com/channel/UCMdFFm-TYf5N2gEUXGB_guQ/ sub to my new channel plez it will mean a lot there's no content yet but will be uploading very soon
@rose egret nice one I’ll be sure to check it out x

#

@molten jacinth do it without the <> lol

molten jacinth
#

ohh lol

#

thank you 🙂

vestal pine
#

np

#

btw do it in bot

molten jacinth
#

;iamnot Cats

merry riverBOT
#

etta#8714 You no longer have the Cats role.

vestal pine
#

if ya gonna do it anywhere

molten jacinth
#

oh

#

oops

vestal pine
#

or not KEKWlaugh monkaW leeksapito

molten jacinth
#

sorry I didnt ntoice that

vestal pine
#

it’s okay

molten jacinth
#

I didn;'t see your message until after sorry

#

moving htere now heeh

vestal pine
#

just next time do it there lool

molten jacinth
#

wow I can't type

#

yes

vestal pine
#

are you new here?

molten jacinth
#

more or less, I joined a long time ago but am just now kind of getting back into it

glass dragon
#

@sweet cape hey that's really not bad for a first haircut! Looks great!

#

@still radish lol wtf did you even Google

still radish
#

@glass dragon no conoces a el artiste? por lo general eres muy conocedible aunque es algo europeo

#

magnĂ­ficio!

#

el mundo es un huevo

#

voy a comprar esta casa

#

alĂł?

glass dragon
#

No

still radish
#

el bigote lo revela xd

glass dragon
#

Ah, i thought it was some dude imitating his style

#

I've never seen the egg versions of his paintings

still radish
#

*maybe a 1st draft

gusty ermine
#

¿Sabéis alguna pågina que sea, mås o menos buena, que mida tu nivel (a2-c2) de inglés?wolfsneaky

ashen mist
#

Como una prueba online? @gusty ermine

gusty ermine
#

SĂ­, algo asĂ­

ashen mist
#

Lo que no me gusta de tales recursos es que no se puede medir tu nivel de hablar en una conversaciĂłn espontĂĄnea

#

O sea, pueden medir tu nivel de vocabulario y gramĂĄtica y comprensiĂłn en cuanto al leer y escuchar, pero no te pueden ofrecer una conversaciĂłn viva con un hablante nativo

#

Así que si realmente querés medir tu nivel, por ejemplo para una aplicación de trabajo o docencia o algo así, usualmente te conviene un examen oficial o formal que te pruebe todos esos aspectos del idioma

#

Que una prueba random en algĂșn sitio web te diga "sos b2" no significa que realmente tenĂ©s ese nivel

#

Esas cosas de a1-c2 son un estĂĄndar, lo cual significa que hay que usar recursos que calculan esos niveles correctamente

gusty ermine
#

Aaah vale okeyy

glass dragon
past storm
#

escribe bien el verapeepoez

gusty ermine
median trail
rapid swan
sweet cape
#

Es de romeo santos la canciĂłn

#

Heroe favorito - Romeo santos

#

||Estoy planeando un secuestro
Para robarme tu amor
Mis estrategias no marchan
Y crece la imaginaciĂłn
Vivo en un mundo ficticio
Con un solo compromiso
Conquistarte y darte toda mi atenciĂłn
Pero tus padres te entregan a otro hombre
Que apenas tĂș conoces
Y yo aquĂ­ sin soluciĂłn
Yo quisiera ser el Hulk y te protejo
Superman para exhibirte el universo
Si fuese Batman, no habrĂ­a noches de temor
La Baticueva, nuestro nidito de amor
Si yo fuera El Hombre Araña por un beso
Cien pies de altura escalo sin esfuerzo a tu balcĂłn
Y si alguien te pregunta por tu héroe favorito
Dile que soy yo
Veo un planeta en mis sueños
AhĂ­ nos vamos a amar
Con mi espada te rescato
De nada cuesta soñar
Yo hiciera lo imposible
Siendo El Hombre Invisible
Y te rapto tan ligero como Flash
Pero solo son escenas, historietas que no pegan
No hay poderes, yo no tengo agilidad
Yo quisiera ser el Hulk y te protejo
Superman para exhibirte el universo
Si fuese Batman, no habrĂ­a noches de temor
La Baticueva, nuestro nidito de amor
Si yo fuera El Hombre Araña por un beso
Cien pies de altura escalo sin esfuerzo a tu balcĂłn
Y si alguien te pregunta por tu héroe favorito
Dile que soy yo
(That's the golden touch right there
The king is back
I wanna be your super hero
Your paladin of love
You've got that baby?)
Yo quisiera ser el Hulk y te protejo
Superman para exhibirte el universo
Si fuese Batman, no habrĂ­a noches de temor
La Baticueva, nuestro nidito de amor
Si yo fuera El Hombre Araña por tus besos
Cien pies de altura escalo sin esfuerzo a tu balcĂłn
Y si alguien te pregunta, sĂșper hĂ©roe favorito
Pues dile que soy yo, pues dile que soy yo||

#

Translate

#

|| I'm planning a kidnapping
To steal your love to me
My strategies aren't working
and the imagination grows

I live in a fictional world
With only one commitment

To win you over and give you all my attention
But your parents give you
Another guy that you hardly even know
And I'm here without solution

I would love to be the hulk and protect you
Superman to you off to the universe
If I were Batman I wouldn't have nights of fear
The batcave our little love nest

If I was Spiderman for a kiss
I climb to your balcony one hundred feet up without effort
and if anyone ask you your favorite hero
Tell them that it's me

I see a planet in my dreams
There we're going to love each other
With my back I rescue you
Dreaming doesn't cost a thing

I would love to do the impossible, being The Invisible Man

I steal you as smooth as The Flash
But these are only scenes, comics that doesn't stick
There are no powers, I don't have agility

I would love to be the hulk and protect you
Superman to you off to the universe
If I were Batman I wouldn't have nights of fear
The batcave our little love nest

If I was Spiderman for a kiss
I climb to your balcony one hundred feet up without effort
and if anyone ask you your favorite hero
Tell them that it's me

The King is back

I would love to be the hulk and protect you
Superman to you off to the universe
If I were Batman I wouldn't have nights of fear
The batcave our little love nest

If I was Spiderman for your kisses
I climb to your balcony one hundred feet up without effort
and if anyone ask you your favorite superhero
Well, tell them that it's me, well, tell them that it's me

https://lyricstranslate.com/en/héroe-favorito-favorite-superhero.html#songtranslation ||

#

@rapid swan

rapid swan
#

Aye thank you!

sweet cape
#

Que buena bachata pa azotar baldosa

#

Lmao

#

What kind of homework you have?

#

Lmao, what a tip

gusty ermine
#

Who needs knowledge whatever

sweet cape
gusty ermine
sweet cape
#

Que piensan de ese un youtuber que dice que no hay que estudiar las reglas gramaticales para aprender inglés y que en 3 meses ya vas a aprender a hablarlo?

fallow dock
#

yo no me sĂ© las reglas gramaticales de ningĂșn idioma thonk lo de los 3 meses suena para vender

junior thicket
median trail
#

well

#

the sum of all the forces applying on a body is equal to cero if I'm not mistaken

#

also f = m*a

#

and a diagram where you represent all the forces using x and y coordinates

#

I think for the first one you'll get something like

50N - m*a = 0

grizzled hedge
#

Yeah you have all the values except a, so you can just solve for a

#

In the system

junior thicket
#

I was thinking something like that yes
ok

grizzled hedge
#

Oh but you have to solve for force?

median trail
#

yeah

#

she just needs the acceleration

grizzled hedge
#

Ah yeah

junior thicket
#

wolfsneaky not to sound dumb but how do I get the acceleration

#

why cant there be time here angerycry

grizzled hedge
#

Oooooh

#

F as in friction?

sweet cape
#

Fuerza

junior thicket
#

oh
I just thought of it as a random opposing force
(maybe I could use the friction force formula?)

sweet cape
#

^

#

No sé si es un truco

#

Pero las opciones que tienen la unidad de medida parecen las correctas

#

If it isn’t, just nevermind

eager wagon
grizzled hedge
#

“Cyclists: it is of my own volition and desire to explain the current circumstance in which you find yourself. You are riding at a given velocity which may result in an impending collision with this pole.”

#

Haha dang love it

junior thicket
#

Oh, por cierto, resolvĂ­ los problemas
gracias @median trail @grizzled hedge @sweet cape wolfLove

abstract scaffold
#

lol. i forgot how to do projectile motion

grizzled hedge
#

You could summarize phys 1 as: “hey here’s kinematics eqs,” “sum up forces in x and y directions, set =ma” “centripetal motion is cool,” “energy relationships?!,” “fdcos and work,” “torque is a thing that exists 😯r X f”

#

Ns laws

abstract scaffold
#

i had to derive the formulae via integration because "i'm a mathematician"

grizzled hedge
#

Oh right

#

Yeah - I remember I was in calc 1 and they were deriving stuff with integration in physics and I was like 😯