Category Archives: general

Twitter job searching

Social media is presenting new ways of not only finding like-minded (and contrary) folks, but finding others that need the skills or products that you possess. Interesting article on using twitter to find a job. It focuses on using the twitter hashtag.

http://mashable.com/2010/10/16/twitter-hashtags-job-search/

Assessing the PBCL process

This post is a duplication of one I made in the makingLearningReal LinkedIn group discussion on assessing and grading student work in a Problem-based Case Learning (PBCL) classroom experience.

First, let me say this process is in a constant state of evolution for me. Placing my students in a situation where they have to solve problems and watching how they handle it is one thing. Giving them appropriate feedback and assigning a grade is something else.

As in any assessment process, the key for me is understanding what the outcome should look like. If I have a clear vision in my own head as to what the purpose of the class is and what I want my students to get out of it, then tailoring that experience and assessing the behaviors are more straight-forward. Creating a rubric is the best tool I use. It helps me to be clear about the target behaviors that are important and prioritize them.

I find that my students run the gamut as far as skills go. Some are good designers, or good coders, or born leaders. Others, not so much. Is my class designed to assess coding skills, design skills, team-work skills, leadership skills? Not really, although each of those skills are important. My students are exposed to hands-on projects through-out the program (Web Design and Multimedia). What many have NOT done is take a client project from initial concept to deliverable. That’s the experience I want them to have. I also want them to self-assess their strengths and weaknesses. A design team has many players and roles to be filled. All of them have something to bring to the table. The challenge is for them to find their strengths and learn how to highlight and exploit them. Having that self-knowledge before walking out the door and approaching a client will do much for helping them navigate their blossoming professional careers.

I accomplish this through weekly status reports that each student submits, the creation of a client proposal which outlines everything from deliverable, responsibilites, liabilities, scope, limitations, indemnification, and weekly benchmarks. They create and maintain a dynamic task-list which identifies the tasks, who owns them, and their status.

Starting three weeks prior to the end of the semester, each is required to create a Learning Report which addresses a number of criteria including: what role(s) did you play, what challenges did you encounter and how did you overcome them, what strengths are you bringing to an employer, why should you graduate from the program, list the classes you took that helped you complete the client’s project and describe what you learned and how you applied it. The Learning Report has to be in media that demonstrates their knowledge of their concentration; i.e. web designers create web sites, multimedia designers create podcasts, videos, Flash presentations, Prezi presentations.

How do I grade it? Just like I would grade anything. Did they address the instructions? How well? Was it done on time? Was it submitted correctly?

Scott McCloud

A great TED video featuring Scott McCloud.

Adobe overview of HTML5 vs Flash

Following is a good Adobe overview of current web and mobile technologies that the typical web designer needs to be aware of.

Firefox and the status bar

In the course text we use for our beginning HTML text, the author has you write some text to the status bar to demonstrate how to work with Event Handlers. As you have probably noticed by the now, the status bar code does not seem to work with Firefox. The reason is that the option is turned off by default. See the following URL for more information.

https://developer.mozilla.org/en/DOM/window.status

According to Mozilla, “This property does not work in default configuration of Firefox and some other browsers: setting window.status has no effect on the text displayed in the status bar. To allow scripts change the the status bar text, the user must set the dom.disable_window_status_change preference to false in the about:config screen.”

To modify the Firefox about:config screen, type in “about:config” in the address field. In Firefox 3.6.3 you will be presented with a warning that changing the configuration setting could damage the application. Click the “I’ll be careful. I promise” button.

You will be presented with a list of application system variables and their settings. At the top of the page, you’ll see a filter (search) field.

Type in “status.”

A number of configuration settings will show in the filtered results. In that list, look for dom.disable_window_status_change in the list of settings. Notice the value is set to false. This means the window status cannot be changed.

Double-click on that setting. You notice that the value changes to “true.”

Close out the window so you do not modify any other settings by accident.

You should now be able to change the status bar using Javascript event handlers.