Pages

Showing posts with label cpd. Show all posts
Showing posts with label cpd. Show all posts

18.4.09

This week I have been mostly playing with Joomla!

Not bad I suppose its only taken 8 months to get back to this. The summer holiday was a busy time for me, one where I set out with every good intention of "getting to grips with Joomla" or at least how it works, unfortunately other deadlines kept me busy too and the project was shelved in the interests of completing my dissertation.

Why Joomla? Well essentially because this platform has been chosen to host, manage and develop our new campus web site. Having spent considerable time managing and establishing our exisiting primary school website as a resource, I was keen to engage with and learn the quirks of this new environment, in order to think about how to integrate this existing space with the projected new.

Joomla is an open source content management system. My personal experiences of building pages for the web have developed through using tools such as FrontPage or Dreamweaver to build and organise html pages before uploading work developed on my desktop to the host server by FTP. As such I might still be considered on so many levels a beginner. Joomla is a very different onion and experience for me in that it is a server based solution using a data base, among other less than familiar tools to manage and organise content created within it. I blog, code a bit when I need to, but have never really taken the plunge and dabbled too far behind the scenes so to speak. In beginning this project I therefore had some personal reservations about the experiences I was bringing to the process, how useful they would be and considerable trepidation about the gradient in the learning curve I would need to follow. I was however determined to have go. As with the students we work with I needed to start from the things I know, and a establish a frame to hang my new learning on. This post then represents my think around, and how I have tried to visualise and organise my thoughts comparing previous experiences while trying to relate these ideas to what was happening as I worked on and played with my experimental site and Joomla this week.

A Clean Slate

In beginning the project again I decided to start with a clean slate,

  • I deleted my previous installation,
  • Downloaded xampp afresh and the most recent version of Joomla.
  • And decided to devote a little more time to watching these tutorial videos than I did last time.

Working through the process outlined in the videos,

  • I set up the server and data base locally on my laptop :o),
  • Installed Joomla :0)
  • And followed the wizard like process to get the space ready to host my site:0).
A Different perspective on a familiar Viewpoint

Following the video tutorials in sequence the next part of the process was to set up sections and categories for the site. I wondered what this was all about initially, and it has taken a while for me to get my head round this.

My previous work developing our school site has been visual, each page built by hand, ocassionally using themes but usually by editing and revising templates and using these to frame and include content.

In essence, Frontpage enabled this process for me by combining the affordances of a Windows Explorer type environment with a wordprocessing like tool. A Folder pane allowing my "local server" or "site" to be managed like a hard drive. I could visualise and then create the folder tree where I wanted to store the files for each section of the site in response to the navigation structure I was physically constructing on my home page. The WYSIWYG (What you see is what you get) editor (the wordprocessing element if you like) allowed me to create the hyperlink and navigation structure for the site on the index page side by side and corresponding to the folder structure for the site. Using familiar drag and drop processes I could also copy, paste, open and save files as when editing or in reorganising the space.

In trying to understand how Joomla works I have been trying to reframe my thoughts within my existing model, this is probably really obvious to everyone else, so forgive me as I say I think I've just about cracked it even if an oversimplified view.

Pages in Joomla managed sites do not exist as pages per se, but are compiled through a data base when a visitor arrives at the site and begins their navigation. Administrator defined categories and sections within the data base, allow this to happen. Approaching site set up I decided to try to visualise these categories as if they were folders in my existing tree. First of all setting up categories, broad groups that match the folders and subfolders I previously created for our existing site, but modifying some for clarity. To allocate articles to the correct pages within these categories, I created sections using first of all the category list I created enabling each broad space to have its own page before adding further sections that correspond to other pages I would like within each section of the site.

Why was this so important? I guess this was the question I was asking myself when I began the project? It all seemed a bit back to front in relation to how I was used to working. I needed a way of seeing. The menu system within Joomla drives the page creation or generation process. To compile "pages," through the data base a menu manager is used to create items by linking these to categories and then sections, (in my minds eye corresponding to a folder and a page). Clicking on a hyperlink leads to a request for the data base to behind the scenes pull all these elements together along with style sheets and such to present the content as a page in a visitor's browser.

