My Thanksgiving Story: Writing/Telling Guide

My Halloween story guide was such a hit, I decided to create one for the Thanksgiving theme!  It follows the same format just with different graphics for the theme!

First, students can select from choices for the major story elements (characters, setting, problem, solution).  By doing so, this can help elicit the discussion of the Thanksgiving story and comparing Thanksgiving then and now.
 Then there is a page for them to go into more detail about each element.

Next, students can write a draft using story sequence.
Finally, students can write their story and make a picture.  I like to have them create a picture of the main idea to help practice that skill too.

I hope you find this activity useful like the other one!  You can grab it here at my TpT store!

Thanksgiving Wh- Question Board Game FREEBIE!

Happy Halloween!  It is the day to use up all your Halloween materials (if you are work today).  I am sad that I have been out all week due to Sandy and unable to use all the materials I created/purchased/found.  I guess it will have to wait until next year!

I decided to get ahead and plan for the next holiday!  I created my fan favorite freebie, my wh- question board game!  I used Boardmaker to create it (didn't require Internet to make it was a bonus).
Grab your fun copy of this freebie by clicking HERE!  Enjoy it!

UITableViewCell Using Interface Builder

Creating your own tableview cell could be such a hassle when you do it programmatically. To be able to follow this tutorial, you need to know how to add a tableview first. Refer to the previous tutorial on how to add a tableview if you still don't know how to add it yet.
Link: http://iosmadesimple.blogspot.com/2012/10/adding-uitableview-tutorial.html

Let's start!


1. Add a new file of subclass UITableViewCell.


2. After adding a new UITableViewCell class, only .h and .m files are created. So, let's add another file, an empty Interface Builder Document (xib file). Name it with the same name with our .h and .m files (to avoid confusion).

You should have these files in your project navigator.

3. Drag a tableview cell to your xib file, and change its class to SampleTableCell (the one we added a while ago).

4. Start customizing your cell. Here in my example, I want to make a feed cell (One with profile pictures, name, status, date <-- something like that):

  1. I changed the height of my cell to 90 (instead of the default cell height which is 44).
  2. I wanted to put a background image to my cell, so I added a UIImageView with size same with my cell. (I added an image to the project for my cell background.)
  3. All the other UIs are placed on top of the UIImageView (cell background). I added another UIImageView for the profile pictures. 

  4. Added a UILabel for the name, status and date.

My customized cell currently looks like this. Nice thing of doing it here in Interface Builder is that you can easily manipulate the positions, and other attributes of your objects.

3. Make an IBOutlet property of the objects that might change dynamically. In our example, our profilePicture object may change dynamically, depends on who posted what, the Name, Status, DatePosted. But the background image doesn't really change no matter who posted what, so we don't have to make an IBOutlet property of the background UIImage. And remember to synthesize these objects.
//Inside .h file

@property (nonatomic, strong) IBOutlet UIImageView *profilePicture;
@property (nonatomicstrongIBOutlet UILabel *name;
@property (nonatomicstrongIBOutlet UILabel *status;
@property (nonatomicstrongIBOutlet UILabel *datePosted;

//Inside .m file
@synthesize profilePicture;
@synthesize name;
@synthesize status;
@synthesize datePosted;


4. Connect these outlets to your objects in your xib file.

5. Create a new File, subclass of NSObject. This file will serve as our "User" object. This class must hold the important information we need, like the profilePicture filename, Name, Status and DatePosted.
//User.h file

@interface User : NSObject
@property (nonatomicstrongNSString *avatarFname;
@property (nonatomicstrong) NSString *name;
@property (nonatomicstrong) NSString *status;
@property (nonatomicstrong) NSString *datePosted;
@end
//User.m file
@implementation User
@synthesize avatarFname;
@synthesize name;
@synthesize status;
@synthesize datePosted;
@end



6. Create your user objects and put them all in your items Array. (This part is found in step 7 from the tutorial link above).
//I created five users. Sample code...

    User *user1 = [[User alloc] init];
    user1.name = NSLocalizedString(@"Jennifer Eve Curativo", @"name");
    user1.status = NSLocalizedString(@"Currently addicted to Hi Fi Camp - It's a Japanese band, by the way. ;)", @"status");
    user1.datePosted = NSLocalizedString(@"October 31, 2012 5:30PM", @"date Posted");
    user1.avatarFname = @"jen.png";

//Put them all in our array list

items = [[NSArray alloc] initWithObjects: user1, user2, user3, user4, user5, nil];


7. Before we proceed, change the cell's Identifier. We need it later.

Remember the Datasource and Delegate methods of our tableView from the previous tutorial? We are going to modify/add some methods.

8. Remember that our customized cell's height was changed to 90, right? It has become taller than the usual height of our tableViewCell. Add this method so that our tableView will know that the cell's height was changed.
//If we did not change the height of our cell, we do not need to add this method.

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
    return 90.0;
}

9. Lastly, modify this method cellForRow. This is the part where we tell the tableView that we will use our custom cell.

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    static NSString *CellIdentifier = @"MyFeedCell";
    SampleTableCell *cell = (SampleTableCell *) [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    
    if (cell == nil) {
        NSArray* topLevelObjects = [[NSBundle mainBundle] loadNibNamed:@"SampleTableCell" owner:self options:nil];
        for (id currentObject in topLevelObjects) {
            if ([currentObject isKindOfClass:[UITableViewCell class]]) {
                cell = (SampleTableCell *)currentObject;
                break;
            }
        }
    }
    
    // Configure the cell.
    User *user = [items objectAtIndex:indexPath.row];
    cell.profilePicture.image = [UIImage imageNamed:user.avatarFname];
    cell.name.text = user.name;
    cell.status.text = user.status;
    cell.datePosted.text = user.datePosted;
    cell.selectionStyle = UITableViewCellSelectionStyleNone;
    return cell;
}

10. Hit Run!






Listening For Details Variety Pack!

I worked hard before my power went out to get a listening activity together.  Many that purchased my Listening for Details Halloween theme requested more activities like it.  I decided to make a variety pack!

In this file a variety of activities to work on listening skills:
 
-What’s in the treasure chest?:  Students listen to clues to guess what the pirates have in their treasure chest
-What’s being served?  Listen to the clues to know which food is going to go onto the plate next.
-Fun on the Farm: Listen to the clues to know which animals are in the barn.
 
-Be the detective!  Each student gets a coloring page.  They listen to the clues provided to guess which detective is being discussed.  They then must color the detective the color used in the description heard.

 

-Go for the gumballs: Listening for details cards with a board game.
 
-Dino Dash Listening for Absurdities: Card game to practice listening for details (incorrect ones for that matter)

You can access this at my TpT store!

سبب انتحار مصطفي كامل بعد سماع برنامج صوت الحياة


سبب انتحار مصطفي كامل بعد سماع برنامج صوت الحياة
الخبر هزار  دا بس من التريقة على الصوت
على مدونة شيفو اون لاين
لدخول المدونة اكتب فى جوجل
مدونة شيفو اون لاين
او اضغط على اللينك التالى
 

برنامج ذا فويس The Voice احلى صوت الحلقة 7 - مرحلة المواجهة


مشاهدة برنامج ذا فويس احلى صوت الحلقة السابعة- مرحلة المواجهة
 سبتمبر 2012 / شبكة الصين / يعد ذا فويس "أحلى صوت" النسخة العربية من برنامج المسابقات الغنائي الهولندي العالمي «The Voice» الذي صممه جون دي مول وروئيل فان فيلزن عام 2010 وطورته شركتا سوني وتالبا. وانطلقت النسخة العربية للمسابقة في 14 سبتمبر 2012 على قناتي "إم بي سي ـ1" و"أل بي سي"، ويقدمه الممثل المصري محمد كريم والممثلة اللبنانية نادين نجيم التي تستعرض في حلقة خاصة كل ما يدور في كواليس حلقات البرنامج. ويصور البرنامج في استوديوهات القناة في منطقة ذوق مصبح "جونية" بالعاصمة اللبنانية بيروت، وسيحصل الفائز بلقب أحلى صوت على فرصة تسجيل ألبوم كامل وعقد عمل مع مجموعة يونيفرسال الميوزيك العالمية إلى جانب شركة «سوني تي في برودكشن» وشركة بلاتينيوم المسؤولة عن تسويق الإنتاج الفني للبرنامج.
على مدونة شيفو اون لاين
لدخول المدونة اكتب فى جوجل
مدونة شيفو اون لاين
او اضغط على اللينك التالى 
http://chievoonline.blogspot.com
انتظرونا فى الحلقة الثامنة 8 من برنامج ذا فويس

مشاهدة برنامج صوت الحياة الحلقة الثالثة اون لاين يوتيوب


مشاهدة برنامج صوت الحياة الحلقة الثالثة اون لاين يوتيوب
حصريا برنامج صوت الحياه تقديم هاني شاكر وسميره سعيد وحلمي بكر الحلقه الثانية متجدد باستمرار
على مدونة شيفو اون لاين
لدخول المدونة اكتب فى جوجل
مدونة شيفو اون لاين
او اضغط على اللينك التالى
 

مشاهدة فيلم الرعب Eaters Rise Of The Dead اون لاين مترجم


مشاهدة فيلم الرعب Eaters Rise Of The Dead اون لاين مترجم
 مشاهدة فيلم الرعب الدموى الرهيب Eaters Rise Of The Dead للكبار فقط مشاهدة مباشرة اون لاين
على مدونة شيفو اون لاين
لدخول المدونة اكتب فى جوجل
مدونة شيفو اون لاين 
او اضغط على اللينك التالى

مشاهدة فيلم الاكشن Here Comes the Boom 2012 اون لاين مترجم


مشاهدة فيلم الاكشن Here Comes the Boom 2012 اون لاين مترجم
 مشاهدة فيلم الاكشن والكوميديا الرهيب Here Comes the Boom 2012 مشاهدة مباشرة اون لاين
على مدونة شيفو اون لاين
لدخول المدونة اكتب فى جوجل
مدونة شيفو اون لاين 
او اضغط على اللينك التالى

مشاهدة فيلم الاكشن والجريمة Alex Cross 2012 اون لاين مترجم


مشاهدة فيلم الاكشن والجريمة Alex Cross 2012 اون لاين مترجم
 مشاهدة فيلم الاكشن والجريمة الرائع Alex Cross 2012 نسخة CAM مشاهدة مباشرة اون لاين
على مدونة شيفو اون لاين
لدخول المدونة اكتب فى جوجل
مدونة شيفو اون لاين 
او اضغط على اللينك التالى

Introducing, Rainbow Sentences App

While my computer/Internet is running through the generator, I figured I would post a review!  Going bonkers over here in NY, no power, no work, no nothing! 

Anyway,  the generous people over at Mobile Education Store, provided me with a code to review.  However, the thoughts and opinions are all mine!

This app uses the similar format/layout as their other apps.  You can create a user profile:
Adjust settings for that user:
I prefer to use audio instructions and correct answer reinforcement.  When incorrect, it prompts students to try again.  The line and word coloring is great when first starting out.  It helps provide a visual cue for students for placement in sentences.  I will demonstrate the different look later on!

Level 1: Basic sentences with only two parts.  Students are provided with a picture and sentence parts.  They must place the parts in correct order to make a sentence.

As you can see above, by setting the color cues "on", it provides students with assistance to allow them to be successful and independently.  After the sentence is produced, students can click "play" to hear their sentence or click "I'm done!" to move on.  They could also click "play lesson" which is great for students unable to achieve task.  I recommend showing this lesson first to introduce concept.
Either after lesson or if you clicked "I'm done" students can then record their production of the sentence.  This is great because it taps into the expressive language.
Students are rewarded with puzzle pieces as they get correct responses.  The first sentence is rewarded right away.  Then students must do a sequence of correct responses.  This just makes this activity more fun and motivating!
Level 2: Students are provided with a picture and a three part sentence to put in order.
If you chose to show the lesson.:
Students are provided instructions on the different parts of a sentence and their purpose.

Level 3: There are four parts of the sentence used!
If you turn off the color cues:
This feature is great when you know students comprehend and want to make sure.  Again students are rewarded in each level with puzzle pieces:
Like all of their apps, if you click "stats" at any point you can see how the student did on all levels.
If you click "archives" you can see the recordings produced by your students.  They are saved until you delete them.

Things I like about this app:
  • Works on receptive and expressive language
  • Teaches students about structures of sentences
  • Uses color coding to help cue students
  • Motivating with puzzle piece feature
  • Allows students to correct incorrect responses and reinforces correct ones
  • Fun motivating sentences and pictures
  • Easy to use and navigate
  • Data collection and ability to email reports for safe keeping.
Things I would like to see in an update:
  • Ability to work with multiple students at a time.
  • A way to decide which sentences to use in a session.
Overall I think this is a great app with wonderful potential for SLPs.  A little pricey at $7.99, you can learn more about this app by visiting iTunes.

مشاهدة فيلم الدراما العائلى الهولندى Kauwboy 2012 مشاهدة مباشرة اون لاين


مشاهدة فيلم الدراما العائلى الهولندى Kauwboy 2012 مشاهدة مباشرة اون لاين
على مدونة شيفو اون لاين
لدخول المدونة اكتب فى جوجل
مدونة شيفو اون لاين 
او اضغط على اللينك التالى

مشاهدة فيلم الرقص الامريكى Battlefield America 2012 اون لاين مترجم


مشاهدة فيلم الرقص الامريكى Battlefield America 2012 اون لاين مترجم
مشاهدة فيلم الرقص والدانس الشبابى الرائع Battlefield America 2012 مشاهدة مباشرة اون لاين
على مدونة شيفو اون لاين
لدخول المدونة اكتب فى جوجل
مدونة شيفو اون لاين 
او اضغط على اللينك التالى

مشاهدة فيلم الرعب Cockneys VS Zombies 2012 اون لاين مترجم


مشاهدة فيلم الرعب Cockneys VS Zombies 2012 اون لاين مترجم
على مدونة شيفو اون لاين
لدخول المدونة اكتب فى جوجل
مدونة شيفو اون لاين 
او اضغط على اللينك التالى

مشاهدة فيلم The Campaign 2012 اون لاين مترجم

مشاهدة فيلم The Campaign 2012 اون لاين مترجم
على مدونة شيفو اون لاين
لدخول المدونة اكتب فى جوجل
مدونة شيفو اون لاين 
او اضغط على اللينك التالى

مشاهدة فيلم الاكشن والخيال Universal Soldier 2012 اون لاين مترجم


مشاهدة فيلم الاكشن والخيال Universal Soldier 2012 اون لاين مترجم
 مشاهدة فيلم الاكشن والخيال العلمى الرهيب Universal Soldier 2012 للنجوم فاندام و سكوت ادكينس و دولف لندغرين للكبار فقط مشاهدة مباشرة اون لاين
على مدونة شيفو اون لاين
لدخول المدونة اكتب فى جوجل
مدونة شيفو اون لاين 
او اضغط على اللينك التالى

مشاهدة فيلم الاكشن Fire.with.Fire.2012 اون لاين مترجم

مشاهدة فيلم الاكشن Fire.with.Fire.2012 اون لاين مترجم
على مدونة شيفو اون لاين
لدخول المدونة اكتب فى جوجل
مدونة شيفو اون لاين 
او اضغط على اللينك التالى





Candy Corn Question Cards, freebie

I created a fun little freebie to work on wh- questions.  Enjoy this one!
All you have to do is save, print, and laminate!  Use with any motivating game/activity.  Click here to grab this freebie!

Wendi's Magical Voice, book review

I recently ordered a new children's book off the Stuttering Foundation website. 
I used this book with my fluency student and he loved it!  This story is adorable!  It teaches students that it is OK to be different.  It also helps elicit conversations about what communication situations may be easy or difficult for them.  While reading this book out loud, students get to "act out" stuttering since the book incorporates the repetitions and prolongations in the character's dialogue.  My student was laughing!  He loved it!!  For $5.00, I now have a book in my library perfect for my fluency students!  Click here to learn more about this book! 

Anyone else try this book??  What do you think?! 

Articles: A & An...Review & Giveaway!

Electrokite has developed a fun and interactive app to practice learning and using articles A and An.
 This app is very similar in format to their other apps.  This company originally produced activities for interactive whiteboards and their apps follow that similar format.  There is a tool bar across the bottom which enables users to access all the features.
 By clicking the light bulb, students are provided with a visual of the rules.  If you click the robot, you get a verbal presentation.  Then, by clicking the game controller, students can practice using the articles.
 Students are rewarded when correct and have an opportunity to try again if incorrect.
 There is a pencil and eraser feature which is great for prompting students to assist them.  I chose to use the pencil to underline the noun the remind students where to look.  By clicking the "next" arrow, students can continue to the next sentence.
 By clicking the "paint" you are brought to this page seen below.  There are plenty of nouns and on the mountains are the words "an" and "a."   Students can drag those words to the correct places.  By clicking the refresh button students can try again.  I made students use the pencil to underline the beginning sound of the following word to cue themselves.
 At any point, students can prompt themselves by clicking the "key."

To learn more, visit iTunes.  The developers also have provided follow-up worksheets on their website!

Now you can win your copy of this great $0.99 app:

a Rafflecopter giveaway

I created a fun download to use with this app.

This file includes a visual to help with understanding and recalling the rules:
There is a card game to practice using articles.  Students select a card and they must use their understanding of the rules to complete the sentence.  Once they do, they can hold onto their card.  If students pick the "funnel cake" card, they get an extra turn!  The student with the most cards at the end wins.

 At the end, there is a sorting worksheet to practice this skill.  This can be used as homework or review at the end of a session.
You can access this activity at my TpT store.