Tuesday, May 2, 2017

BRISITICH COUNCLE REPORT



👨 REPORT



         😇What is a report?
                 A report is a systematic, well organized document which defines and analyses a subject or problem.
               which may include:
     ✊ the record of a sequence of events
     ✊ interpretation of the significance of these events or facts
     ✊ evaluation of the facts or results of research presented
     ✊ discussion of the outcomes of a decision or course of action
      ✊ conclusions
      ✊ recommendations



😇Reports must always be:
      ✊ accurate
      ✊ concise
      ✊ clear
      ✊ well structured




😇Report structure
 
  1. Title page
  2. Acknowledgment :
  3. Contents page
  4.  Term of reference
  5.  Procedure
  6. Materials and methods
  7. Summary
  8. Introduction
  9. Main body
  10. Result
  11. Conclusion
  12. Recommendation
  13.  Appendices
  14.  Reference
  15.   Bibliography
  16. Glossary

www.british councle.lk  through get our course details......



personal coaching goal objective

 ðŸ’¥ GOALS
          Goals are a very important part of any task.
 
 








💦How to Set a Goal
    
          First consider what you want to achieve, and then commit to it. 
      Set SMART (specific, measurable, attainable, relevant and time-bound) goals that motivate you and write them down to make them feel tangible. Then plan the steps you must take to realize your goal, and cross off each one as you work through them. 

 ðŸ‘§ our goals must have SMART















👧 Goal success formula
      C-Clear
      C-confidence
      E-Expectations
      E-Emotions

 

👧Why Set Goals?

     Setting goals gives you long-term vision and short-term motivations. It focuses our acquisition of knowledge, and helps we to organize our time and our resources so that we can make the very most of our life.
By setting sharp, clearly defined goals, we can measure and take pride in the achievement of those goals, and we'll see forward progress in what might previously have seemed a long pointless grind. we will also raise our self confident, as we recognize our own ability and competence in achieving the goals that we've set.



  👧Starting to Set Personal Goals

            we set our goals on a number of levels:

  • First we create our "big picture" of what we want to do with our life (or over, say, the next 10 years), and identify the large-scale goals that we want to achieve.

  • Then, we break these down into the smaller and smaller targets that we must hit to reach our lifetime goals.

  • Finally, once we have our plan, we start working on it to achieve these goals.

   





GIT HUB


💥 GIT HUB



         First we must understand of git. Git is an open source version control system that was started by Linus Trovalds. 

                             when developers are creating something, they are making constant changes to the code & releasing new versions up to & after the first official release.
        This allows developers to easily collaborate as they can download a new version of the software make changes & upload the newest vision.  every developer can see these new changes download them & contribute.

💧 Repository

    It is a location where all the files for a particular project are stored.


💦 how to use GIT HUB.......


     1. install  git & create  a git hub account.

      2.   To create a new repository  

             💧   In the upper right corner, next to your avatar or identity icon +, click and then select New repository. 

            💧  Name your repository hello-world. 

            💧  Write a short description

            💧 Select Initialize this repository with a README.

 

    3. To create a new branch

               💧 Go to your new repository hello-world. 
               💧Click the drop down at the top of the file list that says branch: master
               💧 Type a branch name, readme-edits, into the new branch text box. 
               💧 Select the blue Create branch box or hit “Enter” on your keyboard.


 ðŸ’¥
  1. On your computer, move the file you'd like to upload to GitHub into the local directory that was created when you cloned the repository.
  2. Open Terminal.
  3. Change the current working directory to your local repository.
  4. Stage the file for commit to your local repository.
    git add .
    # Adds the file to your local repository and stages it for commit
    
  5. Commit the file that you've staged in your local repository.
    git commit -m "Add existing file" 
    # Commits the tracked changes and prepares them to be
     pushed to a remote repository.
    
  6. Push the changes in your local repository to GitHub.
    git push origin your-branch
    # Pushes the changes in your local repository up to the remote 
    repository you specified as the origin.
    


Link:https://guides.github.com/activities/hello-world/ feather details.

 

     

HTML

👸HTML coding example

    😇  <!DOCTYPE html>
         <html>
                  <head>
                        <title>Page Title</title>
                 </head>
          <body>

                         <h1>This is a Heading</h1>
                         <p>This is a paragraph.</p>

       </body>
  </html>.

   
😇   <body style="background-color:powderblue;">

😇 The language is declared with the lang attribute.
          <html lang="en-US">

😇    <img src="pic_mountain.jpg" alt="Mountain View" style="width:304px; height:228px;">

   table, th, td {
    border: 1px solid black;
    border-collapse: collapse;
}




 
💥 What are the tags use for create forms.......
         
       
The <form> tag is used to create an HTML form for user input.
The <form> element can contain one or more of the following form elements:
 
