Skip to main content

The educational system





The educational system is a very vital and energetic domain in the country. It’s the factory that products the next responsible for the future.
That’s the reason why we should think about the people that teach the students. So, these teachers should be their idol, their friend and their leaders. We need a teacher who is in touch with the new technology; I mean the one who can use sophisticated materials to teach the students; to protect them from the boredom. We know that some of students are familiar with the internet and the new technology, they are used to the interactive materials, to something new. So, when they come to class and they work with blackboard and chalk, they feel a little bit lost or bored.
Therefore; we need a teacher who can afford joy and in the same time knowledge to their students. We also need a student who loves his work an his studies, who is ready to continue the learning process, who doesn’t consider school like a theme park, this student can help the teacher to make this example come true.
We need also a comprehensive administration that helps either the teacher or the student by affording them the necessary materials to work in a good condition.
I think that our school doesn’t only need material equipment, it needs more than that, It needs values like collaboration, cooperation, creativity, respect and responsibility as well to succeed the educational process.

Comments

Popular posts from this blog

What is Bitnami ?

                                            What is Bitnami ? Bitnami makes it easy to run your favorite server apps anywhere Bitnami is a library of popular server applications and development environments that can be installed with one click, either in your laptop, in a virtual machine or hosted in the cloud. We take care of compiling and configuring the applications and all of their dependencies (third-party libraries, language runtimes, databases) so they work out-of-the-box. The resulting packaged software (a 'stack') is then made available as native installers, virtual machines and cloud images. These Bitnami application packages provide a consistent, secure and optimized end-user experience when deploying any app, on any platform. Bitnami Cloud Hosting Bitnami Cloud Hosting is a server management solution that makes it incredibly simple to launch and...

NOCOPY Parameter Hint in PL/SQL

Before we get to understanding the NOCOPY parameter hint in PL/SQL, it would help to first look at PL/SQL parameter modes and the ways in which they pass values in and out of a subprogram. PL/SQL subprograms have three parameter modes: IN parameter mode is used to send values into the subprogram from the calling program. An IN parameter can only be read, its value cannot be modified inside the subprogram. OUT parameter mode is used to return values from the subprogram to the calling program. IN OUT parameter mode is a hybrid of IN and OUT. It is used to send values into the subprogram, and its value can be modified within the subprogram. On exit, the subprogram returns the updated value of the IN OUT parameter to the calling program.  Continue reading at Source :  NOCOPY Parameter Hint in PL/SQL

Deploying PHP applications as PHAR archives

                             Deploying PHP applications as PHAR archives Today I discovered a very powerful addition to the PHP world.  Phar  is an archive extension for PHP that allows an entire PHP application to be packaged into a single file. It's basically PHP's answer to Java's .jar archive format. Don't get excited yet, it gets better... There are a few things that make this particularly handy. For one, it is being integrated into the next major PHP release (5.3) which means that any standard PHP installation running the latest version will support .phar files right out of the box. The other advantage is of course in deployment. Using a .phar file you can deploy an entire PHP application by working with just one file, rather than a bunch of files and directories. This is where .phar really shines. Imagine deploying a popular web app like WordPress by simply copying a single .phar file...