Twittering Haiku in the Garden at Night, after Chikanobu by Mike Licht, NotionsCapital.com
Attribution License

For quite a while now there has been a fair amount of discussion about how twitter is becoming the main conduit for web 2 type teachers to keep in touch and that blogging is on its way out.

I was interested to hear a couple of views about this on the edonis project podcast recently. Jaye Richards wondered if twitter was just a little too positive, not having space for critical discussion. Robert Jones talked about how it was hard to interest teachers in twitter if they did not already have an online network of some sort.

Although I tweet with a fair degree of enthusiasm I do sometime worry that it twitter takes something away from blogging. I’ve noticed a decrease in comments here and elsewhere and a decrease in my commenting beyond a quick tweet. For example my previous post here is sitting with no comments but several tweets.

Yesterday I read a few posts that convinced me that blogging is alive and well. I though I’d link to them here:

Margaret Vass posted Learning, Teaching and ICT » A Secondment Whirlwind Tour – 2 Years in 2 Minutes. Margaret’s blog is a constant source of inspiration for me and this post has me thinking hard about my professional role. She also points to some of the work she has done on ePortfolios and the main points she has learnt, one What about the pupils?: Comments should go beyond “I think I did OK” or ” I think I have more to learn.” is perhaps relevant to the blogs versus twitter theme.

Mr Mallon, posted some Good Advice from Rolf which he recorded on a trip to CERN. Particle physicist Rolf Landau gives advice to the many Scottish young people who are about to take up Physics. I’ve not listened to the 59 minute recording yet, but what a wonderful example of the way blogging can provide resources to pupils.

Meanwhile in the English Department Mr W asks What Texts D’you Teach? he is in the market for new texts for his English Department and would appreciate any suggestions. He is collecting them on a google spreadsheet through a form Neil already has a good number of suggestions.

I found all the above on the ScotsEduBlogs front page, but saw the next linked from twitter.

S1 adventures in posterous on Kenny O’Donnell’s blog. Kenny gives a rundown of some of the ways S1 in his school have been using posterous. There are some great examples of students work linked. I was particularly interested in the students not only persisted, but experimented with their blogs because it required nothing more than sending their work from e-mail and the suggestions about e-portfolios.

I could of course linked to lots of other great blog posts from around Scotland this week, but I think these give a flavour of the the valuable information and conversation going on. As much as I love twitter posts like the above linger in my mind for longer hopefully helping me in all sorts of ways.

This brief unscientific survey shows the great value of blogs and I’d suggest that the odd visit to ScotsEduBlogs will always interest and inspire at least as much as watching the twitter stream.

107of365[NTR23] by ntr23
Attribution-NonCommercial-ShareAlike License

For the last couple of days I’ve been testing an iPad. In many ways a compelling device. I’ve not used it enough to come to any real conclusions but though it worth noting some thoughts.

I am using the iPad to write this post & the first thing I noticed is the easy and  straightforward typing and the relative difficulty of typing tags such as <:p&rt; to get to a < you need to hit the number keypad and then the symbols one, switching back to letters and then numbers if you need a /.

At first play the things that the iPad seems best at are viewing and reading tasks, for me email, rss, browsing and quick googles. I may change my mind on that one if I get iMovie or keynote. I would love to see GarageBand for the iPad, it would be great with a touch interface.  It seems faster to check mail by grabbing the iPad than it is to move to the computer.. The speed that the iPad opens and launches apps is very impressive. I spend a fair bit of time reading RSS and google reader works well. I’ve used the iPhone version of netnewswire but as the iPad version is a bit more expensive than I am used to paying for apps I’ve not got that one. Instead i am using google reader and FeeddlerRRS which  is a free reader for iPad FeeddlerRRS uses your google read account too and it seems to work well. I’ve probably read more of my feeds in the last couple of days than the previous week. It is easier to read whole articles on the ipad compared to a phone where I would typically star or bookmark for later consumption. It is also easier to jump to the post and leave a comment.  I don’t think FeeddlerRRS works offline though which was an advantage of NetNewsWire on the iPhone. I could load my iPhone and read feeds on the train without worrying about s connection.

Somethings will take a bit of getting used to. I started this post in Pivot’s mobile interface:

Pivot mobile

b
This is pretty nice but I rsn into problems when I ‘minimised’ the page:

iPad safari  

I was thinking of this as equivalent to tabs but found when I swapped back to the pivot page after copying a Flickr embed code that the page reloaded and lost my text! I’ve switched to Notes to prevent this happening again and started using another note to hold snippets: 

iPad notes

I am also using Flickr to post images rather than uploading them here with TextMate.

 Ipsd apps

