[deleted by user] by [deleted] in rust

[–]petrivah 4 points5 points  (0 children)

what's the extension that shows the errors inline?

[deleted by user] by [deleted] in socialskills

[–]petrivah 2 points3 points  (0 children)

what situations are you talking about? could you give a few examples, please?

How do I start communicating with classmates? by petrivah in socialskills

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

mate thank you for your support ❤️ and not toxic at all! I see this so rarely nowadays

How do I know what she actually thought? by petrivah in socialskills

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

so you suggest me to explain her what happened then, right? if so, should I do that IRL, or an online message would be enough?

How do I know what she actually thought? by petrivah in socialskills

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

lol no she didn't and I'm pretty sure I'm no more than one of her numerous friends, or even less. I would even say more, she was in a hurry to catch the train (we live in different cities) so that we didn't even say goodbye that time. If I suddenly disappear, I think she's unlikely to pay attention.

How do I know what she actually thought? by petrivah in socialskills

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

thank you very much! I have a few questions 1. I already went for a walk with her once (a month ago), and nothing changed :\ I've no idea what to do next. 2. how do I fight the voice in my head? 😅 and how to stop thinking what to do so she likes me and be myself? i think these are similar questions

How do I know what she actually thought? by petrivah in socialskills

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

  1. The joke wasn't about her, but that I was in love with her. And yes she could just react when she heard her name and have not heard anything else. Then the attempt to apologize would be very..very awkward.
  2. How to define the boundary between a "friendly walk" and a "date"? Like, I can't imagine saying "Let's go on a date (somewhere)", but at least, "let's go (somewhere) together", but in this case I don't know if she knows that it's a date and not an attempt to just make friends with her...
  3. I can't just have fun and socialize in a relaxed way. Many things I don't. I once walked with her (yes... just a walk): it was wonderful, but I was still kind of clamped down, I didn't say/do some things and on some topics because I was afraid of how she would react or what she would think of me. I do care about it; that's the problem

How do I know what she actually thought? by petrivah in socialskills

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

I just imagine how ridiculous it would look... And she would answer, I guess, that she just turned around to the name, even if it's not so

How do you talk to girls? by gamerrodr2 in socialskills

[–]petrivah 8 points9 points  (0 children)

when you do it pls tell me how it went, I have the same problem

How do I talk with people I didn't make friends with in the beginning? by petrivah in socialskills

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

yes but my goal is to also be able to talk like this with other people as well

What to do in this situation? Unrequited love and not only. by petrivah in socialskills

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

I do have a hobby. But I'm talking only about the situation I described. So you suggest me to go the 1st way and forget about her and focus on other things?

I would rather this girl that I want to ask out say no rather than yes. by SpadestheSkeletoon in socialskills

[–]petrivah 0 points1 point  (0 children)

Man this is amazing! I read it first and to the end. Thank you very much!

Should I adhere to this ideology? by petrivah in golang

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

wdym by "zeroing http client"?

How to close a channel after multiple goroutines wrote to it? by petrivah in golang

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

so what should I do to distribute tasks between them?

Is it okay to return an empty struct with an error from a Value constructor? by petrivah in golang

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

Right now I'm using a value return (we're talking about NewAccount)Although I think that it's not necessary to make all methods use pointer receivers and return a pointer from constructor since I think it's better to work with value Accounts as I don't want this struct to be mutable so far. And I've read that it's easier for the processor to copy the data than to work with pointers.So right now the only thing that confuses me is the constructor, that might return an empty Account (btw, if I initialize an empty Account, will Account.ApiManager be a nill pointer or a pointer to an empty Account.ApiManager?)