aaaa12345
I am Sindhi by birth and have remained teacher of Sindhi language more than 20 years. I have tried means Moon jaakhorryo aahay.but I can not see means Pr Maan n tho/thi desi saghaan.
tho ending is used by male and female "tho" after verb.Myself means Paann or Khud. With any one else means Bay kanhen saan.
The meaning of whole sentence is : Maan paan khay byan men golhann ji jaakhorr kae aahay pr pann khay bay handh pasi n saghyo/saghi aahyaan. (Idiomatic translation in Sindhi0.
· Suggested Reading
What is the old phone called?
A manual telephone. Calls had to be connected by a telephone operator working in a telephone exchange. By the 1920s, dial telephones began to appear on the scene in cities.
During the period from 1920 to 1960, dial and manual service coexisted in many places. By the 1970s, the last of the manual telephone switchboards were replaced by automated systems. The 1970s also marked the takeoff of electronic switching, which by the 1990s had replaced electromechanical switching systems.
Thomas Cosenza, thanks for asking. Is this what you had in mind when you said old phone?.
------
How do I start a conversation with a girl after saying "hi"? What should be the next question to ask or how do I not bore a girl in the conversation?
Frankly speaking,if a random guy says hi to me.
I will totally judge him for that(that was a joke).If you know the girl from your college or office talk to her about the random stuff about the place or anything just get comfortable and make her too,dont be nervous. See,trust me looks are secondary its all about the confidence and the way those words come out of your mouth,a little smile(not a pyschotic grin) and humor is well appreciated be it anywhere.
Dont try too hard just be comfortable and go with the flow
------
How are people who believe God exists, and people who believe God doesn't exist, so sure of their beliefs?
Theres no need to feel sure. Absolute certainty about anything is impossible.
However one can form a balance of probabilities. If the argument on one side is utterly improbable, and the the argument on the other side seems more likely, then naturally one should lean toward the side that seems likely unless evidence emerges that changes this. One can sit on the fence, but logically we can sit on the fence about whether werewolves exist if we demand absolute surety before we accept or dismiss the claim that they do
------
Is it worth doing cybersecurity degree?
For starters a degree in cyber security will help you in showcasing you knowledge and expertise in the domain. This can also help you in getting a break in the domain as a candidate with degree will gives more confidence to the employer.As of today Cyber Security is in huge demand and there is shortage of skilled people.
.degree will give you good baseline in terms of building your understanding and then later on by working you will get more knowledge in the domain.If you are already experienced IT professional then I will recommend for certifications in Cyber Security rather than degree
------
What is it like to marry an Albanian man as a foreigner?
"He had these swarthy looks, and muscled build . I knew he was trouble from the moment I set eyes on him"Albanian men are physically very attractive and handsome, something about the genes I suppose, apart from that most Albanian girls would hate for anyone to take a Albanian man away from their home, their women are very possessive.Interesting I have also heard that the average Albanian male is prone to lying and cheating.
Stay Away from the Albanian male would be my advice."A man is a man is a man, till I met him."
------
What are Serbian men like?
Generally in my experience with Serbian men they are very old fashioned. Meaning that want a woman who is going to take care of the house while they work, however if you are an independent woman, which they love as well, they still tend to expect you to take care of the housework. Allot of Serbian men in my experience also LOVE to cook however they are not so keen on the cleaning up end of things.
Most are very confident tall men who can be vain. Even with these attributes you must remember that everyone is different
------
Is it fine for a boy to wear his momu2019s thongs or panties?
Probably not, but a lot of us did.
If you are talking about wearing them full time it will be more difficult to wear them without her knowing. The first panties I ever wore were my mothers.When I was 1112 I found a pair of her underpants on the bathroom floor and I was hooked.
I only wore them for a few minutes at a time, as long as it took to masturbate. And while Im sure she probably knew, I tried to be as careful as possible. I spent many happy hours wearing her panties.
------
Would it be inappropriate to spend Thanksgiving with my boyfriend of 3 years instead of my family?
More information is needed to answer this question effectively. I would ask why not spend the holiday with both families?
You don't have to "pig" out in each home. The holiday is meant to bring families closer not to separate us. When you create your own family then you will also create your own traditions.
Why not suggest a combined gathering of the 2 families? If your boyfriend is where your heart is and you have his heart then, after 3 years, it might be a great opportunity to start uniting your families
------
How do I print "Hello World" in Java without using the main method?
There is no actual use of a program without main method in the real world.
To get your thing done you can print the element in a static block of the program as follows:public class Test static System.out.print(Hello World); System.
exit(1); // abnormal exit Abnormal exit will prevent the JVM to check for main method in the class.Edit: The above program will print Hello World to the console and it depends on the IDE being used. Below is the screenshot for reference.
Inspite of having the System.exit the compiler was searching for main method.
------
Is it OK to not greet my neighbors and instead stay to myself?
I won't bother them, I just want privacy.
In many of the metro cities life is like this only however I will still say you should not do this.I am not against maintaining personal life but not at the cost of ignoring your neighbors completelyMake a little connect with them, simply saying hi, will not harm.
Just make sure you are not exchanging dinner or lunch invitations if you really want to make your life a bit more personalJust reminding you, new testament, second commandment says, love your neighbors the way you do to yourselfAmenHope this helps.
------
How many times the u2018Hellou2019 will be printed in the below C code? #include h> int main() int k 0; for (; k) printf ("Hello"); if (k%100) break; Only once. Provided that you fix that tiny error in the for loop bracket - for(; ; k)Here's why:% is the modulo operator which gets the remainder after the division.In the very first iteration, the program will print Hello and then move to the next line. Now, the if statement checks whether k % 10 0Here, in the first iteration, k is 0. And 0 divided by any non zero number is 0. So, there is no remainder. Therefore, the if condition is satisfied and the break statement breaks the loop and ends the program.Happy Learning! ------ How do I say grandfather in Russian? or .My father in law used to say, that he likes being called rather than . There is a reason for that. While ( as well as ) sounds a bit ugly, that is the name of a position in a family or society, irrelative to the persons physical and other abilities, while ( as well as ) sounds much softer but rather refers to the persons age.You can compare the words and here to see what it is about. For example, here are photos of two persons in the age of grandpas, they both are about 50 years old ------ What exactly do you do in Hell? Hell is actually more fun than heaven.In heaven, youve got to learn to play the harp; and your wings get in the way.In hell, you can use Gods name in vain; and you cant get any more punishment than youve already experience in that lake of fire and brimstone. In heaven, youve got to love each other and stay calm.
In hell, you get to continue to hate harps and wings; and you get to blow things up, which makes hell even hotter ------ Why does const char* not need a pointer to a memory address? Both of the answers are correct, but I would like to add something. You can declare a const char * with out assigning it to an address. You can also reassign it to as many addresses as you want. The only requirement is that the block it points to is not modified. const char * str;str "Read only string"; // legalstr "Different read only string"; // legal*str 'a'; // illegal, we cannot modify the value in the blockIt matters where you put the const qualifier. So const char * is not the same as char * const.
Reference: Const Qualifiers. ------ What will be the output of the following program, u201c#include First point - void main() is not valid, it must be int main()Second: a good compiler will warn you about the unused variable x.
Why is this line present?Third: the if statement has no body, so it has no effect. Why is it there?
Thus the printf will always execute and the program will output hello , without any newline. If you fix the declaration of main to be int main(), you must either end the program with a return some integer result code; or #include stdlib.h and end the program with exit(integer result code);
------
How do you deal with neighbors who are obviously ignoring you?
There is nothing to be dealt with. Your neighbors are people who live near you. They arent obligated to talk to you or be your friend.
Just leave them alone. Dont try to cram friendship down someones throat. If they ignore you dont let that upset you.
Its not a big deal. Sometimes people live near someone and have no relationship at all, while others become friends with their neighbors. Those are both normal behaviors.
You absolutely should not attempt to deal with your neighbors.
------
Are Chinese people racist against Indians?
From what I hear many of them are because Indians and other South Asians as a whole have reputations through the media and industry of being in poverty and very poor conditions but this view also extends to South East Asians, Central Asians, Eskimos, Amerindians, Polynesians, Micronesians, Melanesians, Austronesians, North Africans, Sub Saharan Africans, Middle Easterners excluding Israelis, Caucasus peoples, East Europeans, And Central Europeans and sometimes Southern Europeans too.
Heck they discriminate against groups that have good reputations over all like other East Asians such as Koreans both South and North, Japanese, Taiwanese, and so on not all but many do
------
How do you say "Sister" in Hungarian?
The Hungarian language doesnt really gender specify, meaning for words such as he/she or sister/brother its rather just the title of the person.We would say sibling to refer to a sister or brother, so that is testvr.
If we want to get technical though, the actual word to specify to a person further whether its a girl sibling or boy sibling would be lny testvr which word for word means girl sibling. Theres also older sister, which is nvr, or little sister, which is hg
------
How do I end a long text conversation with a girl I like?
well if u like her and want to ask her out the first thing u wanna do is make sure to never let her understand u.
So basically abruptly end the conversation by not replying to one of her last text and donu2019t text back on your own. Wait fr her to text again , if she does she likes u but maybe as a friend too , so keep on making her confused and when she is , she will try to understand u out of curiosity and thatu2019s how u make a girl fall fr you.