I am using 2 free apps PhotoPad to edit pics and the iPhone darkslide app to upload to Flickr. I think in the longer term I’d want a more efficient blogging app or I’d use Mail to post to posterous if I was doing a lot of iPad bloggIng.    

I’d be interested in trying out some of the HTML apps if they were iphone priced rather than the slightly more expensive iPad ones. I am not sure I’ll be editing much HTML on the iPad.    

What is impressive is the easy to use interfaces with all of these apps. I’ve not had to look of help or instructions on any of them. Things just work. The device is surprisingly delightful: the smooth way menus appear or say TweetDeck flips over to display  a webpages link in a tweet is lovely.

I am very interested in seeing how ipads would fit into a classroom and compare use with the iPod Touch. I imagine they would be a powerful shared device, sitting in the middle of a group to be grabbed and passed around better for collaborative work that the Touch. 

I am looking forward to testing the iPad in as many ways as I can think of over the next wee while and seeing the possibilities develop.

 

Mp3s_in_glow

A while ago I blogged about adding some functionality to glow: Glow Kludges, in a fairly crude way. This technique for embedding players for audio and video content into glow semi- automatically has proved useful to several teachers and classes and in a few groups I’ve created.

I’ve managed to refine some of this a bit recently for both audio (mp3) files and some video formats, this is one of the improved techniques.

Again the idea is to replace a link to an mp3 files in a glow document library with an embedded Flash player. This avoids users having different behaviours when clicking on a link to an mp3 depending on their operating system, browser and settings

We use 2 JavaScript libraries jQuery and the jQuery SWFObject Plugin and a small fragment of code, links to the libraries (jQuery is hosted by google and can be loaded from there, I’ve uploaded jQuery SWFObject to some glow webhosting space) and the Dewplayer Flash mp3 player.

The links to the libraries and code are put in a glow xml webpart:

//first link to the 2 libraries
<script type = "text/javascript"src = "http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" > </script>
<script type = "text/javascript"src = "http://publicwebsites1.glowscotland.org.uk/jjjs/jquery.swfobject.min.js" > </script>
 <span style="color:#0080FF">// now replace links to mp3s with flash player</span>
<script type = "text/javascript "charset = "utf - 8 " >
$(document).ready(
function() {
// href$=.mp3 is the selector finds all links to mp3 files
    $('a[href$=.mp3]').each(function() {
        audio_file = $(this).attr('href');
        $(this).flash(
        {
// dewplayer.swf is the flash document hosted in a glow webhosting site
            swf: 'http://publicwebsites1.glowscotland.org.uk/jjjs/dewplayer.swf',
// these arguments will be passed into the flash document
            flashvars: {
                mp3: audio_file,
            },
            height: 20,
            width: 200,
        }
        );
//we need to stop the link to the file working
        this.onclick = function() {
            return false;
        };
    }
    );
});
</script>

Basically with the above snippet of code in an xml webpart any links to mp3 files on a page will be converted into a flash player. The xml webpart can be hidden by setting its titlebar to none. When pupils upload mp3 files into a document library on a page the flash players will be embedded.

jQuery is an extremely powerful javascript library that is easy to use by folk like me with very limited JavaScript knowledge and very useful for adding functionality to glow.

By the By anyone interested in altering glows appearance should check out the Consolarium group, Charlie Love has sorted out how to apply a custom theme to the pages there and posted an explanation and resources on his blog.


photo by Mr Ush Some rights reserved

TeachMeet is entering its fifth year and the unconference for teachers, by teachers has helped hundreds – maybe thousands, in fact – to try out something new, alter the way they already teach and learn, join a community of innovative educators or completely transform their way of working.

The hope was that the model would spread. It has, but as those who have created and helped pull TeachMeet together over the past four years, we want to see it spread further, deeper and with increasing quality of input from practitioners. This post outlines how we think we might manage this. This is the beginnings of a conversation with those who care about TeachMeet. Add your views in the form of any blog post or comment or tweet – tag it #tmfuture

What are the goals of TeachMeet?
TeachMeet was originally designed to:

  • Take thinking away from the formal, often commercialised conference floor, and provide a safe place for anyone to pitch their practice
  • Provide a forum for more teachers to talk about real learning happening in real places, than one-hour conference seminar slots allow
  • Showcase emerging practice that we could all aim to undertake; sales pitches not allowed
  • Be all about the Teach, with only a nod towards tech that paved the way for new practice.
  • Provoke new ways of sharing our stories: PowerPoint was banned. We wanted people to tell stories in ways that challenged them, and the audience
  • Empower the audience to critique, ask questions and probe, all online, through SMS or, later, Twitter.

