May 27, 2011

May 27 2011- End of Quarter

Refer to your logs when you answer these questions

Name

Anna Moritz

Module

Greenfoot/Digital Media (in 1st Quarter)

How many days have you missed class this quarter?

None

What have you done to make up lost time?

Nothing because I haven’t missed any classes.

How have your experiences been different in the second quarter? Are you more or less satisfied with your progress? Are you doing more of less work out of class?

I’m a little less satisfied with my work for a few reasons. \in the first quarter I was working with \digital Media, and I was a little more excited to do work. This quarter I was working with Greenfoot and although it was interesting, it was not something I wanted to work on in my free time. However, I finished chapters 1-5.

Has the atmosphere in the class changed during the course? How has it changed?

I think after another quarter, the people in the class have been more talkative with each other.

What advice can you give to students who are about to start on the module that you are just finishing? What can you say that would help them have a more effective learning experience?

When working on Greenfoot, always read thoroughly. Don’t write any codes until the little gray information boxes tell you too. It makes things a lot easier.

This course provided you with an opportunity to extend your knowledge skills and understanding in areas that you have chosen.

Chose and describe, one significant area of knowledge or skill or understanding than you gained from this course.

Before this course I had no idea how to use anything except for iMovie. After Computer Applications, I learned Adobe Premier Pro and a bit of After effects. It’s much easier to edit video projects using these programs.

This course also provided you with the opportunity to manage your own learning. Effective lifelong learners are independent, curious, persistent, they forge relationships that support their learning goals, they find meaning in their learning by making connections with what they already know and value, and can do.

Give one example of how you have changed as a learner as a result of this course.

I have changed as a learner as I have become much more independent. Before this class I relied on the teacher to tell me what I should do. But after working with Greenfoot, I just started the next chapter without any consult.

What will you have achieved by the end of the module? Describe your project. Is it finished? What do you still need to do?

My project was really to finish chapter 5 of Greenfoot. I accomplished this and need to start work on something far the last few days of class.

Highlight sentences in the descriptions of student given below that you feel reflects your performance in this course.

How does a student that receives a B grade perform?

Commendable

Creditable

Good

Respectable

Typically this student makes effective use of class time by increasing his competence and confidence using software that he has chosen.

He attends all class sessions, coming and leaving on time, and making sure to make up missing time by working during free periods or at home.

His oral communication during class is focused on the learning tasks that he is engaged in.

His written communication (logs, e-mails, and reports) are done according to deadlines and contain enough information for the teacher to understand what he is doing, what kinds of problems he is facing and how he feels about his learning experiences.

During class he remains focused on the task at hand and generally respects the integrity of the learning environment for all students.

He has positive attitudes towards acquiring new skills, and makes a conscious effort to acquire new skills and apply them in meaningful ways.

He is an independent learner, who tries to solve problems by himself, but finds effective ways to overcome problems using a variety of other resources.

He is respectful of all members of this learning community and his behavior is in compliance with all school policies, in particular the AUP (Appropriate Use Policy) and Academic Honesty Policy.

This is an appropriate course for this student and the performance of the student is such that it can be said that the student is meeting the standards well. His work, on the whole, is good.

In computer science a student receiving a B will typically have covered chapters 1-6 in Greenfoot (assuming no prior knowledge) and has demonstrated a good level of understanding by creating his own application.

In Digital Arts a student receiving a B will typically have covered work using Photoshop, Audacity and Premiere. They will have done some exercises and some original creative work.

In Business Applications a student receiving a B will typically have covered chapters 8,9,11, & 12. He will have demonstrated his understanding by doing tests, and he will have found some application for spreadsheets and databases outside the text exercises.

In what ways is the performance of a student receiving an A different from that of a student receiving a B?

Brilliant

Exceptional

Outstanding

An A student performs as described above.

She also demonstrates a particularly high level of understanding or performance.

She might be doing substantial work out of class. She might have authentic clients for her computer skills.