Where Next For Me?

The next phase for me if my model works is to begin exploring with colleagues the things they would like the site to include and perhaps what they want from it, setting up formally a space based on categories and sections that arise as a result.

Creating user accounts for colleagues and classes will then enable them to log in and use a WYSIWYG editor similar to those they have used in our existing VLE and blog spaces to write, upload files and contribute directly to the content and maintenance of the site, using the sections and categories defined for them eg year4/class name, to post items to the page allocated to it.

Additional modules can be plugged into the space for example breadcrumb trails and RSS feeds to aid navigation or subscription. The addition of common themes through use of shared style sheets will enable a corporate feel for the campus site to be added providing the whole with a consistent look and theme for pages generated across the space.

What has really excited me as I played this week was the ability to add items such as Windows media video directly to a page, and how with the addition of rss feeds, pages within the site could be allocated to support podcasting, while through the use an aggregator content syndicated across the site could be drawn together as a single feed published on the front page through a latest news module.

I still have a lot of playing and exploring to do and apologise wholeheartedly if what I say here is obvious to some or even overly simplistic. I'm not entirely sure what my feelings are right now about the solution as a whole, it does not provide for all of our needs as I see them. I am still wondering how much of what is provided could be achieved through other platforms such as self hosted blogs with the tweaking of design templates. For me the process has been a useful experience, and one I am sure I will be able to draw on further as we work with and develop use of online learning tools for ourselves.

17.2.08

Expanding my Horizons With LOGO

Thanks to Andy Roberts for his comment a couple of weeks ago on my post Logo Routines: Building Polygons, where he said,

"To differentiate for the top stream it should be possible to teach the concept of parameter substitution so the challenge would be to write a procedure called Polygon which draws one of any number of sides depending on the number passed across. Most class teachers will stop before getting to this stage, which is a shame because for those who 'get it' a whole new world of constructionism opens up.

I have to admit to being one of those class teachers who never got to this stage, so having had a browse around and a bit of a play, here is my first LOGO procedure using parameter substitution routine, is that the right term Andy?!* It is for drawing a polygon of x number of sides as suggested:

To polygon :SIDES
REPEAT :SIDES [FD 100 RT 360/:SIDES]
END

So if I now if I want to draw a hexagon, I can input

polygon 6

The procedure, substitutes sides with the number six, and calculates the turn size, by dividing 360, by the number of sides I want the shape to have.

If I now input

repeat 6 [polygon 6 rt 60]

I can create a pattern like this..I guess my next adventure will be to create a "pattern" procedure or write a program that will allow me to substitute not only the :side parameter in the polygon procedure, but also to include a series of turns to output my pattern drawing on the polygon procedure. Mmmm! Looks like I am all set for a bit of a personal engagement to expand my LOGO programming. Will have a crack at this while preparing my unit of work with the Probot for my students. Maybe you can teach an old dog new tricks!!!

16.12.07

One Year Old Today.. Thank You

Well this is it, today is my blog's first birthday, and I wanted to take the opportunity to thank everyone who has visited, shared this space with others, offered advice, kind words and support.
The space was originally set up in response to coursework requirements at university, and if I am honest for a long time I struggled to find a purpose for it and so it lay abandoned and lonely. In September 2006, I found myself in the rarest of positions, I was without a class of my own, covering PPA with a colleague, while teaching ICT as a subject specialism across the school, in key stages 1 and 2 with the occasional adventure with foundation stage students. My learning took a steep curve, new strategies emerged or were required not only to manage students and their learning in the ICT suite, but also to share, store and evaluate their work, as well as opportunities to engage with tools first hand that I had not used previously. This space since last December, has become a valuable professional development tool, somewhere to think aloud, reflect upon, share, sometimes to sound off about but overall to log my thoughts, somewhere to wander and think about what might be, while celebrating the achievements of my students.

The tone and content may have changed a little since September with a return to the classroom full time and teaching and learning with a class of my own again but with this has come the opportunity to add continuity, whole curriculum context and the use of a base to apply and reflect on how earlier thoughts work during the day to days of classroom life.

