Gohigohi Trust Computer Limited

Gohigohi Trust Computer Limited we help but nt competing

29/05/2022

Helo members

25/08/2019
this is how I can explain my self to most pipo who know me
25/08/2019

this is how I can explain my self to most pipo who know me

26/06/2018

QUALITIES OF A GOOD NETWORK
Enthusiasm: As a better Networker, you should enter a room confidently and repeat to yourself that you have similar rights to be present there as others. Help clients with a sense of passion and enthusiasm when explaining the product or service and be proud of the company you represent. You should be ready to accept challenges and help others develop an interest in the workplace.
Ask interesting questions: You should be aware of the present situation and ask the right questions in an appropriate manner. This gesture will attract the best responses and people will be interested in investing in your business.In an attempt to develop good Networking skills, you must learn the art of asking intelligent and interesting questions. You must not follow the stereotype. The innovative way of asking questions, maybe:
– Who will be attending the event?
– Could you please tell me about the event’s format?
– Why have you invited me and what am I expected to do at the event?
Express generosity: A good Networker should be generous and practice the art of giving. A business leader should not think about the rewards only. The thoughts such as ‘What’s in it for me’ should be replaced with the thought of ‘What’s in it for you?’. Networking refers to the establishment of relationships with other individuals. It is not possible if people dislike you. So, it is necessary to build a cordial relationship with other members of the network.
Reliability and trustworthiness: A good Networker should be able to build a sense of reliability and trust among others. This involves the timely delivery of assignments as well as abiding by what you say. For Instance, if you have booked an appointment for a particular time, ensure that you reach the venue on time. In case of an emergency, if you need to cancel the appointment inform the person accordingly.
As a good Networker, you must persist in case you happen to observe an opportunity. You must face every situation with a positive attitude and grab any opportunity that comes your way.
Good networking requires a business leader to acquire the skill of active listening. You must pay full attention and listen carefully to what is being said. This might enhance your business. Expressing genuine interest in other’s opinions attracts more investors.
A good Networker should maintain a balance and get the timing right. You should know when to talk about an issue; right time to listen to a topic; when to enter or exit a group; right time to implement a follow-up action or create intervals among all these tasks judiciously.

25/06/2018

Creating MySQL Database

07/06/2018

Hi. Are there any PHP beginners who would like to create a simple project and make his portfolio? I am also a beginner and we can create a simple website for FREE. If you are a beginner, it might be a good chance for you to develop your skills and create experience.

08/04/2018

Motor Development in Infancy and Childhoodmotor develop
Most infants develop motor abilities in the same order and at approximately the same age. In this sense, most agree that these abilities are genetically preprogrammed within all infants. The environment does play a role in the development, with an enriched environment often reducing the learning time and an impoverished one doing the opposite.

The following chart delineates the development of infants in sequential order. The ages shown are averages and it is normal for these to vary by a month or two in either direction.

2 months – able to lift head up on his own

3 months – can roll over

4 months – can sit propped up without falling over

6 months – is able to sit up without support

7 months – begins to stand while holding on to things for support

9 months – can begin to walk, still using support

10 months – is able to momentarily stand on her own without support

11 months – can stand alone with more confidence

12 months – begin walking alone without support

14 months – can walk backward without support

17 months – can walk up steps with little or no support

18 months – able to manipulate objects with feet while walking, such as kicking a ball

Cognitive Development in Children
Probably the most cited theory in the cognitive development in children is Jean Piaget (1896-1980). As with all stage theories, Piaget’s Theory of Cognitive Development maintains that children go through specific stages as their intellect and ability to see relationships matures. These stages are completed in a fixed order with all children, even those in other countries. The age range, however can vary from child to child.

Sensorimotor Stage. This stage occurs between the ages of birth and two years of age, as infants begin to understand the information entering their sense and their ability to interact with the world. During this stage, the child learns to manipulate objects although they fail to understan

