Many people think ideas happen in a flash, a moment of inspiration, that eureka moment. They also believe that it's often "other people" that have ideas, either a boss or lone genius hunting down those elusive light bulbs.
The funny thing is, that the reality is, ideas can be slow things, taking time to come into being and most often they happen in discussion or collaboration. From what I've seen, the best ideas don't come from senior management, or from a sole genius but from people working together, people actually doing stuff in the real world. Many of these "good ideas" can be almost accidental.
My role at the university has been to both introduce people to the Google Apps suite, both evangelising them and working with people to help them realise their ideas.

Someone in Facilities in the Library, let's call him Andrew (because that's his name), was talking to someone in the Communications Team, we can call her Jess because that's her name too. They came to me, Tom, and asked, "Can we have a spreadsheet to make the recording of seat availability in the Library easier?"
I didn't know that this information was collected. I showed them how to add drop downs and colours to a Google Spreadsheet. Job done.

And the story goes on. By now, only days after launching a trial service, the Communications Team were already receiving positive feedback from students.
Next, Jess and Steve, seeing that the data could be displayed on the web site, asked if it could also be displayed on the big screens around Harry Fairhust. We found that the original spreadsheet looked a "bit lost" on the big screens, so wrote some code to "push" the data from the main spreadsheet to another sheet formatted with bigger fonts etc (shown below).
function copy_sheet(){
//Simply makes a copy of the main sheet
var ss = SpreadsheetApp.getActiveSpreadsheet()
var sheet = ss.getSheetByName("Seating availability")
var range = sheet.getDataRange()
var a1 = range.getA1Notation()
var values = range.getValues()
var desination_spreadsheet = SpreadsheetApp.openById('nu7JgRtB5CdHJUVlNaRzUyd_pmUWc')
var destination_sheet = desination_spreadsheet.getSheetByName("Big Screen")
var destination_range = destination_sheet.getRange(a1)
destination_range.setValues( values )
}
The trial Seating Availability service came into being after chance questions and discussions. It took little to no time to put together. It uses Google Spreadsheets, an app, an android tablet, a widget embedded in a web page and our big screens. It involved at least four or five people. We will soon be adding extra areas and improving it based on feedback.
This is already hugely popular for all sorts of reasons - not just the ones you expect; I heard from someone I was working with in Disability Services that students with problems with anxiety love being able to avoid "nearly full" study spaces.
Still wondering where good ideas come from?
Tom Smith leads our Collaborative Tools Project. He also has his own Everythingability blog
If you're interested in finding out more about what you can do with Google Apps, follow the Google Apps European User Group on Twitter when they meet at York on 23 & 24 July at https://twitter.com/GEUG14 or search the hashtag #GEUG14.
No comments:
Post a Comment
Anybody can comment on this blog, provided that your comment is constructive and relevant. Comments represent the view of the individual and do not represent those of The University of York Information Directorate. All comments are moderated and the Information Directorate reserves the right to decline, edit or remove any unsuitable comments.