Pages

Sunday, 30 December 2012

How to Respond to Conversation Starters like "How are you?", "What's up?"

There are a few questions that English speakers ask at the beginning of a conversation. These questions are simple tools to find out if there are any interesting topics to discuss.

You've certainly heard these questions, but you might be confused about how to answer. Here's a list of common answers to the questions "How are you?", "How's it going?", "What's up?", and "What's happening?"

  • How are you?

Fine.

This is a simple, straight answer. If you don't say anything else, though, it might be a signal that you don't want to continue the conversation.

Not bad.

This is a more friendly-sounding answer than "fine".

Fine, thanks.

This answer is formal. You might answer this way if someone you don't know, like a waiter at a restaurant, asks how you are.

Very well, thanks.

A person who likes to be grammatically proper might answer this way. Technically, the question "How...?" should be answered with an adverb. However, a lot of English speakers don't know or care about this. The people who do are "by the books" types who insist on using grammatically correct language.

Pretty good.

If you don't care as much about grammar, you can answer "Good" or "Pretty good". It's more common and much, much more casual.

Great! How are you doing?

This is an enthusiastic, excited response. It's always good to ask a question back to the other person if you want to continue the conversation.

I'm hanging in there.

This answer makes it sound like you're having a tough day.

I've been better.

People usually give positive answers to the question "How are you?" If you give a negative answer like this one, it usually means that you want to tell the listener your sad story. So they'll usually ask what's wrong:

A: How are you?
B: I've been better.
A: What's wrong?
B: I just found out that I'm being laid off.

  • How's it going?

This question is similar to "How are you". The answers discussed above all work for "How's it going?"as well.

Here's another answer that will also work for "How's it going", but not for "How are you?"

It's going well. 

This is a friendly, polite answer that's suitable for coworkers, clients, and acquaintances that you haven't seen in a while. 

  • What's up?

This question means "What's happening in your life?" But you don't have to answer honestly. If you don't want to start a long conversation, you can use one of these standard replies:

Nothing much.

This is the most common answer. You can follow it by sharing something interesting that's happening: "Nothing much. Just getting ready for Vanessa's graduation."

Not a lot.

This is another really common answer. It's just a bit fresher than "Nothing much" because it's a little less common.

Nothing.

This is more to-the-point. It might make you seem a little angry or rude.

Oh, just the usual.

Answer this way if you do mostly the same things each day.

Just the same old same old.

This phrase means that you're doing the same things every day, and you're a little bored of it.

Oh gosh, all kinds of stuff!

You can answer this way if your life has been really busy and exciting lately.

  • What's happening?

This question means the same thing as "What's up" and can be answered in the same way.

Resource: http://www.phrasemix.com/collections/how-to-respond-to-how-are-you-whats-up-and-other-conversatio

Saturday, 16 June 2012

Four Dealings with the Number in NetLogo: "round","precision", "ceiling", "floor" in NetLogo


  • round

round number
Reports the integer nearest to number.
If the decimal portion of number is exactly .5, the number is rounded in the positive direction.
show round 4.2
=> 4
show round 4.5
=> 5
show round -4.5
=> -4


  • precision

precision number places

Reports number rounded to places decimal places.
If places is negative, the rounding takes place to the left of the decimal point.
show precision 1.23456789 3
=> 1.235
show precision 3834 -3
=> 4000
  
  • ceiling

ceiling number

Reports the smallest integer greater than or equal to number.
show ceiling 4.5
=> 5
show ceiling -4.5
=> -4
  
  • floor

floor number

Reports the largest integer less than or equal to number.
show floor 4.5
=> 4
show floor -4.5
=> -5

Tuesday, 22 May 2012

Email Apologies for Late Reply

  • Apologies for the delay in replying to you.
  • My sincere apologies for delay in replying to you.
  • My sincerest apologies for the delayed response.
  • Sorry for my late reply.
  • Sorry for not replying sooner.
  • Sorry for the delay in replying your letter.
  • Sorry for the long silence.
  • Sorry for being late in answering you.
  • Please excuse my tardy reply to your letter.
  • Please forgive me for taking so long to reply.

Sunday, 6 May 2012

Are You Right or Left Brained?


Right Brain vs Left Brain test do you see the dancer turning clockwise or anti-clockwise?
If clockwise, you are a right brained, vice versa.

Pool Made by African Kids


From a QQ Group.

Saturday, 5 May 2012

5 Ways to Focus On What Really Matters