I often visit my Feedburner account curious to find out about my visitors, subscribers, what they are reading and what they are searching for when directed to my blog. I have been interested over the time I have been writing to find that a common search query that leads folk here, even if only for a brief stay, goes something along the lines of...

"ICT Recommended hours"

What I have found increasingly exciting however are the number of visitors who now arrive here, not searching for ICT related issues alone. Although being primarily my thoughts as an ICT subject leader, what I hope my blog offers are embedded situations and thoughts that leave visitors much less concerned with the recommended hours per week or per year students should spend doing ICT , but stimulate thought about how ICTs could be used differently as tools to support work across the whole curriculum.

I cannot imagine many sites being visited through the search string

"pencil paper glue recommended hours"

Looking back over the year to date, as a professional development tool, deciding to keep a blog has to be one of the best decisions I have made as a teacher. Keeping a paper based "learning log" or "diary," as I used to do does not draw the same level of support or common interest. The journey I have engaged in over the past 12 months has not been alone, but thankfully has been enhanced by the support of colleagues who visit, have offered comments, shared their thoughts or through their linking to this space have encouraged and enabled me to share my work and adventures with a wider audience. I would like to thank everyone who over the past 12 months has supported and encouraged me, through their comments and promotion of the space. Hopefully you will continue to visit through 2008 and beyond. Thanks, :o)

Now for a song, courtesy of ErFinanza, GreyWorldwide and YouTube

23.6.07

"Where's the Any Key:" Reflections on learning by a self professed IKEA Man

Learning Styles, is not a phrase to be snuffed at, The number of INSET sessions I have attended where, I work diligently through the analysis presented by the course leader, only to find my self summarised as the IKEA or Flat Pack Furniture (FPF) Man.

The IKEA or FPF man it seems can be characterised as one who takes home their flat pack, gets out the pieces and and then skillfully ignores the written instructions. They set about recreating from pictures, experience and memories, an object, based on how they think it is intended to look, and the functions they perceive it to perform. Trial and error, and problem solving play a large part in the creation of any object for the IKEA man. And rather than a bane I tend to see the characteristic as a boon. I have to say I am usually very pleased with myself when I am finished a project (eventually). The object looks right, it does what I want it to do, before I like those around me tend to notice the pieces I have left over. Obviously this would be of immediate concern if I had been replacing the wheel on my car, but as a teacher and designer for learning the bits left over tell me more about the process I have gone through and the gaps in my learning than the object I have created ever could. As a learner I should not have Homer moments, but feel able to persevere, comfortable with the idea of playfulness as part of creative engagement with learning and so rather than walk away from problem feel able to evaluate and build on my mistakes

Using this analogy, while thinking about Podcasting, a recent process and tool I began to add to my toolbox, I thought I would witter a bit as I try to explore the process I go through when working with software tools for the first time, and try to unpick why the FPF approach helps me when designing new ICT mediated projects.

