Skip to main content

Where Do Good Ideas Come From?

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 illusive 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.

Here's a story of an "accidental idea" that I think is good and is a great example of what I call "people actually stuff" and collaboration and discussion.

Someone in Facilities in Harry Fairhurst, let's call him Andrew, 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 Harry Fairhurst 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.





I then discovered that someone actually regularly patrols the building and carries an android tablet. I had the thought that instead of it being a spreadsheet, which was OK but not ideal, it could be an app, better designed for updating on the move. It took me about half an hour to make an app that did that for them, updating the same spreadsheet, using Apps Script. Apps Script is a coding language based on JavaScript built into Google Spreadsheets, Sites and Docs and it's a fantastic tool for people who want to quickly make their ideas happen.


The story doesn't end here. Previously, I'd shared an office with Aimee, who'd discovered that with a little HTML hacking, we could show some Google data on the York website. And so the Jess added the seat availability page to our web site as a trial service. An accidental feature of the technology means that this chart is updated every 5 minutes, rather than twice a day like the web site.



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 destination_spreadsheet = SpreadsheetApp.openById('SHEET_ID')
  var destination_sheet = destination_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.

The is already hugely popular for all sorts of reasons. I heard from disability services that students with problems with anxiety love being able to avoid "nearly full" study spaces.

We will soon be adding extra areas and improving it based on feedback.

If you're still wondering where good ideas come from...






Comments

  1. This comment has been removed by the author.

    ReplyDelete
  2. This comment has been removed by a blog administrator.

    ReplyDelete

Post a Comment

Popular posts from this blog

Writing a Simple QR Code Stock Control Spreadsheet

At Theatre, Film & TV they have lots of equipment they loan to students, cameras, microphone, tripod etc. Keeping track of what goes out and what comes back is a difficult job. I have seen a few other departments struggling with the similar "equipment inventory" problems. A solution I have prototyped uses QR codes, a Google Spreadsheet and a small web application written in Apps Script. The idea is, that each piece of equipment ( or maybe collection of items ) has a QR code on it. Using a standard and free smartphone application to read QR codes, the technician swipes the item and is shown a screen that lets them either check the item out or return it. The QR app looks like this. The spreadsheet contains a list of cameras. It has links to images and uses Google Visualisation tools to generate its QR codes. The spreadsheet looks like this. The Web Application The web application, which only checks items in or out and should be used on a phone in conjunctio

Inserting A Google Doc link into a Google Spreadsheet (UPDATED 6/12/2017)

This article looks at using Apps Script to add new features to a Google Spreadsheet. At the University of York, various people have been using Google spreadsheets to collect together various project related information. We've found that when collecting lots of different collaborative information from lots of different people that a spreadsheet can work much better than a regular Google Form. Spreadsheets can be better than Forms for data collection because: The spreadsheet data saves as you are editing. If you want to fill in half the data and come back later, your data will still be there. The data in a spreadsheet is versioned, so you can see who added what and when and undo it if necessary The commenting features are brilliant - especially the "Resolve" button in comments. One feature we needed was to be able to "attach" Google Docs to certain cells in a spreadsheet. It's easy to just paste in a URL into a spreadsheet cell, but they can often

A Working Booking System In Google Sheets

Working with Andras Sztrokay we had another go at a booking system. This time it was to enable staff to book out a number of iPads over a number of days. You select the days you want, then select the Booking menu. Andras did an amazing job. It even creates a daily bookings sheet so you can see who has which iPads. To see this in action, go  here  and  File > Make a Copy (I won't be able to support you this is just provided to maybe give someone else a leg up, good luck!)