1. Set 3 Most Important Tasks (MITs) for the day. Often the best way to find out what the most important tasks are is to narrow down your three most important items for the day. Ask yourself: “If I could only do three things today, what would I feel the most fulfilled in doing?”
2. Focus on providing value. One of the easiest ways for me to discover whether I’m working on important or urgent items is asking myself how much value it will provide myself or others. I know going to the gym, writing articles and spending quality time with my wife will have a more long term impact than sorting files, checking my site stats every 30 minutes and playing Tetris. Ask yourself: “How much value will this provide me, or someone else?”
3. Think long-term. Another great way to find out how important the work you’re doing is, is to focus on how long-term of an impact it will have. Clearing out my inbox will have a much shorter impact than writing an article that people will be able to read for years to come. Going to the gym and eating a healthy breakfast will have a much greater impact than the short term rush of drinking a grande soy latte. Ask yourself: “Will this make a difference a week, month or year from now? Five years?”
4. First things first. I find the best way for me to complete my MITs is to start on them right away in the morning. When I spend my time working on non-important but urgent items I end up getting caught up in trying to put out the next fire. Also, when I try to work on my important tasks later in the day, there’s usually more distractions and more interruptions. Finishing my most important tasks in the beginning of the day ensures that if the afternoon comes and I get bombarded with busy-work, I can still finish the day feeling that I accomplished what I wanted to.
5. Have a clear vision. This goes along with setting your most important tasks, but here we’re thinking about our long-term vision. If you can’t measure it, you can’t manage it. Creating a vision is about seeing objectively where you’d like to be in the next 5, 10 or 20 years. It also can include what accomplishing those objectives will feel like, what it will look like, sound, smell and taste like. When we have a clear vision of what we want the future to look like, it’s a lot easier to stay on task and not get caught up in answering the next email or voicemail. Think about whether or not the work you’re doing is moving you closer to your vision, or if it won’t make much of a difference tomorrow or next week.

Tuesday, 17 April 2012

Dot (.) vs Arrow (->) to Access Data Fields in C++



Normally you can access data members and functions by using the dot (.) operator for Cat objects created locally. To access the Cat object on the free store, you must dereference the pointer and call the dot operator on the object pointed to by the pointer. Therefore, to access the GetAge member function, you would write

(*pRags).GetAge();

Parentheses are used to assure that pRags is dereferenced before GetAge() is accessed.
ons
Because this is cumbersome, C++ provides a shorthand operator for indirect access: the points-tooperator (->), which is created by typing the dash (-) immediately followed by the greater-than symbol (>). C++ treats this as a single symbol. Listing 8.6 demonstrates accessing member variables and functions of objects created on the free store.

Accessing member data of objects on the free store.

1:     // 
2:     // Accessing data members of objects on the heap
3:
4:      #include <iostream.h>
5:
6:      class SimpleCat
7:      {
8:      public:
9:             SimpleCat() {itsAge = 2; }
10:             ~SimpleCat() {}
11:             int GetAge() const { return itsAge; }
12:             void SetAge(int age) { itsAge = age; }
13:     private:
14:             int itsAge;
15:        };
16:
17:        int main()
18:        {
19:               SimpleCat * Frisky = new SimpleCat;
20:               cout << "Frisky is " << Frisky->GetAge() << " years old\n";
21:               Frisky->SetAge(5);
22:               cout << "Frisky is " << Frisky->GetAge() << " years old\n";
23:               delete Frisky;
24:       return 0; 
25:    }

Output:
Frisky is 2 years old
Frisky is 5 years old

Analysis: In line 19, a SimpleCat object is instantiated on the free store. The default constructor sets its age to 2, and the GetAge() method is called in line 20. Because this is a pointe
r, the indirection operator (->) is used to access the member data and functions. In line 21, the SetAge() method is called, and GetAge() is accessed again in line 22.

Source: Dot (.) vs Arrow (->) to access data members in C++

Sunday, 15 April 2012

Email Sign-off Considerations


The topic of how to sign-off an email is one that has perplexed and concerned many a Netizen. Those who are concerned about being perceived favorably wonder how to sign-off with the appropriate tone, close with the intended meaning getting across as well as how not to look redundant by always including the same closing.
First things first. All sign-offs need to include your name. Whether you include your first name alone or first and last name is dependent on the level of formality in your email. For first time contacts you can include your last name, but in subsequent communications that isn’t necessary. If you have your email program setup properly, your last name is in the From: field.
Not only does how you sign your name set the tone of an email, so does how you choose to sign-off. Some have their own way of signing off that reflects individuality or their personality. For example I am known for signing off my emails with “At your service,” or “Virtually,”. If you see anyone else using these closings, you now know where they got it from!
Then there are the most popular:
Best,
All the best,
Cheers,
Yours,
Cordially,
Regards,
Best regards,
Best wishes,
Sincerely,
Kindest regards,
Warmest regards,
I remain yours truly,
Warmly,
Thanks again,
With thanks,
Many thanks,
My sincere thanks for your time and consideration,
Take care,
Continued success,
As with anything to do with email, use your discretion as to what is best for that particular message. For example, you wouldn’t use “I remain yours truly” in business communications, but you would use that closing with someone you admire, like or would like to have a friendly email relationship with. Whereas “Regards,” is the other end of the scale. Very professional, unemotional and depending on the content of the email could be perceived as a terse closing.
One must take the time to choose a sign-off that is indicative of the overall tone of your email. A sign-off that does not match the essence of the email’s text can be perceived as being sarcastic or down right rude. For example, I doubt if you were sending a professionally stern email that you would sign off with “Warmly!”
And that is the dilemma we all face when writing and closing our emails. Using our discretion to determine the best words to use to relay the exact tone and intent with clarity to avoid misunderstandings. From how you open your email with a salutation to the content and then the sign-off, all parts of your email are a component that contributes to the overall interpretation of your message.
Most onliners are not clear communicators. If you think about it we haven’t had to rely on communicating with the written word in decades. Just a mere century ago people wrote letters daily. This meant choosing their words carefully and thoughtfully to communicate the emotion and intent of their writings. Now, fast forward to this century and many emails appear to be written by someone who didn’t make it out of grade school!
The above examples are not the end-all-be-all either. Your sign-off isn’t exclusively the words above your name separated by a comma. You can also use phrases that reflect the purpose of your email as well. Some examples could be:
Good Job!
All the best of success!
Have a great day!
Happy Holidays!
Keep up the good work!
Thank you!
Thank you for your quick response.
Thank you for taking your time.
Looking forward to your reply.
Have a nice day!
Enjoy your weekend!
HTH! (Hope This Helps!)
Have a good day!
Your closing, while very important, is only the icing on the cake. It needs to be inline with the overall tone and demeanor of your email to ensure that your message is received as intended and leaves no room for misunderstandings or incorrect perceptions.
By taking your time and choosing your words carefully your sign-offs will just be one more indicator of what a pleasure it will be to communicate with you.


Source: EMAIL SIGN-OFF CONSIDERATIONS
Useful Website: NetManners.Com

Saturday, 14 April 2012

Thinkings about New Economics


I listened a presentation about global market delivered by an economic sociologist yesterday. The speaker presented his ideas on the research objects of economics, such as the price, market, economy, from an sociological but not standard sociological perspective. From his speech, I realize that more and more people do not believe the framework of viewing the economy established by the standard economist, and the extend of changing the economics can be larger than we imagined - not only the way we research economics but also the way we look at economic phenomena and human behaviours.

In order to collect the ideas and share them with the readers (and hope to discuss with you), I will list my thinkings about the new economics here.

Listening to Lectures Efficiently


What is the purpose of lectures?

At university, lectures are one of the main methods of teaching. Think about some of the lectures you have attended. You will probably find that lecturers aim to achieve different outcomes, but these generally include one or more of the following:
  • to provide a summary of essential knowledge in a subject area
  • to guide your reading and research
  • to demonstrate how to do something, e.g. solve a problem
  • to present a point of view or different points of view
  • to challenge your thinking by presenting an area of controversy
  • to stimulate your interest.


Listening in lectures

Because lectures are such an important method of teaching at university, you need to know what to do to get the most out of the lectures you attend. Some lectures will be more interesting than others and the forms of lectures will vary, but one of your aims should be to identify how lecturers approach their subject.

When a sociologist speaks about sociology or a psychologist discusses theories, what do they emphasise? What specialist language is used? You need to learn how to think and speak using the language of the subject; being present for lectures, and taking notes, is one way of helping you achieve this.

Listening in lectures is often made more difficult by the length of time you need to maintain silent concentration, and the lack of interaction between you and the lecturer. However, you need to see your role as active rather than passive. You may need to work harder at listening, understanding, identifying main points and taking notes than the lecturer does in delivering the lecture!

Tips for effective listening

  • Prepare for the lecture
Prepare yourself for what is going to be discussed by making sure that you at least know the topic of the lecture. Listen carefully during the first five minutes, because most lecturers will outline the purpose of the lecture, and give you an idea of what they hope you might gain.

  • Improve your concentration
Be aware that your thoughts may start wandering 20-25 minutes into the lecture. One way of maintaining focus is to think about what the speaker may say next or the general point they may be making. You could also think about what has already been covered, and try to sum up the content in a few brief phrases. Ask yourself: 'What have I learnt so far?'

  • Ask questions and analyse the message
Consider what else you would like to know about the information being presented, and put these questions to the lecturer, if appropriate. If there is no opportunity for questions, write out your queries for your own research, or for discussion with the lecturer at the end of the lecture.

Think about the evidence for or against what is being said and consider how this fits in with your own reading and your experience.

  • Maintain motivation
You cannot always rely on the lecturer to provide motivation, so you may need to actively seek out some area of interest. Ask yourself:"What is being said here that is useful to me?"

  • Stay alert physically
While you need to be seated comfortably in the lecture theatre, you should adopt a position that will help you to concentrate. Sit upright, respond appropriately to the speaker, and be prepared to take notes. Sitting near the front of the lecture theatre will help you feel more involved and ensure that you can see and hear, as well as avoid possible distractions.

The purpose of lecture notes

After the lecture, even if you have been an active listener, you may very quickly forget much of what has been said. Therefore, lecture notes are very important. The notes you take during a lecture should provide you with a summary of relevant and important points on the topic being presented.

If you develop effective note-taking skills your notes can also serve a whole range of other purposes. Generally, by attempting to think about the main points to include in your notes you are analysing the topic and producing an outline for your revision.

Your lecture notes can also highlight significant references to follow up on, and be a forum for your own thoughts and comments.

How to take notes

It is impossible to take down every word and detail that is presented in the lecture, and if you attempt to do this you will be unable to listen actively. If you have done some pre-reading to prepare for the lecture and listen carefully to the lecturer's introduction, you will be more likely to identify the key ideas being presented.

Think about the type of lecture you are attending, as this should also influence the way you take notes. For example, if much of the material is available in your textbook, your notes should include minimal detail. However, if the information is not available in other forms you will need to take full notes.

Note taking becomes easier as you become more familiar with the style of individual lecturers. Think about the following points in regard to your note-taking:
  • Your position in the lecture theatre
Don't be frightened of the lecturer. Sit close to the front, and look interested. You will hear and see better, and are more likely to find yourself in the company of committed students.
  • The lecturer's use of voice/body language
The lecturer's use of repetition, a change of tone, meaningful pausing or an upraised finger, etc., may indicate important content. Listen and watch for these signals.
  • Lecture language
A lecture is not a dictation exercise. You need to listen and make your own judgements about what you should write down. The following hints however, may help you.
  • Argument structure
Words such as first, second, also, furthermore, moreover, therefore and finally indicate stages in the lecturer's argument. But and however indicate a qualification, because a reason, and on the one hand and on the other hand indicate a contrast.
  • "Signalling" words (used to indicate parts of the lecture)
(1) Introducing the lecture: "I want to start by..."
(2) Introduction of a main point: "The next point is crucial..."
(3) Rephrasing the main point: "The point I am making..."
(4) Introducing an example: "Take the case of..."
(5) Moving on to another main point: "I'd like to move on and look at..."
(6) A digression: "That reminds me of..."
(7) Summing up main points: "To recapitulate..."

Structure and delivery of the lecture

The structure of the lecture and the delivery should influence the way you take notes. Most lecturers will provide some level of support for note taking, through outlines on overhead transparencies or slide presentations .

Some lecturers distribute handouts that give a summary of the main concepts. This means that you can add points to elaborate or record examples, so that you then have a detailed set of notes.

If you download lecture notes with several slides to a page you may need to enlarge each slide so that you have space to write your own notes as well. Alternatively, you can use your own paper for your notes. Number each slide on the downloaded copy and indicate the relevant slide number for the notes you take on your own paper.

Try to listen for verbal cues the lecturer uses to indicate the level of importance of the points being made. These could include repeating key concepts and slowing down or adopting a different tone to indicate the difference between main points and illustrative examples.

Other pointers will be key phrases or words, which give you an idea about the significance of what is being presented and how it relates to the overall topic. For example, phrases such as 'the next important point is','on the other hand' and 'one example of this' are important signals.

After the lecture

Re-reading your notes, preferably on the day of the lecture, will increase the likelihood of you remembering the key concepts. By re-visiting your notes, you can also expand where necessary, tie points together and/or consult references mentioned to develop points or further clarify certain concepts. By grouping your notes together and organising them in folders you will be building up your own set of revision notes, and compiling a valuable reference for the future.

Sources:
Listening to lectures
Listening and note taking in lectures