Over the years, these ‘rules’ have altered, leading to some great innovations, others less so. The answer to “What is a TeachMeet?” has become a myriad of meanings, some pretty far off the original goals. We need to help and support people to organise, run and contribute to events that build on previous ones. We need to make TeachMeet as accessible to newbies as it was in 2005. We need TeachMeet to once more find its focus.

Supporting the “infectiousness” of TeachMeets
Organising TeachMeets should not be easy. Taking part in them should be. But more support is needed for organisers:

  • Sponsorship is hard if there’s no bank account into which funds can be sent
  • Without sponsorship, any event over 30 people becomes tricky to organise while also giving people a special night of learning, the time, space and mood that gets people over their self-conscious selves
  • Paying for refreshments and venues is impossible if there’s no organisation to pay them the precise sum.
  • The best TeachMeets provide social space, social activity, entertaining MCs, good refreshments, good online coverage and some form of online ‘conclusion’ – this needs coordinating by the organiser(s), but it’s not a skill everyone will have the first time around.
  • We’ve got a superb opportunity to curate the best bits from all these TeachMeets that are happening weekly – this needs a degree of oversight.

A means to make TeachMeet more sustainable, easier to use for sponsors and organisers, and have the ability to do something spectacular
TeachMeet is owned by the community that shape it – but there needs to be a body to manage sponsorship and sponsors, and provide support for new organisers so that they maintain the TeachMeet goals. We assume that if someone is organising a ‘TeachMeet’ they would like to emulate the success of those popular early TeachMeets, and better-supported national conference ones (e.g. SLF and BETT).

What would support look like? (is this for new organisers of events? support from the TeachMeet body?)

  • Seeking of sponsorship all year round – including ways and means to get your message to as many teachers as possible
  • Brokerage of sponsorship – i.e. one place sponsors and those seeking sponsorship can come together, in a transparent manner
  • Recommendation of onsite support (good venues at discounted rates/free, A/V, event organisation [for bigger venues], catering etc)
  • Suggestions for various formats that have worked in the past
  • Mentoring from previous TeachMeet leaders including on-the-night help
  • Featuring of content and promotion of the event in a timely manner on an aggregated, higher profile TeachMeet site
  • A group calendar so that events can be seen by geography and date
  • Promotion of TeachMeet through international and national events, using contacts of existing TeachMeeters
  • In-event publicity (e.g. if you plan an event at a regional ICT day or national event, then we can help broker paper materials for insertion into packs etc)

But, above all, TeachMeet is reaching a point of saturation in the UK – things are going really well in terms of enthusing teachers about their own learning. We have a great opportunity to carry over a small proportion of the sponsorship and contributions towards creating a TeachMeet culture in countries where teacher professional development in this way is still blocked by barriers physical, financial or cultural. This is just one idea, harboured for a long time but unable to realise in the current setup.

This body can take the form of

  • A Limited company (with a Director and shareholders)
  • A Charitable Limited Company, with a board of directors and voting rights for fellow ‘shareholders’ (we could work out some way of people being ‘awarded’ shares based on [non-financial] involvement?)
  • A Social Enterprise, perhaps formed as a Limited Company (see more information on what this means and how it might work (pdf))
  • A Charity (this feels like a lot more red tape to pull through and perhaps not entirely necessary)

As we take things forward we invite you to contribute your ideas and thoughts to make things work smoothly. We want you to comment, probe and make your own suggestions before the end of June, using the tag #tmfuture

 

  • I listened to EDUtalkr online panel discussions about Scottish education: #1 Glow the day after the live discussion, it really deserves a blog entry to itself, but I don’t have the time. The audio is not great but the discussion is interesting, lots of agreement and shared ground from folk I didn’t necessarily expect to agree. If you are a scottish educator, interested in glow, and have not listened to it I suggest you do.
  • I’ve started collecting html5 links on delicious, troutcolor’s html5 Bookmark, some very interesting stuff going on that suggests that long term lack of flash might not hold apple back.
  • At work I’ve been updating the webpages that support Apple RTC courses.
  • Heard my first cuckoo here
  • Yesterday I went for a wee walk in Glen Douglas, not good weather for photos but I’ve mapped some: Glen Douglas 24.04.10

I used a aGent v5 Webcam with a £1 tripod from a pound shop to make a cheap visualiser. DIY Visualiser First try at recording some ipod touch screen action: iPod Maths Maps, I hope to repeat this with a vocal explanation. The Webcam is 5mp and the images look really good. The ipod was shot at half size and there is a bit of reflection.

I spent a wee bit of time working on some goole maps stuff in glow: Google Maps api (glow login required) and have a fairly simple map creator working in safari and firefox, not Internet Explorer though.