She will tend to show leadership qualities in group oriented projects and she will be approached by other students for help because they recognize her superior skill levels.

She will be very independent and confident in her approach to learning.

She will be interested in developing her own learning objectives and finding ways to meet them.

She will tend to reflect on her learning experiences and on her learning needs in her logs in such a way that her reflective log becomes a learning plan.This is probably an appropriate course for her.

In what ways is the performance of a student receiving a C different from that of a student receiving a B?

Adequate

Sufficient

Good Enough

Satisfactory

Reasonable

This student does not perform at the level of a B student in some areas. They may lack confidence or tend to work rather slowly. They may not be fully engaged during class time. This is an appropriate course for her, and she adequately meets the standards for the course.

Under what circumstances would a student receive a D for this course.

Inadequate

Poor

Insufficient

Deficient

Unsatisfactory

Unacceptable

Sub-standard

Not good enough

Lacking

Incomplete

Wanting

This student is failing to meet the standards (described in B) to such an extent that this might not be an appropriate course for this student at this time. This student is in danger of failing the course.

Given the highlighted sentences above, what do you think is an appropriate grade for you in this course?

A-outstanding-95

B-good-85

C-adequate-75

D-inadequate-65

I think a B is appropriate.

What else would you like to communicate to your instructor to support your estimated final grade for the class?

I forgot my blog two or three times, but other than that I think I have been a well working student.

Is there any other information that you would like to provide your teacher to help decide on your final grade for the class?

There is no other information.

May 23, 2011

May 23 2011

Chapter 6 is Next. But since we only have a few classes left, I decided to start my own project. I was looking through the chapter ten scenarios, and I saw this wave thing where you can make a string of beads make wave patters. However I didn't start yesterday because I was helping Yejun with her goodbye video for Mr. Harvey.

May 19, 2011

May 19 2011

I finally got the black keys done!! I had a lot of help but I finally did it. Michael was helping me with the code since the book was not instructions as it usually is. I also made a video of me playnig a song on the piano, but it's on the school computer so I will add it on Monday. The code was hard to do, because I wasn't really sure what t had to be. Now I'll start chapter 6.




May 13, 2011

May 11 and 13, 2011

Last class (the 11th) Michael and Charles both asked that I help them with their projects. I did, and hence did not get the chance to work on Greenfoot.

Today (May 13th) I did work on Greenfoot.
I Started with Chapter 5.5 - Usuing Loops: The while loop. This chapter taught me new commands such as:

while (condition)
{
statement;
statement;
}

and the version of that staement which I can use to tell the computer to loop a specific amount of times

int i = 0;
while (i < 100)
{
statement;
statement;
i = i + 1
}


In my piano class I added that type of statement to make the piano keys, and make each piano key play a sound. But then in chapter 5.6 I learned how to use and array so each key made a different sound.
I used string names to make sure that each piano key played when I pressed a keyboard key. Once I made the code so I could connect a key with a sound, I used the same type of code to fix my earlier code of placing keys. Instead of having 12 in one spot, I had 12 spread out evenly.

