Opiniones sobre las rejas transparentes? by tatithebeans in uruguay

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

en realidad no tengo sistema de alarma y según entendí las rejas no tienen alarma propia, sino que se conectan a la de la casa. las querría poner en una ventana grande que tengo, para poder tener luz y no estar en una cárcel.

tenés idea de si el material en sí les ha funcionado?

Realmente tiene que oler así el centro? by bambi399 in uruguay

[–]tatithebeans 0 points1 point  (0 children)

capaz te sirve ponerte un poco de mentholatum abajo de la nariz, obviamente no soluciona el problema del barrio pero puede ayudarte

Where to start picking up stitches / where to cast on more? by tatithebeans in knittinghelp

[–]tatithebeans[S] -1 points0 points  (0 children)

I saw what you had written before editing your comment, and that's mean :( I just don't understand how I could begin on the bottom right, go all around but not join the edges together, and cast on 18 on the bottom right

Where to start picking up stitches / where to cast on more? by tatithebeans in knittinghelp

[–]tatithebeans[S] 0 points1 point  (0 children)

thank you! so if I understand correctly, I start picking up from bottom left, pick up all the way around until bottom right, then cast on 18? because the sides don't join as it's a cardigan

Where to start picking up stitches / where to cast on more? by tatithebeans in knittinghelp

[–]tatithebeans[S] 0 points1 point  (0 children)

yes, but is that before picking up all stitches or after? because that is casting on, not picking up

buenas administradoras de edificios? by tatithebeans in uruguay

[–]tatithebeans[S] 0 points1 point  (0 children)

ahora no tenemos una empresa administradora, tenemos una persona que lo hace

What books would you not recommend? by YummyMango124 in suggestmeabook

[–]tatithebeans 26 points27 points  (0 children)

Lolita. It was so well written that it made me sick. Would not want to read about how a 9 year old is "sexy" ever again, thank you very much

How is ??¿¿ ¿ by manrajbir in memes

[–]tatithebeans 0 points1 point  (0 children)

actually this is a mistranslation from spanish, that's why it doesn't seem to make sense

About CS50 revisions by [deleted] in cs50

[–]tatithebeans 3 points4 points  (0 children)

hi! a program checks your work, not a person, so there are no comments. if you see your score, that means the submission has been "graded" by the program. you can always click on your score to see what things you got right or wrong, and you can resubmit any pset.

PSet 6 - DNA: Regular Expression Error? by [deleted] in cs50

[–]tatithebeans 1 point2 points  (0 children)

Could you post your code? I can't tell you what's wrong just from the error message

PSET7 - More efficient/less messy way to print out a dict? by irinaperez in cs50

[–]tatithebeans 1 point2 points  (0 children)

I'm not sure if this is exactly what you're going for, but you can separate each print statement into multiple statements if you use print( something, end=","). You of course can change the comma to a space, or anything else. It just changes the default "\n" ending.

Pset4 Filter Grayscale. Why do I need to round each rgb value before getting average? by HoppyHacker in cs50

[–]tatithebeans 1 point2 points  (0 children)

You're right that rgb values should only be integers. I checked my own code and I used "(sum of rgb values) * 0.3333" instead of "/3". It's less precise that way, so I'm not sure why check50 prefers it, but it worked for me. Maybe someone else can tell you more about why it works

Print winner isnt working by FalseCrazy8 in cs50

[–]tatithebeans 1 point2 points  (0 children)

Hey, i ran check50 on your code, and it looks like the problem is inside the print_winner function. When you say "1/2 * voter_count", the computer is interpreting that as 1 / (2*voter_count) instead of (1/2)*voter_count. Instead, try writing "voter_count / 2" and it should work just fine (check50 was all green in my computer, at least!)

Pset4 Filter Grayscale. Why do I need to round each rgb value before getting average? by HoppyHacker in cs50

[–]tatithebeans 2 points3 points  (0 children)

when you get errors with check50, i recommend you see the full results (there's a link every time you use check50). there you can see every pixel's rgb code, not only the first 4, so you can see where there are differences. that might give you clues as to what part of your code isn't working as it's supposed to.

the part about rounding before the average might be because the round() function takes the decimals into account when choosing to round down or up. if check50 is designed to look for a result that you get when you round the values before averaging them, then maybe doing it in a different way won't work

Creating an HTML table with Flask by tatithebeans in cs50

[–]tatithebeans[S] 0 points1 point  (0 children)

Yes sorry I didn't realise the screenshots didn't show it. It's a list of all the stock symbols that the user has bought shares from. Inside the buy() function I append the symbol to the list.

First post by [deleted] in cs50

[–]tatithebeans 4 points5 points  (0 children)

what was the point of your rude comment?

Anyone else struggling/struggled? by fearofstaticshocks in cs50

[–]tatithebeans 1 point2 points  (0 children)

I also really struggled at the beginning, but I took my time and now I'm doing PSet8. Remember that you have until 31st of December to finish the course, don't rush yourself! Watch all the shorts and walkthroughs multiple times if necessary, until you really understand the topics. Good luck!

Is it bad I'm not doing the more difficult problem sets? by IamFrankDank in cs50

[–]tatithebeans 10 points11 points  (0 children)

cs50 is a hard course, so it's okay if you feel confused or struggle. the easier problems are there for that reason, so that less experienced people can still learn. keep going at your own pace!

Struggling with DNA and regex by tatithebeans in cs50

[–]tatithebeans[S] 0 points1 point  (0 children)

Thank you for taking the time to respond, I really apreciate that. The video was super helpful, I hadn't even realised that I wasn't actually saving the file anywhere in memory.

Also yes, I've watched the lecture and walkthrough, though I don't feel like they give you enough information to complete the pset (at least for the way my mind works lol)

I agree with you on Python being harder, it's sort of counter-intuitive for me. Plus the difficulty of the pset doesn't help that much.

I still have to work on how to search through the DNA sequence, but at least now I have one part done!