Skip to main content

Posts

BITNAMI

Bitnami is a library of installers or software packages for web applications and development stacks as well as virtual appliances. Bitnami makes it incredibly easy to deploy applications with native installers, as virtual machines, or in the cloud. Some of the tools or packages in bitnami are discussed below; 1. Exo platform enterprise It is an enterprise grade social collaboration platform. It integrates wikis, forums, calendars and document management tools with activity streams and workspaces enabling teachers and their students to easily and instantly connect and collaborate on multiple projects in a frictionless environment. • Social networking: connect with users and track individuals and group activity. • Spaces that can support the creation of collaborative spaces for teams, projects or communities. • Calendars are teachers and their students to schedule meetings and organize agenda with personal and group calendars and reminders. • Discussion forums allow learners to

HTML5 and CSS3 Fundamentals

HTML5 and CSS3 Fundamentals Background Every Web Developer Needs to Know Introduction In this article I'll describe the World Wide Web from a high level perspective, focusing on how a web page is request and delivered from a web server to a web browser. Then, I want to talk about web browsers, how they interpret the HTML you write, differences between browsers, what are standards and to paraphrase the old joke "if Standards are so great, why are there so many of them?" Finally, I'll talk about the thought process behind HTML5 and CSS3, why they were introduced and what they hope to achieve. A Brief Technical Overview of the World Wide Web The World Wide Web started out as a means for sharing scientific resources like research documentation between governmental and academic institutions. It took time for the technologies and practices to evolve beyond its original purpose. From a technical perspective, the World Wide Web is comprised of several technologies ..

What is PHP?

What is PHP? PHP (recursive acronym for  PHP: Hypertext Preprocessor ) is a widely-used open source general-purpose scripting language that is especially suited for web development and can be embedded into HTML. Nice, but what does that mean? An example: Example #1 An introductory example <!DOCTYPE HTML> <html>     <head>         <title>Example</title>     </head>     <body>          <?php              echo  "Hi, I'm a PHP script!" ;          ?>     </body> </html> Instead of lots of commands to output HTML (as seen in C or Perl), PHP pages contain HTML with embedded code that does "something" (in this case, output "Hi, I'm a PHP script!"). The PHP code is enclosed in special  start and end processing instructions  <?php  and  ?>  that allow you to jump into and out of "PHP mode." What distinguishes PHP from something like client-side JavaScript i
This program will calculate annual property tax #include <iostream> using namespace std; int main () {                 //declaration of variables     double const tax_rate = 2.64;     double amount, payable, taxable_amt, payable_tax;     const int rating = 100;         cout<<"Enter the actual value of a piece of land\n";                         //prompts th user     cout<<endl;     cin>>amount;         cout<<"Actual value of the property is:"<<"$"<<amount;                      //displays actual property price     cout<<endl<<endl;         //computation of taxable amount     taxable_amt = 0.6 * amount;         cout<<"taxable amount is :" <<"$" <<taxable_amt;                             //displays taxable amount     cout<<endl;     cout<<endl;             //computes annual property tax     payable = t

The natural/biology theories and social/cultural theories of gender

Discuss the debate between the natural/biology theories and social/cultural theories of gender. Since the 1950s, an increasing use of the term gender has been seen in the academic literature and the public discoursefor distinguishing gender identity from biological sex. Gender can be defined as what a person says or does to reveal that he or she has the status of being boy or girl, man or woman (masculinity or femininity of a person). Gender is a complex issue, constituents of which encompass styles of dressing, patterns of moving as well as ways of talking rather than just being limited to biological sex. Over the years, the perception of the issue ‘gender’ has been changing and developing from essentialism to social constructionism. Essentialism suggests that gender is a biological sex, by contrast, social constructionism suggests that gender is constructed within a social and cultural discourse. Due to its complex nature, gender intrigues numerous debates over the extent to which

UNIT CONVERTER PROGRAM IN C.

THIS PROGRAM IS WRITTEN IN C /* Program to convert length to different units*/ #include int main(void) { float length, converted, measure; char inUnits, outUnits; printf("Enter the value of length to be converted: "); scanf("%f", &measure); printf("Enter the unit of value entered (I, F, Y, or M): "); scanf("%c", &inUnits); printf("Enter the unit to convert value to (c, m, or k): "); scanf("%c", &outUnits); switch(inUnits){ case 'I': converted = measure * 2.54001; printf("The length you entered in inches is equal to %f centimeters", converted); break; case 'Y': converted = measure * 0.9144402; printf("The length you entered in yards is equal to %f meters",

Collaborative Learning

How can you incorporate what you learnt about teaching and learning  in the classroom in promoting collaborative learning. Collaborative learning is based on the view that knowledge is a social construct. Collaborative learning can be an effective method to motivate students, encourage active learning, and develop key critical-thinking, communication, and decision-making skills. But without careful planning and facilitation, it  can frustrate students and instructors and feel like a waste of time. With knowledge in the collaborative learning activities the following principles can be employed to improve collaborative learning in the classroom.