Learning is Change

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

https://screensaver.ninja/

Also, this is literally the only good use of the .ninja domain I have seen thus far.

So that we can collect additional feedback on CamCon 2015 and plan for our fall Events, we wanted to ask this quick…

So that we can collect additional feedback on CamCon 2015 and plan for our fall Events, we wanted to ask this quick question: 

When would be best for you to come together for Professional Learning,  Toolkit Pickup, and more Networking Time?

Feel free to comment on this post if there are specific things you think we should be aware of. Also, if you attended CamCon 2015 and would like to provide additional feedback, please do so here: http://ourdps.pl/camconfeedback

Welcome to CamCon 2015!

Welcome to CamCon 2015!

We are extremely excited to teach and learn with you this week. So that you may start getting to know many of your fellow participants, here is an easy way to view the Focus-Area Affinity Groups that each of you will be a part of this year. Please feel free to poke around any affinity group you like and start connecting with teachers and leaders from around our District. 

Please note: some of the larger groups may be split into multiple affinity groups so that more close collaboration can take place. Also, please let us know if you would rather take part in a different group.

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();      for( var j = 0; j < sheets.length; j++ ) {    ss.setActiveSheet(ss.getSheetByName(sheetNameArray[j]));    ss.moveActiveSheet(j + 1);  }}

Source: Re: Sorting (alphabetically or chronologically) “tabs” at the bottom of a SHEET – Google Product Forums

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();      for( var j = 0; j < sheets.length; j++ ) {    ss.setActiveSheet(ss.getSheetByName(sheetNameArray[j]));    ss.moveActiveSheet(j + 1);  }}

Source: Re: Sorting (alphabetically or chronologically) “tabs” at the bottom of a SHEET – Google Product Forums