😇<input>                <form action="/action_page.php">
  First name: <input type="text" name="fname"><br>
  Last name: <input type="text" name="lname"><br>
  <input type="submit" value="Submit">
</form>
 
😇<textarea>
              
               <textarea rows="4" cols="50">
At w3schools.com you will learn how to make a website. We offer free tutorials in all web development technologies.
</textarea> 
 
 
😇<button>
              
            <button type="button">Click Me!</button>


😇<select>
             
         Create a drop-down list with four options:
               <select>
  <option value="volvo">Volvo</option>
  <option value="saab">Saab</option>
  <option value="mercedes">Mercedes</option>
  <option value="audi">Audi</option>
</select>


 ðŸ˜‡ <option> 
 
           A drop-down list with four options:
       <select>
  <option value="volvo">Volvo</option>
  <option value="saab">Saab</option>
  <option value="opel">Opel</option>
  <option value="audi">Audi</option>
</select>
 
😇<optgroup> 
       
          Group related options with <optgroup> tags:
<select>
  <optgroup label="Swedish Cars">
    <option value="volvo">Volvo</option>
    <option value="saab">Saab</option>
  </optgroup>
  <optgroup label="German Cars">
    <option value="mercedes">Mercedes</option>
    <option value="audi">Audi</option>
  </optgroup>
</select>
       

😇<fieldset>
 
           Group related elements in a form:
<form>
  <fieldset>
    <legend>Personalia:</legend>
    Name: <input type="text"><br>
    Email: <input type="text"><br>
    Date of birth: <input type="text">
  </fieldset>
</form> 
 
😇<lable>

       Three radio buttons with labels:
<form action="/action_page.php">
  <label for="male">Male</label>
  <input type="radio" name="gender" id="male" value="male"><br>
  <label for="female">Female</label>
  <input type="radio" name="gender" id="female" value="female"><br>
  <label for="other">Other</label>
  <input type="radio" name="gender" id="other" value="other"><br><br>
  <input type="submit" value="Submit">
</form>

CSS

💢 CSS

 Cascading Style Sheets (CSS) is a style sheet language used for describing the presentation of a document written in a markup language.




😇 EXAMPLE:   

      



















 ðŸ’¥

 body {
    background-color: lightblue;
}

h1 {
    color: white;
    text-align: center;
}

p {
    font-family: verdana;
    font-size: 20px;
}







😇 CSS write Three ways...........

  • External style sheet
              😅 Each page must include a reference to the external style sheet file inside the <link> element. The <link> element goes inside the <head> section:

      <head>
<link rel="stylesheet" type="text/css" href="mystyle.css">
      </head>
  • Internal style sheet
        😅 Internal styles are defined within the <style> element, inside the <head> section of an HTML page:

         <head>
       <style>
body {
    background-color: linen;
}

h1 {
    color: maroon;
    margin-left: 40px;
}
</style>
</head>



  • In line style
           😅 An in line style may be used to apply a unique style for a single element.

<h1 style="color:blue;margin-left:30px;">This is a heading</h1>


 ðŸ’­ HTML+CSS

     


Thursday, April 27, 2017

personal coaching...........

😇 CULTURAL DIVERSITY 

          
 there are many separate societies appeared around the global as well as the more clear cultural difference the exit between people. such as languages, dress traditions, beliefs, religion, values, attitudes & etc...



😅  cultural diversity in working place..
   If diversity in work place is having good representation of people with a variety of thoughts, skill, world views &  experiences inclusion is making sure people are appreciated for what they bring to the table  their difference are perceived as an advantage.        
 
😇  What is organization



   A social unit of people is structured & managed to meet a need or to pursue collective goals.






😇cultural Awareness

             foundation of communication & it involves the ability of standing back from ourselves .& becoming aware of our cultural values, belief & perceptions. 

      💣Ethnocentrism 
         (more desirable than the lifestyle of others)

      💣cultural blindness (avoid seeing ways to be having in   other culture that one finds unacceptable )

      💣cultural shock 

       💣cultural conflict  (feelings of stress when the rules of one's own cultural are challenge by rules of others )

        💣cultural imposition


 ðŸ˜‡ norm

             informal guideline about what is considered normal social behavior in a particular social unit or organization.

 ðŸ˜‡communication
       communication is a dynamic process composed by multiple elements & steps. 
           a sender, encoding, messages, channels, noises, a receiver, decoding receivers response & feedback .




      💢 verbal communication is composed by sounds , words & languages. which has a direct relationship with culture.  

      💢 non verbal communication is defined as those actions & attributes that have socially shard meaning.
      non verbal communication actions are different ways to culture to culture.






😇BODY LANGUAGE
   
   


        body language is a type of non verbal communication. 

💥   HEAD


 
   

     

                               




💥NOSE














     💥HANDS

                                                                           
💥 CHEEKS
            















💥FACE









💥ARMS















💥 EYES













💥