Skip to main content

My Environmental Club at CPGE IBN Taimiya


This is the link that shows the schools that participated in MOBILZE U, and our school is the only one to participate from MOROCCO:
IBN TAIMIYA
Earth Day Participating Schools ---USA Initiative---

How did the story begin ?


It was all about a presentation I did, about the theme we had last year Social Development.So, I prepared the presentation and I rehearse it before going to class,meanwhile ,I thought about how I would tease students'curiosity and make them participate in the debate. Then, I said why not to talk with them on changing the aspect of our preparatory classes, 'coz as a famous school, it's a shame to have such a disgusting courtyard without trees or joyful plants.
then ,at the end of my presentation , I mentionned the idea ,and Mr Rasmy 'our english teacher' liked it and did share it with the coordinator of our school. Then it comes the IDEA OF CREATING this Club,which I named "ENVIRONMENTAL CLUB OF IBN TAIMIYA". I'm sure that several of you may wonder ,why you tell us this right in this period; simply ,because ,I participated in a international campaign with our page in FB , and they did give me a certificate of gratitude. So,i like to participate it with you.

The link of the page on FB
is:(You can find there pictures about the changes brought to school since we rise up for the cause, and also some topics willing to rise the public awarness about envirnment in general)

My Facebook Page: Environmental Club


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...