Building furniture by this analogy I guess is a bit like building a jigsaw. The benefits of such an approach for a teacher designing for learning with ICT, is how it facilitates the exploration of software affordance as we go. In demos we can see what the designers or developers intended the kit to do, the picture on the lid, or sitting with the handbook by our side we can work through the kit step by step, and engage with how the software works. Understanding the steps involved, and the outcome intended however is only part of seeing how we can apply a tool in the classroom. At IKEA I might like the look of a particular kitchen, but it is unlikely that I would move it lock stock and barrel into my home, without first measuring it up, identifying what I wanted to do their or considering the location of utilities I couldn't move, and the appliances I would like to install. With ICT too, seeing the tool's potential affordances in the classroom requires a look beyond the technology and an exploration of how my intentions might be achieved with a particular group of students indeed how the kit or combinations of tools can be used to enable the creation of learning contexts which are meaningful to them.
As a learner, going back to my FPF Man analogy, I am also trying to demonstrate here that failure can be and should be an option, all that goes wrong need not be an end. The "bits left over" are actually not always a complete disaster but can be the beginning of an evaluation and review process, which reignites the learning process. For me they represent gaps in my knowledge and experience, as I begin to author relevance in my own learning, as well as that of the students. In engaging with the software as a learner I not only engage with the technical nuances but begin to preempt the difficulties I might have in implementing a software or hardware solution in the classroom. Often as a learner the bits left over represent whole new avenues for exploration, investigation and even exploitation, opening doors to what some may call creative use, but I would prefer to see as instrumentation, a process which many of our students engage with when given software tools to play or work with for the first time. This is also a process through which I often find new and diverse roles that an application might fulfill in addition to those it was intended to perform.
Planning for learning then is a design process and a learning process in itself, identifying what it is I want to achieve, and then seeking out the tools and processes that will enable me and my students to meet these ends. I think this is a prerequisite process if we are to unlock the creative potentials that ICT use in the classroom is purported to herald, if the learner is to be found at the heart of our planning, then we cannot avoid engaging ourselves as learners in the development of that planning. Embedding ICT is not souly about the technology, but the creation of contexts that enable relevance and meaning to be made from its use. I believe that the key to successful teaching with ICT is not about the delivery, or the technology but embedded in our preparation and design of the contexts for learning we intend to use, and the relationships we develop between ourselves and our students; and the tools and process that students engage in with us, in working towards the outcomes we wish them to achieve.
Working with a jigsaw it is easy to see at a glance which pieces are missing and where they go, though this is not always what we experience in the constantly changing landscape of the classroom. In the the collective mind of the classsroom the pieces and tools we are using may be clear to us, but what about the students, who throughout a session will be asking questions about what a particular bit is for? Where does it go? How does that bit relate to this and so on? Learning is not linear, but a networked series of iterative events. As a self taught ICT user, I am beginning to see how I come to terms with new kit, and for me being a Flat Pack Furniture Man has been a real asset in acquiring the skills and understanding I have. I have learned to take risks. As an adult building my new piece of furniture, and sitting next to the resultant pile of grommets and washers, I am more than happy to appraise the situation I am in, going back to the diagrams and those instructions asking questions similar to those above, looking for and evaluating the gaps in my project. Sometimes the pieces seem not to be too important, cosmetic touches perhaps when compared with how I will use it, and can be kept as is, but sometimes it means going back and re engineering parts of the object. Learning is messy, I do go to the instruction manuals and help files, but this is usually as a result of a question I have about how I get the kit to do something particular. I draw on my previous experiences in similar environments as I play, and then refer to the documentation to help me answer questions about unfamiliar aspects of the tool. This is perhaps something I do not share with many of my colleagues, whose experiences of ICT tools are less diverse. But why I feel the development of a generic skill base and tool box approach to the teaching and learning of ICT is more important in the development of Schemes of work, than the over use and product placement approach. With a generic skills base we can develop crossovers between environments and aid the making of connections between similar processes they use.
We can teach good habits and practices, such as cascade saving, a process which enables us to go back to a previous version of our project where everything was "working," and other skills such as copy and paste, or insert can then be used to recompile parts of the project, drawing on later saves if necessary, and so prior work and time is not entirely lost. When I learn new applications software and processes I intend to use in the classroom this is also how I tend to operate, and how I engage with the process of planning for learning with ICT. I tend to play with the bits in the box, using past experience and memories of the picture on the lid, or to identify how I would personally like to use the kit, I create relevance and contexts for use, frames around which I can make my play meaningful and productive, and on which I can hang my learning process. With the summer coming up I hope there will be enough time, to play with the loose end projects I have begun.
My big targets are to learn how to create podcasts for myself and begin to understand the hidden processes behind the publish button that make the difference between an uploaded audio to a website in Front Page and a subscription based serialisation. And secondly the biggy to complete my dissertation which will be cause for much celebration. No doubt the process will be messy, I will have bits left over, and may even discard tools as I go, but the journey will be as enlightening as the destination.

1.5.07

Wilbur Helps Out

Have just uploaded a few fledgling comic strip how tos, to our school website. If anyone is interested in having a look at these they can be found here. I would be grateful for any comments that might help me improve these. They are intended to support colleagues and older students in my school, so some sections are school and network specific, but perhaps visitors may also find them useful.

