This is a virtual space where the science club members will be able to share their projects and ideas they are currently exploring. The Alchemist club is designed to create a culture of learning where all children are citizen scientists.
Wednesday, July 31, 2013
Guess what i did?
what i did today was well wearing my pj's because today i had my program mission society and Mr.R was there and my class and we skype with Africa and i sang my song
Wild Life
Do you know how many Black Rhinos are there in Africa?
Do you catch the poachers from the Black Rhinos?
Do you catch the poachers from the Black Rhinos?
senitor
Will you put a law that says stop killing the Black Rhinos?
Are you going to save the Black Rhinos?
Are you going to save the Black Rhinos?
Sunday, July 28, 2013
My Notes about the Black Rhinos
There is about 22 white Rhinos in the world because there becoming extinct.they are becoming extinct because of there horns. Rhinos are critically endangered animals that look like they haven't rhinos have various habitats but mainly areas with dense, savannas with water holes, mud wallows and shade trees. Did you know the Black Rhinos declined drastically in the 1970s and 1980s do to poaching?
Friday, July 26, 2013
Jade's song
I just wanna see you stop killing those rhinos i just wanna see you stop oh! killing those rhinos kkilling those rhinos
Karen's Nay's Chel's Jenny's song
we better go go go to east to west searching the rhinos from right to left so were running to save the rhinos alright we got 2 killers and they better stop if they don't we'll call the cops so stop killing the rhinos they are to week to be killed because they don't have a chance to run away from the poachers from the poachers
Wednesday, July 24, 2013
This is what happening to the Rhinos wow
Sunday, July 21, 2013
people hunting the Rihno
Saturday, July 20, 2013
Quantum Levitation: When Science Imitates Magic
Hello Alchemist Club Members, this is the kind of projects we will do this year in the science club. I hope you are all ready to develop deep understanding of the nature of reality. If you truly love science, you have to understand how nature works. When you watch this video, I hope you all will ask the million dollar question "How does it work." Talk to you all soon. In the meanwhile, I would live everyone to start thinking of a project they would like to do in September.
Mr. Ronelus
Friday, July 19, 2013
Very,VERY bad news.
I can not be participating in the club anymore. I will be talking with all of you in the Blog. i will miss you all!
Saturday, July 13, 2013
Using Pointers in C
Hello Alchemists!
I have a small example to show you written in C. C is a programming language created in the late 1960's by developers working at AT&T, made to abstract programmers from machine code in a way which would be simple to modify and program.
This example makes use of pointers, which are references to an address in memory which stores information. Pointers are used to save memory by referring to an object instead of copying it multiple times. It can also increase the speed of an operation by avoiding the copy operation.
You can read more about programming in C here:
http://www.cplusplus.com/doc/tutorial/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
void main() {
// Use array of characters s[] and assign 5 characters
char s[] = "What?";
// Define a pointer to s (s itself is already a pointer, so we don't have to use &)
char *p = s;
// Print first element of s[]
printf("%c\n", *p);
// Print the second element of s[]
printf("%c\n", *(p + 1));
// Print the third element of s[]
printf("%c\n", *(p + 2));
// Print the fourth element of s[]
printf("%c\n", *(p + 3));
// Print the fifth element of s[]
printf("%c\n", *(p + 4));
// Print the entire string
printf("The string is : %s\n", p);
}
I have a small example to show you written in C. C is a programming language created in the late 1960's by developers working at AT&T, made to abstract programmers from machine code in a way which would be simple to modify and program.
This example makes use of pointers, which are references to an address in memory which stores information. Pointers are used to save memory by referring to an object instead of copying it multiple times. It can also increase the speed of an operation by avoiding the copy operation.
You can read more about programming in C here:
http://www.cplusplus.com/doc/tutorial/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
void main() {
// Use array of characters s[] and assign 5 characters
char s[] = "What?";
// Define a pointer to s (s itself is already a pointer, so we don't have to use &)
char *p = s;
// Print first element of s[]
printf("%c\n", *p);
// Print the second element of s[]
printf("%c\n", *(p + 1));
// Print the third element of s[]
printf("%c\n", *(p + 2));
// Print the fourth element of s[]
printf("%c\n", *(p + 3));
// Print the fifth element of s[]
printf("%c\n", *(p + 4));
// Print the entire string
printf("The string is : %s\n", p);
}
Tuesday, July 9, 2013
Saving the Black Rhino Summer Project
Hello Alchemist Club Members
This is Mr. Ronelus. This is a quick reminder that we are going to continue the Black Rhino project next week. I want everyone to get ready and share their ideas on the blog or via Google Plus. At this point, we are getting ready to communicate with kids from Kenya, Africa. I am looking forward to see you all online. I will send more information over the weekend. In the meanwhile, check out this nice drawing from one of the kids from Africa.
Tuesday, July 2, 2013
request
hi everybody so Mr.R can you send my sister an invitation for the alchemist club? please comment your response
Subscribe to:
Posts (Atom)