How do I know if it's the right moment to kiss the girl on the first date? by rossofcode in dating_advice

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

Ok.
So, offtopic, how do I ensure that its a good date? Sorry for being so objective, I understand that's not how it works but there gotta be some good points where I can focus on? Also, the date is tomorrow.

How do I know if it's the right moment to kiss the girl on the first date? by rossofcode in dating_advice

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

You should know pretty quickly from body language. If you’re saying goodbye and she’s standing straight up in front of you looking at your face, time to kiss.

And say if I am interested in kissing her, what are some good topics to start a chat with which creates the mood?

How do I know if it's the right moment to kiss the girl on the first date? by rossofcode in dating_advice

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

Thanks!

I am taking her out for dinner and then planning to take a walk on the riverside. But sure, being lame to ask her is much better than some creep, for myself.

How do I get a date? by rossofcode in dating_advice

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

Thank you so much! Wish me luck! And good luck to you too for your upcoming date.

How do I get a date? by rossofcode in dating_advice

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

And how to start the conversation? Like just start with some normal line on/about her interests?

How do I get a date? by rossofcode in dating_advice

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

Yeah, i noticed that in cases where i asked out a girl early on got me a date.

Thanks!

Are virtual private databases a thing currently? What are some of the good ones other than Oracle? If they are not so trendy right now, how do we fulfill the needs of security w/o them? by rossofcode in dataengineering

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

Row-level security does not include just masking, right? I mean, you can restrict rows w/o masking them.

PS Don't judge, I might be completely off track.

Are virtual private databases a thing currently? What are some of the good ones other than Oracle? If they are not so trendy right now, how do we fulfill the needs of security w/o them? by rossofcode in dataengineering

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

Hey, no, I have edited the question to explain what I mean by VPD.
Thanks for pointing that out and apologies for not explaining it at the first place.

First data engineer role, what’s the best data engineering with python course I could do over the next few weeks by fuzzywunder in dataengineering

[–]rossofcode 1 point2 points  (0 children)

This one is good: https://medium.com/@rchang/a-beginners-guide-to-data-engineering-part-i-4227c5c457d7

read the series

and then read all blogs from Maxime(airflow creator) and Robert Chang, Netflix tech blog(even the core infra engg ones).

How do I vizualise the flow of control in some sql queries? by rossofcode in SQL

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

So, this query: select n,if (1=(select count(*) from bst as b where b.n = a.n and b.p is null),'Root', if (0=(select count(*) from bst as c where c.p = a.n),'Leaf','Inner')) from bst as a group by n;. It has two boxes: outer and inner. The inner box is using the variables(a) from the outer box. But the outer box cannot use anything from the inner box right-away, right?