Tizz's Travels: Adults Having Fun With 2 Create a Story

Have just spent a couple of really good fun days helping a member of our support team get some really exciting things out of 2 Create a Story. It never ceases to amaze me just what this tool can do. We haven't quite finished, but I think this is probably my fault not bringing the right file home with me, but what amazed me was seeing the real sense of achievement when the work was done, and the surprise at what was possible using this apparently simple kit as a multimedia authoring platform.

I had this idea a few years ago of building a zoomable website which would enable students to navigate the globe, zooming in and out of places they were studying and adding information, or uploading postcards and images people sent from their holidays. This became a bit more realisable after visiting world atlas.com and took initial shape during a geography focussed book week when we used Where's Wally? as a context for a whole school project. When our Key Stage One Students adopted Tizz The Bear as character to roam the globe with them early in the Spring Term, this seemed too good an opportunity to miss to play with and develop this idea even further. As students have been covering geographical topics I have tried to encourage them and their teachers to contribute material they develop to this space. This hasn't always been as successful as I would like, but the aspect which is now just starting to take off, is the idea of travel logs, and sending postcards to school from Tizz. 2 Create a Story with the ability to save files in swf format, may just be that additional catalyst I have been looking for.


My colleague, spent the morning with me and a group of year 2 students, while we prepared a writing frame together using screen captured images from a video. She had originally decided to use PowerPoint, to present her version of Tizz's Travel Log, but having seen how easily this tool enabled the students to build image supported texts, create animation effects and to use sound files, she decided this might be the tool to help her get the best from the materials she had.


Using teacher the options we have set up the software to give access to the full set of drawing tools, and this also enables on right click a file import, copy and paste option on a pop up menu in the drawing space. So to set up her travel log, she firstly imported each of the image files she wanted to use, sequencing these to tell her story as she went. In the writing space she added supporting text, before moving to add her animation and sound effects. When you are in the flow, confidence is growing with a piece of software and you have identified a purpose for what you require it is amazing how adventurous you can get and to what lengths you are prepared to go to achieve this. You cannot really imagine a visit to spain without the appropriate music, and in her final slide, as Tizz reclines on his last day, she decided she needed some Spanish Music. This was not available in the sound effects so we needed to aquire some. She had brought along a CD, and with a bit of playing around we used Media Player to extract the track she wanted to use in .wav format. Using Audacity, she spent some time trimming and cropping her file to extract about 10 seconds from the file, before saving it. Using the import a file option in the sound effects menu, she then attached the sound file to the page. To say that she had never used either piece of software before, the outcome was amazing, and from her point of view unexpected. This also, again demonstrates just how powerful this tool could be as a multimodal resource in the hands of young children, with teacher preparation, and student access to, collections of theme based images and additional sound files.


Combined with a zoomable and tagged map created at Quickmaps.com, this document is currently displayed on Tizz's Travels, on our school web site. As I said above, I think I brought the wrong swf file home with me this evening, and so will need to update these pages tomorrow to gain the full effect. Well Done Ms C. I am sure others will be inspired to follow in your footsteps...

28.1.07

Podium and SmartBoard Recorder

Have spent the afternoon playing with some of the kit I got hold of at BETT, seemed somehow more fun than the planning scrutiny, I was intending to engage in. Unfortunately I still have this to do before I can watch the tele, so this entry will be brief.

Having played with my beta copy of Podium, I am now really excited by it, and fully intend to buy a copy or two on release. I am also going to trial it this week with some students, to see how they get on, but am not anticipating any real problems. It is really good fun, and even if at the moment I can't upload the casts they make, I can certainly export them in MP3 format to be listened to from the network.

What was also fun this afternoon however was, building on a demo I saw earlier in the school year, adding commentaries to Smart Recorder files. While I had my microphone plugged in I had a go, at carrying out a demo on making a hide and reveal file. I didn't realise how tricky it was to do this sychronously, particularly as my laptop is getting a bit old, but the outcome was quite effective, and something with a bit of practice I am sure I will be able to use in developing a resource bank to support colleagues, in the making of whiteboard resources.