23/01/2018

AngularJS facilitates you to create a form enriches with data binding and validation of input controls.

Input controls are ways for a user to enter data. A form is a collection of controls for the purpose of grouping related controls together.

Following are the input controls used in AngularJS forms:

input elements
select elements
button elements
textarea elements
AngularJS provides multiple events that can be associated with the HTML controls. These events are associated with the different HTML input elements.

Following is a list of events supported in AngularJS:

ng-click
ng-dbl-click
ng-mousedown
ng-mouseup
ng-mouseenter
ng-mouseleave
ng-mousemove
ng-mouseover
ng-keydown
ng-keyup
ng-keypress
ng-change
Data Binding

ng-model directive is used to provide data binding.

Let's take an example where ng-model directive binds the input controller to the rest of your application

See this example:








First Name:



var app = angular.module('myApp', []);
app.controller('formCtrl', function($scope) {
$scope.firstname = "Ajeet";
});



You can also change the example in the following way:

See this example:








First Name:

You entered: {{firstname}}

Change the name inside the input field, and you will see the name in the header changes accordingly.


AngularJS Checkbox

A checkbox has a value true or false. The ng-model directive is used for a checkbox.

See this example:








Check to show this:


Checked

The ng-show attribute is set to true when the checkbox is checked.


AngularJS Radio Buttons

ng-model directive is used to bind radio buttons in your applications.

Let's take an example to display some text, based on the value of the selected radio buttons. In this example, we are also using ng-switch directive to hide and show HTML sections depending on the value of the radio buttons.

See this example:







Pick a topic:
Tutorials
Festivals
News



Tutorials
Welcome to the best tutorials over the net


Festivals
Most famous festivals


News
Welcome to the news portal.


The ng-switch directive hides and shows HTML sections depending on the value of the radio buttons.


AngularJS Selectbox

ng-model directive is used to bind select boxes to your application.

See this example:







Select a topic:


Tutorials
Festivals
News




Tutorials
Welcome to the best tutorials over the net.


Festivals
Most famous festivals.


News
Welcome to the news portal.


The ng-switch directive hides and shows HTML sections depending on the value of the radio buttons.


AngularJS form example





Angular JS Forms



table, th , td {
border: 1px solid grey;
border-collapse: collapse;
padding: 5px;
}

table tr:nth-child(odd) {
background-color: lightpink;
}

table tr:nth-child(even) {
background-color: lightyellow;
}





AngularJS Sample Application





Enter first name:


First Name is required.





Enter last name:


Last Name is required.





Email:

Email is required.
Invalid email address.






Reset


Submit








var mainApp = angular.module("mainApp", []);

mainApp.controller('studentController', function($scope) {
$scope.reset = function(){
$scope.firstName = "Nitin";
$scope.lastName = "Goyal";
$scope.email = "[email protected]";
}

$scope.reset();
});



/* AngularJS v1.4.8 (c) 2010-2015 Google, Inc. http://angularjs.org License: MIT */ (function(S,X,u){'use strict';function G(a){return function(){var b=arguments[0],d;d="["+(a?a+":":"")+b+"] http://errors.angularjs.org/1.4.8/"+(a?a+"/":"")+b;for(b=1;b").append(a).html())):c?Pa.clone.call(a):a;if(k)f...

The CompTIA Career Pathways:IT Careers Are Made Here
09/01/2018

The CompTIA Career Pathways:IT Careers Are Made Here

Show you can support wired and wireless networks across vendors and platforms. With a CompTIA Network+ certification in hand, you'll be what they're looking for!

Address

Oyam And Lira Districit
Kampala
KAMPALA-

Alerts

Be the first to know and let us send you an email when Gohigohi Trust Computer Limited posts news and promotions. Your email address will not be used for any other purpose, and you can unsubscribe at any time.

Contact The Business

Send a message to Gohigohi Trust Computer Limited:

Share