private void makeKeys()
{
int i = 0;
while (i < whiteKeys.length)
{
Key key = new Key(whiteKeys[i], whiteNotes[i] + ".wav";
addObject(key, 54 + (i*63), 140);
i = i + 1
}
}

May 6, 2011

May 6 2011

I actually got a lot done today. First off I started chapter 5. Yay! Chapter 4 was the Crab game, so I'm glad I don't have to do any more work on that. Chapter 5 on the other hand, is making an interactive piano. I got to part 3 of chapter 5, which is good for one day. I hadn't used any boolean code in a while, so i sort of forgot what that was. But when I needed ot use it, i went back to chapter 3 and remembered. One of the first parts of the piano is making two keys play different sounds. I tried three times to get it right, but every time I put in a code (which Michael helped with a little) I would press "f" (the first of the two buttons) and it would play one sound and keep playing after I let go of the button, and then get all frozen. When I pressed "g" nothing would happen. But after some trial and error (and going back a few pages to reread everything) I got the code to work and play any button with a different sound.

May 4, 2011

May 4 2011

I FINISHED MY CRAB GAME!!!!! I finally got the pictures to switch back and forth and added the sound when you at 8 worms. Next Class I will be starting chapter 5 I think. Sorry this post is short. I would add which codes I put in, but I left my booklet at school.

May 2, 2011

May 2 2011

It was the first calss after the break. I was sort of tired and not really focused on my work. What I did do today was try and animate the crab. The animation was really switching the images of "crab.png" and "carb2.png" quickly. I had some problems because I didn't know where to put the code:

new GreenfootImage ("crab2.png")

I asked Mr. Daly for help and he told me it just had to be inside the public class Crab. I eventually got the code put it and in the right spot. But I ran out of time before I could make the crab switch images. I will do that next class.

Apr 14, 2011

April 14 2011

Today I was filmed. I would have worked more on Greenfoot, but Zach needed me to be filmed for his... I know it's a video, but I'm not really sure what it's for. Anyway I did some photoshopping while he filmed my screen. The final picture is unfortunately on the school computer so I will add it at a later date.

Apr 12, 2011

April 12 2011

To summarize what I did today was add sound effects to my crabs, and put the correct format for the crabs and worms to come to the same spot every time. It took me a while to figure out how to format the crab's, worms and lobster's placement. I had to make sure they were spread far enough apart by knowing what numbers put what where. The sound effects didn't take to long. Now my Crab game is almost complete!

Apr 8, 2011

April 8 2011

I didn't do too much today. It was the last block on Friday so I kept getting distracted with Michael's project. But I have almost finished chapter 3, and specifically I set up the crab scenario to automatically set a certain number of worms, a crab and a lobster randomly in the world. So for next class I will finish chapter 3 and be able to do whatever chapter 4 is about.

Apr 6, 2011

April 6 2011

Today I made a game. Yay. I didn't have enough time to make the game have an ending, but I did make a code so the crab could turn with the right and left keyboard keys.

if (Greenfoot.isKeyDown("left"))
{
turn(-4);
}

After I used that for the left key, I added it for the right.

if (Greenfoot.isKeyDown("right"))
{
turn(-4);
}


This is my first attempt at using the keyboard.



In the video I showed how when I added

turn(-4);

for left and right, both keys did the same thing. But then I realized that I had to be able to make them go different directions so i changed the code for right to:

turn(4);

So I added some worms and played my game. Then I made sure the code was the same as the book and started messing around with the images.





Apr 4, 2011

April 4, 2011

Today I was supposed to do something. Well to be specific I needed to make my own method rather than using the book's. Of course I wasn't exactly sure where anything went. But I did add:

public void lookForWorm()
{
if ( canSee(Worm.class) )
{
eat(Worm.class);
}
{


After I did that (which I honestly don't know what changed) I tried to do the exercises on the page. But the only thing it told me to do was add:

randomTurn

So I was sort of confused. But towards the enf of class I gave up pondering the effects of my new method. I did manage to make a crab eat: llama's, worms (of course) and a fireball.

Mar 31, 2011

March 31 2011

Stupid Crabs. They don't even know when food is in front of them.
So I worked more with Greenfoot, I actually got a lot done. I was working in chapter 3.3 and I was supposed to to make the crab eat the worm. At first when I read the book it asked me to open the animal class to check if the statements were true. They were. Then it asked me to put a code into the source code view. I thought it wanted me to put the code in the animal class, so that's where I put it.


But then whenever I added a worm, the crab just walked right over it. I tried changing the code (turned out I had some extra spaces) but that didn't work either. I put had put the code in the wrong place and changed that too. So I called Mr. Daly and he told me the code needs to be put in the crab class. I did this. But it still would not work.
After about 5 minutes I figured out that by putting the code in the wrong place the first time, I messed with the one that was supposed to be there. So I opened a new file and it all worked.

Mar 29, 2011

March 29 2011

GREENFOOT AND 100 MILLION CRABS SPINNING IN CIRCLES!!!!

Ok, I didn't do much today, but I learned a lot. Because I finished the video, I was able to start and not stop working on Greenfoot. I got to about the middle of chapter 3. I also learned the command:

( greenfoot.getRandomNumber(100) < 10 )

I used that to make the crab go in random directions rather than a straight line. Before I continued I added a whole lot of crabs (Michael taught me if I hold down shift I can clone the crab) and then I had a teeny army of crabs going in random squiggly lines bouncing off the edge of the world.

There were a lot more crabs, but I forgot to take a screenshot and my mac doesn't have the crab scenario.

Mar 25, 2011

March 25 2011

Ok. Today Michael and I FINALLY FINISHED THE VIDEO!!!!!

It took us forever, well three or four days, to make. This is because I don't know adobe premier pro completely and I wasn't really sure about the audio mixing. But now that it is done I can get back to green foot.

I left off on chapter 1.5 because the first fur parts of the chapter is mostly reading. But now I'm ready to start learning computer language.


anna

Mar 23, 2011

End of Quarter

End of Quarter March 2009

Please answer the questions fully in the spaces below.

Name

Anna Moritz

Module

Greenfoot/Premier Pro

Has the atmosphere in the class changed since the first half of the quarter? How has it changed?

Yes. At the beginning I was more focused on video editing, but I would like to take AP computer science next year so I Started with Greenfoot.

How have your experiences been different in the second half of the quarter? Are you more or less satisfied with your progress? Are you doing more of less work out of class?

I'm less satisfied because I haven't finished many projects. Because it was so difficult to get everyone to cooperate and I had to quit the video.

What advice can you give to students who are about to start on the module that you are just finishing? What can you say that would help them have a more effective learning experience?

My advice for newcomers is to pick a project and stick to it. They cant pick a hundred things to do per class. One tutorial, one program etc...

What will you have achieved by the end of the module? What will you have learned? What projects will you have completed? What have you learned about yourself as a learner.

I will have learned:

Greentfoot

Adobe After Effects

Adobe Premier Pro

I have completed:

Two Videos

Watched a lot of tutorials

Filmed but did not edit a video

Got to chapter 1.5 of greenfoot

Imagine that you want to employ a person with the kind of information technology skills that you have. Write one paragraph describing the skills that you (as the employer) are looking for.

Start the paragraph like this..

Our company is looking for someone who…..

Our company is looking for someone who is capable of editing a video in a short amount of time, can add basic effects and possibly do camerawork.

Have you contributed in any ways to the other members of this learning community?

I helped Yejun a little when she was working with photoshop and now I am working with Michael on a video.

What module would you like to take in the second quarter? Please explain your choice.

Computer Science/Digital media. I still haven't decided because since I am working on Michael's video, I have not been able to progress in greenfoot.

Your teacher will be entering a grade-in-progress in PowerSchool for end-of-quarter (mid-semester). He will be considering your performance in terms of the assessment guidelines. At this stage he will be asking about the extent to which the statements below apply to your performance in the course.

Highlight the word(s) that you think describes your performance.

Look at the statements in the left column. Comment on your performance in each area. Use the questions as guidelines.

Typically this student makes effective use of class time by increasing his/her competence and confidence using software that he/she has chosen.

Are you using your time effectively? Are you learning each time you come to class? Are you becoming more competent and confident?

inadequate adequate good outstanding

(highlight and comment)

I try my best to stay on one project, but recently I have not been able to progress because I find it difficult to work with other people when editing a video which I am currently doing.

He/she attends all class sessions, coming and leaving on time, making sure to make up missing time by working during free periods or at home.

Have you missed class this quarter? How many times? What have you done to make up lost time?

inadequate adequate good outstanding

(highlight and comment)

I haven't missed any classes except for the very first day when it wasn't on my schedule.

His/her oral communication during class is focused on the learning tasks that he/she is engaged in.

Are your conversations in class focused on your learning tasks?

inadequate adequate good outstanding

(highlight and comment)

Ok, I may procrastinate with Yejun a little...

His/her written communication (logs, e-mails, and reports) are done according to deadlines and contain enough information for the teacher to understand what he/she is doing, what kinds of problems he/she is facing and how he/she feels about his/her learning experiences.

Are you consistently doing your blogs? How does your BLog keeping compare to the first half of the quarter? Are you providing more details of your learning? Do you take care to express yourself clearly and use conventional grammar and spelling?

inadequate adequate good outstanding

(highlight and comment)

I try to make sure my blog is done sometime on the same day I have class. But I do write about problems and what I a working on.

During class he/she remains focused on the task at hand and generally respects the integrity of the learning environment for all students.

Do you stay on task throughout the block? Do you effectively resist temptations to use the computer for unrelated activities (other homework, e-mail, facebook, youtube, sports results, music etc.)? Do you resist temptations to takes unnecessary breaks, arrive late, leave early?

inadequate adequate good outstanding

(highlight and comment)

I think I stay on task most of the time. I never go on facebook while in class, I'm usually too busy trying to fix whatever is wrong with that class.

He/she has positive attitudes towards acquiring technology skills, and makes a conscious effort to acquire new skills and apply them in meaningful ways.

Have you found ways to apply your skills beyond classroom exercises?

inadequate adequate good outstanding

(highlight and comment)

I really like to learn about these types of skills. I used my Premier Pro skills for one of my english projects.

He/she is an independent learner, who tries to solve problems by himself/herself, but finds effective ways to overcome problems using a variety of other resources.

Have your become more independent as a learner? What resources are you using to learn effectively?

inadequate adequate good outstanding

(highlight and comment)

I have a lot of trouble with computers, but I think I fix most of them. I also use online tutorials to help me do something, eg., atomic learning.

He/she is respectful of all members of this learning community and his/her behavior is in compliance with all school policies, in particular the AUP (Appropriate Use Policy) and Academic Honesty Policy.

Are you respectful, appropriate, honest?

inadequate adequate good outstanding

(highlight and comment)

I think so.

Your grade will take into account your performance in the above areas and also..

The amount of documented learning time that you have spent in and out of class.

The amount and/or depth of material that you have covered

If full attendance, coming on time, being on-task, and leaving on time (not including any work outside class) represents 100%. Estimate what time percentage have you put into this class? (take into account any documented work that you did in school outside class time, or at home)

95%. I forgot my blog once or twice, but I made it up as soon as I remembered.

To what extent will you have completed your module by the end of the quarter? How far did you get? What chapters did you cover? What projects have been completed?

I think I finished my Digital Media module. Except for more practice I learned most of what I needed. Of greenfoot, which I just started, I reached chapter 1.5.

What was your last grade-in-progress (see PowerSchool)

To what extent does this grade reflect your overall performance

A - (95) - Outstanding

B - (85) - Good (the descriptions above apply to me)

C -(75) - Adequate

D - (65) Inadequte

88. I think it is a good grade. My blogs aren't very detailed.

This is an appropriate course for this student and the performance of the student is such that it can be said that the student is meeting the standards well. His/her work, on the whole, is good.

How would you rate your overall performance during the quarter?Please explain.

inadequate adequate good outstanding

(highlight and comment)

I think my performance was good. I got a few videos filmed and editied, and O started greenfoot for AP Comp. Science. I think i got a 9/10.

What could you do to improve your performance in the second quarter?

Have MUCH better blogs.

What module are you interested in doing during the second quarter?

Computer science, maybe a little more digital media.

Is there any other information that you would like to provide your teacher to help decide on your grade-in-progress for the quarter?

Nope.