Month: <span>June 2015</span>

What I'm Using: Screensaver Ninja (for displaying a twitter hashtag as a screensaver)

So, this is kind of impressive. I am in love with the idea of using your idle computer to continually update a hashtag you are following: Screensaver Ninja allows you to display websites through your screensaver in rotation, transforming your computer or a dedicated monitor into a powerful dashboard for you and your …

What I'm Learning: How to automatically sort sheets in a Google Spreadsheet Alphabetically

I love it when someone else figures these kinds of things out and then shares them. function sortSheets () {  var ss = SpreadsheetApp.getActiveSpreadsheet();  var sheetNameArray = [];  var sheets = ss.getSheets();     for (var i = 0; i < sheets.length; i++) {    sheetNameArray.push(sheets[i].getName());  }    sheetNameArray.sort();      …

What I'm Learning: How to automatically sort sheets in a Google Spreadsheet Alphabetically

I love it when someone else figures these kinds of things out and then shares them. function sortSheets () {  var ss = SpreadsheetApp.getActiveSpreadsheet();  var sheetNameArray = [];  var sheets = ss.getSheets();     for (var i = 0; i < sheets.length; i++) {    sheetNameArray.push(sheets[i].getName());  }    sheetNameArray.sort();      …