Remind is now part of the ParentSquare family! See the announcement for details
Remind is now part of the ParentSquare family! Learn more
Blog
May 8, 2015
 • By 
Kelly Rexine

3 questions all teachers should ask their tech specialists

Community

As a technology specialist, I work with many teachers and students throughout the year. I always enjoy collaborating with teachers, but I wish they'd ask me more questions about integrating new tools and strategies into their lessons.

If your school has a technology director, coach, or specialist, here are the three questions you should ask them.

1. Can you help me?

This is a simple question—but it can be a challenging one. Teachers often think they need to know everything, but that just isn't true. (It's also impossible.) Asking for help can help you add new tools to your arsenal or identify areas that could use a little improvement. You can even breathe new life into an old lesson by getting an opinion on the best way to integrate technology or just bouncing your ideas off someone else.

Tech specialists often attend conferences on educational technology to help us stay current on resources and ideas. Don’t let us hoard this information, because we don't want to. Instead, ask your specialist what they've learned about lately that could help your classroom.

Your tech specialist can create a Remind class to share new tools, resources, and ideas with team members.

2. Would you like to co-teach a lesson?

Your tech specialist probably holds an education degree, which means they've taught students at one point or another. A great way to model learning and observe new strategies is to co-teach a lesson together.

When I co-teach, the teacher is the leader of the lesson, but I add support so they can feel confident using a new tool. This is also a great way for tech specialists to get a frontline perspective about the barriers that a classroom teacher might encounter when using technology in school.

Get your class excited about your special guest for the day—send them messages and images to hype up the lesson.

3. How much time and support will I receive?

New initiatives and devices often fail because they aren't implemented correctly or given the chance to succeed. For me, the best way to hook teachers on something new is to provide time and support. Just because a tool is shiny and new doesn’t mean that engaged learning will automatically follow.

Your tech specialist might also offer teacher training. When you have access to ongoing training and time to explore new resources, powerful things can happen.

Your tech specialist can set office hours on Remind to create a designated time for questions and answers.

Get connected

Not every school has an official technology lead, but everyone knows a teacher who's enthusiastic about technology. The next time you run into them, try asking these questions—you’ll be surprised by how much they'll want to share.

You can also find many technology specialists on Twitter, including Alec Couros, Richard Byrne, Shelly Terrell, and Steven Anderson. These educators all share great ideas that you can use in your classroom. You're also more than welcome to ask me for ideas. We're all working for our students, so let’s make their education the best it can be!

tag * ppcUrlCookiePart1 and ppcUrlCookiePart2 must be called, see bottom of script * update ppcUrlCookiePart2 and ppcUrlCookiePart2 to match your querystring and form field names * */ //Leave this as true to always use querystring values if they exist, if no querystring will attempt to get cookie values var ppcUseLatestValues = true; //set this to false to use cookie values if they exist (if false, will not check querystring first). //function to grab params from cookie function getCookie(param_name) { var i, x, y, cookie = document.cookie.split(";"); for (i = 0; i < cookie.length; i++) { x = cookie[i].substr(0, cookie[i].indexOf("=")); y = cookie[i].substr(cookie[i].indexOf("=") + 1); x = x.replace(/^\s+|\s+$/g, ""); if (x == param_name) { return unescape(y); } } } //function to create cookie function setCookie(param_name, value, exdays) { var exdate = new Date(); exdate.setDate(exdate.getDate() + exdays); //CHANGE DOMAIN BELOW TO MATCH SITE var c_value = escape(value) + ((exdays == null) ? "" : "; domain=remind.com; path=/; expires=" + exdate.toUTCString()); document.cookie = param_name + "=" + c_value; } //function to check if cookie exists and, if so, run the setCookie function function checkCookie(param_name, param_url_name) { var param_value = getCookie(param_name); if ((param_value != null && param_value != "" && param_value != "undefined") && ppcUseLatestValues == false) { //this means the param name/value pair exists - and we don't want to use latest } else { //this means the param name/value pair does not exist - so create it //grab values from URL var pageURL = window.location.search.substring(1); var URLVariables = pageURL.split('&'); for (var i = 0; i < URLVariables.length; i++) { var parameterName = URLVariables[i].split('='); if (parameterName[0] == param_url_name) { //filter out "#" in case that is in the last URL param param_value = parameterName[1].split("#")[0]; } } if (param_value != "undefined" && param_value != "" && param_value != null) { //create cookie setCookie(param_name, param_value, 365); } } } //function to setup the parameters and save the cookie values function ppcUrlCookiePart1() { //setup list/array of parameters desired. names on right should match querystring names var param_names = new Array( 'ppcSource;utm_source', 'ppcMedium;utm_medium', 'ppcCampaign;utm_campaign', 'ppcAdGroup;utm_adgroup', 'ppcKeyword;utm_term', 'ppcContent;utm_content' ); //loop through all params and create cookie for (i = 0; i < param_names.length; i++) { var param_object = param_names[i].split(";");//split out the cookie name and url name var param_name = param_object[0]; var param_url_name = param_object[1]; //start the cookie creation checkCookie(param_name, param_url_name); } } //function to grab cookie params function mGetCookie(param_name) { var i, x, y, cookie = document.cookie.split(";"); for (i = 0; i < cookie.length; i++) { x = cookie[i].substr(0, cookie[i].indexOf("=")); y = cookie[i].substr(cookie[i].indexOf("=") + 1); x = x.replace(/^\s+|\s+$/g, ""); if (x == param_name) { return unescape(y); } } } //function to check if cookie exists and, if so, fill out the corresponding form fields function mCheckCookie(param_name, param_field_name) { var param_value = mGetCookie(param_name); if (param_value != null && param_value != "" && param_value != "undefined") { try { var obj1 = document.getElementsByName(param_field_name); obj1[0].value = param_value; return true; } catch (err) { return false; } } return false; } //function to setup parameters and begin cookie value insertion into marketo form function ppcUrlCookiePart2() { //setup list/array of parameters desired. names on right should match hidden form field names var param_names = new Array( 'ppcSource;utm_source__c', 'ppcMedium;utm_medium__c', 'ppcCampaign;utm_campaign__c', 'ppcAdGroup;utm_adgroup__c', 'ppcKeyword;utm_term__c', 'ppcContent;utm_content__c' ); //loop through all params and create cookie for (i = 0; i < param_names.length; i++) { var param_object = param_names[i].split(";");//split out the cookie name and url name var param_name = param_object[0]; var param_field_name = param_object[1]; //start the cookie creation mCheckCookie(param_name, param_field_name); } } //ppcUrlCookiePart1 will grab values from the querystring and save them in cookies ppcUrlCookiePart1(); //ppcUrlCookiePart2 will retrive values from the cookies and populate the hidden form fields - should be in the onload try { //attempt for Marketo form MktoForms2.whenReady(function (form){ ppcUrlCookiePart2(); }); } catch (err) { //if error on Marketo form, try loading for regular form. ppcUrlCookiePart2(); }