Recent delicious bookmarks:

  • iResponse Software Download « ipod/iphone response system 59p needs desktop app
  • Thinking allowed: Maths is beautiful great blog post
  • Wolfram|Alpha for Educators Wolfram|Alpha is a free online computational knowledge engine that generates answers to questions in real time by doing computations on its own vast internal knowledge base. Our long-term goal is to make all systematic knowledge immediately computable and accessible to everyone. This can be valuable to educators in many ways.
  • Comics Internet Safety A comic for teachers to help think about classroom practise
  • Embedding Javascript in Google Sites Wiki Why isn't embedding Javascript on GoogleSites as easy as Wikispaces?
    Of course, a quick Google search revealed a workaround and a learning opportunity.
  • Wisgary.com – Google maps API Distance Calculator This Google Map calculates an approximate of the shortest distance between any two points on the globe. It is calculated whenever you hit the Calculate Distance button, or when you drag a marker to a different position.
  • Using iPods to Motivate Reluctant Readers Written by Jacquie Fitch, 4th grade teacher: I am working with a group of 12 students who are below grade level in reading. Most of the students struggle with missing phonetic skills as well as comprehension issues. It is hard for them to sit still and they cannot work/learn in large groups. I am looking for ways to motivate these kids and to teach them to enjoy reading. I’m also hoping to see an increase in fluency skills.

 

ipod_Map_comics

As a bit of a google maps enthusiast I love Tom Barrett’s Maths Maps ideas. It looks to me like a nice way to show some ‘real’ application of maths in an engaging way.

I am still supporting/interfering with an ipod touch project (site gone but not forgotten on the Internet archive). This gave me the excuse a few weekends ago to spend some time messing about with the jQTouch — jQuery plugin which simplifies developing webpages for mobile devices. I am experimenting with building some sort of base site/web app for the touch.

One of the nice things about the iPod Touch is that you can add webpages as ‘applications’ to your home screen. Apple provide a way which jQTouch supports of giving a webpage an icon the idea with the site I am working on, the iPod Playground, is that it should provide an easy way to present links etc to the children this avoids typing long urls into the touch, the webpage could be edited

A couple of weeks ago I went over to Glencairn to give the maps a try out. The task I gave the pupils was presented on one of the ‘pages’ of a jQTouch page. Based on one of Tom’s shape problems, the children visited the Jardin du Luxembourg and collected screenshots of different 2D shapes, these were then built into Comics with Comic Touch. We encouraged the children to work in pairs to collect shapes, one child to keep the instructions open the other to click on the link to the map. Then bump the images from the image gatherer to the one with the instructions on his/her screen. The lesson seemed to go pretty well the children accessing the maps, taking pictures and creating comics with out a problem.

I am hoping to get the children to try a Street View problem soon. The Slides from flickr show some of the screens of the jQTouch webpage and a couple of street view images on the touch.

Creating the Tasks

The jQtouch setup is very easy to work with, everything in a ‘site’ is really one page, jQtouch provides a nice standard interface, navigation and animation for that navigation.

It took me a while to figure out how to link to the maps so that I dropped a pin where I wanted it and that pin would have a name on it using the Name and the location in the query seems to work:
Street View Shapes 1

Weeorgangeguy

You need to have a pin on the map to get street view to work. On the iPod touch or iPhone you click on the Wee Orange Guy to switch to street view. As an aside I think street view on a browser uses flash, obviously not on the iPod but it is a very smooth experience.

Apple provide quite a few nice tricks to help web app development. You can set an icon for your webpage, so that if folk add it to their home screen it looks like a ‘real’ app. You can also set a splash screen image which will show until the page has loaded when opened as a web app. I have a wee problem with the Flickr Lunes site I blogged about recently if I set: to run in full screen users cannot hold on an image to copy it to their photos, pretty much killing the functionality of the app, so I have had to lose the splash screen. I’ve been working on an ipod/phone version of my A flickr CC search toy called Flickr Search and Stamp this just lets you stamp a flickr photo with attribution. Like Flickr Lunes it only find photos you are allowed to alter so should keep you on the right side of the copyright fairy.

Delicious Applescript Blog

A while back I stopped splicing my daily delicious links into my RSS feed via FeedBurner, a couple of folk told me they did not find it very helpful. I’ve been wondering if a weekly list would be of interest?

To make it a little simpler I made a AppleScript that downloads the RSS from my delicious links, creates some html and posts it here using the MetWeblogAPI. It is not an elegant bit of code but I’ve put it up on my wiki: week in delicious in case anyone wold find it useful. It would be easy to tweak for a different number of days or just to pickup a particular tag.

I am not sure if I am going to use it, if I do I’ll probably only post a particular tag but I could not resist the temptation for a little auto blogging.

The script could be changed for other autoblogging tasks too. I’ve put it with few other Apple Scripts that I find occasionally useful on the Wiki.

Webpages I’ve bookmarked on delicious this weeK: