Educator, Thinker, Consultant

Category: Education (Page 1 of 3)

AI for Teachers

AI continues to be the HOT topic in education. More and more sites are incorporating AI into their services.

Recently I came across a site that provides AI services for teachers – Teacher Server. There are several really good things about this site:

  1. Data Privacy– “Your data is not saved or stored on our server. We prioritize your privacy and ensure that any data processed through our service is handled with utmost confidentiality. Except for the account information: email and password, the website does not store any user data including AI input outputs. We absolutely do not keep, store, or sell any data.”
  2. Cookies and Tracking– “TeacherServer does not use cookies to track user activity or store any personal data. Additionally, we do not follow or monitor your location, online activity, or any other personal behavior while using our services.”

Let’s take a quick look at their Mission:

TeacherServer is a cutting-edge educational platform designed to support teachers in their daily tasks. Our mission is to provide high-quality, easy-to-use tools that enhance teaching and learning experiences.

So what kind of tools do they have for teachers? Let’s take a look at just a few of the options:

  • Lesson Plan Generator – Generate daily, weekly, and unit lesson plans aligned with curriculum goals.
  • Lexile Score Adjuster – Generate a similar text at a higher or lower Lexile score.
  • Cultural Awareness Activity Planner –Develop cultural awareness activities to promote understanding.
  • Group Work Idea Generator – Create group work activities based on grade level and subject.
  • Classroom Case Solver – Users contribute classroom dilemmas while the AI provides solutions.
  • Behavior Intervention Plan Generator – Detailed plan to help a student who is struggling to behave in class.
  • ESE Lesson Modifications – Tailors lesson content and delivery methods to accommodate students with exceptionalities and special needs.

This is an interesting project. You do need to create an account to use the site (i.e. an email address), but that’s it.

You may want to take a look around and play with this site. The privacy seems to be good.

AI continues to be the **HOT** topic in education.

* Image Courtesy of:

Education AI Announcement Hero Image

Credit: U.S. National Science Foundation

Assessment Reporting

I was asked to provide a data sheet for the NWEA assessment.

Interestingly, NWEA provides two spreadsheets with the necessary information. The first sheet (NWEAWinter20) is quite a lengthy sheet with all the testing information. This sheet includes testing dates, time on task, school, and the breakdown of all the testing. The second sheet contains the student information. So the first task is to copy the Student information onto a new tab in the Assessment sheet. Now we have all of the information on one spreadsheet (although two tabs).

Next, combine the student information with the assessment data. Good news is that since StateIDNumber is on both, this means a “simple” VLOOKUP.

I added five blank columns in order to merge the five data columns that I needed (StudentLastName,StudentFirstName, StudentMI, Grade, and StudentDateOfBirth). I left the first two columns (StateStudentID, and StudentID) in place. This allows me to use the first column for the LOOKUP. In cell C2, I added the following formula:

=VLOOKUP(A2,Students!$A$2:$G, 3,0)

The data that we want to copy over lives in columns C, D, E, F, and G. The data that we are matching (StateStudentNumber) is in column A. VLOOKUP’s must run off the first column. (* You can do similar things with different commands if you can’t use the first column.)

Let’s take a quick look the formula. We always start with an “=” to indicate a formula. “VLOOKUP” is our magic formula. This is a vertical lookup; meaning that the spreadsheet will vertically (thus the V).

Next, the A2 says to look at cell A2 to find a match. Thus, the StateIDNumber in A2 will be used to find the student on Student tab. Next, we have “Students!$A$2:$G”. Let’s break this one down. Since we are pulling the data from a different tab, we need to say which tab that is. Thus the Students!. Next, we add the range on that tab that we pulling from: A2:G. But, what about the $? We want to use absolute rows, thus the $. This means that the spreadsheet will always look through the whole column (note that we don’t close the G column so that we don’t risk “cutting data off”).

The next number maps to the column that we need. In this case, we are looking for the information in Column C (which is the third column, thus 3). Basically, wherever the information in cell A2 on our current sheet, matches the information in Column A on Student tab, the information in Column C (last name) will be inserted in this cell.

Finally, the last argument is a “0” meaning that we don’t have a header row. * We do have a header row, but we have skipped this in both spots for ease of use.

As we copy this formula down the column, the next row will change from:

=VLOOKUP(A2,Students!$A$2:$G, 3,0)
to
=VLOOKUP(A3,Students!$A$2:$G, 3,0)

The only thing that is changing is the first argument (A2 becomes A3) which is referencing the StateStudentNumber for the next row.

For our First Name column (Column D), we use the same process, but change the Column imported to 4. Thus, the formula for cell D2 becomes:

=VLOOKUP(A2,Students!$A$2:$G, 4,0)

Next, comes StudentMI (Column E). The formula for cell E2 becomes:

=VLOOKUP(A2,Students!$A$2:$G, 5,0)

Grade is our next column (Column F). You guessed it:

=VLOOKUP(A2,Students!$A$2:$G, 6,0)

Finally, Birthdate (Column G).

=VLOOKUP(A2,Students!$A$2:$G, 7,0)

Now we have all the students combined with all the assessment data. Cool! However, there is tons and tons of data here. There is a mix of Mathematics and Language Arts.

The request was to create a tab with selected information:

  • State ID
  • Student ID
  • LastName
  • FirstName
  • MI
  • Grade
  • DOB
  • RIT
  • Percentile
  • Quartile
  • Lexile
  • Goal 1
  • Goal 1- RIT
  • Goal 2
  • Goal 2 – RIT
  • Goal 3
  • Goal 3 – RIT
  • Goal 4
  • Goal 4 – RIT
  • Goal 5
  • Goal 5 – RIT

Still lots of information, but much more focused.

So, we create a new tab. We name the tab “Math”. We now have three tabs: NWEAWinter20, Students, and Math.

Now we need a formula to pull just the Math information onto the “Math” tab.

Here’s our formula:

=QUERY(FILTER(NWEAWinter20!A2:ET,NWEAWinter20!M2:M=”Mathematics”),”SELECT Col1,Col2,Col3,Col4,Col5,Col6,Col7,Col29,Col31,Col32,Col77,Col83,Col84,Col88,Col89,Col93,Col94,Col98,Col99,Col103,Col104 WHERE Col6>3 and Col6<9″)

Again, let’s break this down. We need a QUERY to pull the information from another sheet. We need a FILTER to, well, filter the information. The FILTER allows us to pick the tab (NWEAWinter20) and use the Column M (which is Subject: either “Mathematics” or “Language Arts”) to limit the results to that subject. This will only pull the test results that are Mathematics.

The SELECT says to just bring over the columns that we need. The first seven columns are demographic information, so we pull all of those. Next, we have to convert Columns to Numbers. Better Solutions had a terrific conversion chart. This tells me that Column AC is 29. The list of Columns pulls those columns listed above.

The last part is WHERE. The request was limited to grades 5-8. Column F(Col6) listed the grade of the student. Since I wanted grades 4-8, I used “L>3 AND L<9”.

Now that we have this set, we can do the same thing for Language Arts. Since we have the hard work done, we simply duplicate the “Math” tab, rename that tab “Language Arts”. Then we change the formula in cell A2 from:

=QUERY(FILTER(NWEA_Spring_2024!A2:ET,NWEA_Spring_2024!M2:M=”Mathematics”),”SELECT Col1,Col2,Col3,Col4,Col5,Col6,Col7,Col29,Col31,Col32,Col77,Col83,Col84,Col88,Col89,Col93,Col94,Col98,Col99,Col103,Col104 WHERE Col6>3 and Col6<9″) to =QUERY(FILTER(NWEA_Spring_2024!A2:ET,NWEA_Spring_2024!M2:M=”Language Arts”),”SELECT Col1,Col2,Col3,Col4,Col5,Col6,Col7,Col29,Col31,Col32,Col77,Col83,Col84,Col88,Col89,Col93,Col94,Col98,Col99,Col103,Col104 WHERE Col6>3 and Col6<9″)

Simply changing the Filter criteria after the M2:M from “Mathematics” to “Language Arts” means that we are done.

Now we are ready to slice and dice the information even more. We can now utilize Pivot Tables, Filtering and more.

Running Your Own

Ben Werdmuller, who is brilliant, has a great write up, Running your own site painful. Hosting Nazis is worse. Seriously, this is a GREAT article. Please go read it (and then come back here).

He makes important points about social media, where your stuff is hosted, options for discoverability and more. He focuses on writers, but so much is equivalent to educators.

I’d say his wonderful article is relevant in two ways for educators:

  1. Parent/Community Communication
  2. Educational Resources.

Parent/Community Communication

Parent/Community communication is a challenge in education. All schools have a website and post to the website. However, people don’t generally know when or if to check the website. As social media took off, schools transitioned to posting on social media, mostly Twitter (now called X) and Facebook. Schools also posted to Instagram. Lots of schools also send out emails and texts.

As Ben Werdmuller points out, schools don’t have control over Twitter (X), or Instagram. So, while schools benefit from the audience of those social media sites, schools are also at the mercy of their decisions and plans. So, if a platform were to allow Nazis to post (and promote those posts) the school may be appearing to support those kinds of activities. However, this gets complicated as lots of parents/community members may use the site and maybe they do not see the Nazi posts. or maybe the site gets sold and goes out of business. Now schools have to redirect parent/community members to a new site(s).

A website based upon a domain that you own means that you have control over that. By owning a domain, schools have control over who gets to post and what things look like. However, that means that schools have to develop and promote the site.

Parents/Community members usually find other social sites “easier to use”. They really don’t have to do much. This is a big strength, and a big weakness. They may or may not see specific things. Facebook has gone through many periods where they were/are tightly controlling what people see, what gets promoted (thus seen).

Ideally, parents/community members would set up their own RSS feeds to follow. However, realistically, they aren’t going to do this. (Even though RSS is actually very easy to use. I personally use NetNewsWire). It is a mindset that needs to be developed.

So, schools post to websites, X, Facebook, and Instagram. They may be re-evaluating that as sites change, though given the amount of issues that have come up with Facebook and haven’t resulted in people moving away says that it would take a lot for people to actually move to another platform.

Educational Resources

I see similar issues with Educational Resources. Quizlet is a pretty popular flashcard creator. Recently, I’ve heard that they refuse to sign a DPA (Data Privacy Agreement). Thus, some schools are moving away from allowing access to the site. Some teachers are upset. They have spent years creating resources.

This is really part of a common issue though. Most educational resources need to collect money in order to continue to provide services. Thus, educational resources are constantly adjusting things to make sure that they can stay in business.

Long ago, I was talking to someone and used the phrase “you are always investing in someone – either yourself or someone else”. (I know this because that person repeated it back to me in a future meeting.) Lots of educators have bought into (via their time, and work) an educational resource or ten.

Schools also purchased a variety of resources through the ESSR funds (COVID relief). That money has come to an end. School budgets will be getting tight again. There is the possibility that schools won’t be able to fund all of the educational resources that they have over the last few years.

The alternative though is open-source. Open-source has the advantage of being controlled by the district. It is not free, there are some costs involved in hosting, configuring, and updating. However, it is much, much more affordable. Open-source software tends to not be as pretty as commercial resources. Plus, open-source software tends to be more powerful, but less focused. So, there is some learning involved by the teacher (you are always investing in someone – either yourself or someone else“). If educators would come together and create and share things, the effect could be extremely powerful.

So, what are some examples?

Both of these are open-source and powerful. H5P allows users to create Flashcards and much more. Both have platforms available to share work. Even more powerful for me is that both can allow students to create resources.

So, what’s going to happen is that some educators will switch from one commercial product to another. Teachers may be upset and frustrated that they have lost a bunch of work. They will then switch to another commercial product. That will work for a while until a business model changes, free accounts become too limited to be useful, or something else. They will get frustrated. They will move to the next product.

What a powerful world it would be if the students were doing the creating. What a powerful world it would be if educators took control of educational resources. What a powerful world it would be if educators were sharing, and adapting resources.

Snowplow Parents

The New York Times recently posted an article (apparently a subscription is now required) about online grades and “Snow Plow Parents”.

What is a “Snow Plow” parent? According to Parent:

…a snowplow parent removes any obstacles in their child’s way. This type of parent does not want their child to experience any discomfort or problems, so the parent intervenes and fixes it for their child.

I remember “Helicopter Parents”, those parents who hover over their children. I remember that when my own kids went off to college, there were a few parents who actually moved to the college town that their kid was attending.

Snow Plow and Helicopter parents are related. Both take on way too much of their child’s life.

I found the article interesting and insightful. There is a definite bias early on in the article about the “dangers” of online grades being available for parents, which is balanced out later in the article. (Thus, it is important to read the whole article.)

Really, the article ends up focusing on the importance of students developing agency and responsibility. Oh, and how some parents are taking that away from kids.

Part of the advice is about making sure that parent’s connection with kids goes beyond grades:

…parents shouldn’t want conversations about grades “bleeding into every conversation you have with your kids. That does a disservice to your relationship, and it does a disservice to your child.”

A big focus of the article is about kids developing executive functioning.

“Part of executive functioning and personal management is understanding what’s the right time and place to have a conversation versus not. And so students do need to develop that,” she said.

The article even addresses a couple of interesting issues:

At its heart, the issue is that too many parents see their children’s grades as the ultimate reflection on themselves and their parenting.

and

There were kids, he said, who were “incredibly skilled at gaming the system” — grade grubbing rather than achieving anything intellectually.

In the end, the author admits that it’s not all negative.

… not every teacher I spoke to had a negative experience with online grade books. Some said that the technology made their lives easier and improved communication with some parents. Even the teachers who pointed out the unseemly behavior of some parents and students stressed that it wasn’t a majority who abused the system.

I find this an interesting time to be a parent (just like all the other ones in history). Parents today deal with social media, connectedness, information overload, pressure to be successful, and on and on.

I don’t think any of this is really new, but it is new for each parent. Also, the number of parents who are truly “Snow Plow” is pretty minimal (still makes it rough for those particular kids).

So, what about online gradebooks? These can be beneficial. However, it is also important to establish how grades work in the classroom early on in the year (or now). Set out expectations of when work will be graded. Communicate how grades are calculated. Take advantage of the power of the gradebook. I have found online gradebooks to have much more good than negative. The article even points this out. Remember, no matter what system that you use, you could have a lot of these same issues. Many of these are “people” issues, not technology issues.

If you are a parent of a child under 18, do your best. Help them grow. They’ll make mistakes. They’re human. Don’t be a Snow Plow.

Reader’s Theater

The wonderful Shawn McGirr sent along the Reader’s Theater activity he created. The activity has students picking a short story and presenting that story to the class.

Students select their script. All students get a question/discussion page after the performances are done. During rehearsals, students in each skit group design questions in the StudentQuiz activity that restricted to their group until the end and students answer student created questions.
Final exam is a pool of all the questions with a random number from each StudentQuiz activity pulled for the final test.

This is a phenomenal activity. The students get to lead the way. They are creating the questions.

Shawn sent along an example of the activity. However, when I imported the activity and tried to use it, I hit an error screen. Shawn utilized StudentQuiz in Moodle. StudentQuiz is a great plug-in that I’ve used before.

Hm. I thought maybe it was due to the original being created from an older version. So, I tried to create a brand-spanking new activity. Drats, same error message. Or maybe not drats. The issue probably isn’t related to the imported activity. So, off to the forums. It is there that I discovered that there is a known issue with StudentQuiz and Moodle version 4.3. The fix is in the pipeline. Hopefully, by mid-January, it will be available.

I do have another Moodle installation though. That one is running Moodle version 4.1 currently. I was able to import the activity there without issue.

The activity is awesome. Shawn has done a great job. The students take the lead. They get to select a piece to be the expert on. The students get to create the questions. The students get to answer the questions created by their peers. The teacher then gets to utilize those student-created questions to create a unique “final exam” for each student. (The teacher can approve the student-created questions. Then, the teacher essentially says, “give each student 20 questions from this bank of 100”.)

MoodleNet Thoughts

I posted on Mastodon about the lack of feedback on Moodle Net. Martin replied asking for feedback. I’ve responded, but I thought that I would flesh out my thoughts a bit here.

I love Moodle and what you can do with it. I love that there isn’t a big money-making, data-sucking, privacy-invasive company running it.

A little background. I’m in the US. Specifically, I’m in K-12 education teaching and learning. Moodle is not super popular. There are certainly a few places, but Moodle is much bigger at the University level than K-12. There is much angst over Moodle. Quite simply, teachers find it “too hard”.

There are reasons that Google Classroom has taken over. It really doesn’t do much (thus, much less to learn for teachers). Google Classroom is essentially handing out worksheets and getting them back (another bonus, teachers understand the worksheet process).

When COVID hit, there was a rush for two things, video conferencing and an LMS. Zoom quickly captured the video conferencing mindshare. So much so, that even now it is pretty much the only game in town. Google Classroom captured the LMS market (note that it not an LMS but that doesn’t matter). It doesn’t even matter that it is not an LMS. The District that I was in at the time evaluated Canvas, Schoology, and Moodle (we had Moodle installed and were known internationally for our work in Moodle – due to Chris Kenniburg). The District chose to go with Schoology. It was “easier”.

MoodleNet

So this is one reason I was (still am) hopeful for MoodleNet. MoodleNet should be a great way to share resources, activities, etc. This means teachers wouldn’t have to create all their own material. This alone would make Moodle “easier”. Teachers could get started.

However, I do not find MoodleNet engaging. I’ve posted some things there, but I don’t get any feedback. There is currently no way to provide feedback. I can’t tell someone that I liked their materials or that I used it with changes. Hence. I reached out to Martin.

I don’t think that this needs to be overly complicated. I thought about ratings, 1-5 stars, adding how it was used, tags, and more. Really though, I think a simple comment box would be the way to go. Let users decide how to use it. Let users make comments. Provide a link back to the profile of the user, what date the comment was made, but otherwise, just free-form comments.

I am hopeful that that would provide a bit of social connections. It would provide the opportunity to provide feedback. It may encourage more people to submit resources.

Some Thoughts on X, er, Twitter

I used to be a Twitter user. I joined Twitter in June of 2008. I used Twitter for a good number of conferences. I met people, made connections, found resources, and more through Twitter.

In 2018, I tried out Mastodon. I loved the idea. However, there really weren’t many educators there. So, I kept the account but also stayed on Twitter.

With the purchase of Twitter, and the changes that wrought, I left Twitter.

There are still tons of people on Twitter, er X. On one hand, I understand why. There are still lots of good links and good people on X. However, X now supports a great amount of misinformation and disinformation. Actively.

I’m off Twitter and I’ll explain why.

Now some people don’t see that much. So, their belief is that it really doesn’t matter. I think it does.

Discrimination, bias, and manipulation matter. Even if you don’t see it all the time. Kind of like, I don’t actively see racial discrimination every day. But I know that it exists. I don’t support places that support racial discrimination even if I don’t necessarily see it.

I won’t support Twitter. Be clear, having an account on Twitter and using it, supports Twitter. If you are logging in to Twitter, if you are checking Twitter, you are supporting Twitter. Obviously, if you are paying for an account, you are supporting Twitter.

I’m choosing not to support the bias and manipulation that is now Twitter. Yet, I understand that others may not have the same opinion. Twitter was a very valuable resource. Lots of educational organizations still support X and Facebook. Recently, a Maine Department of Education representative was asked about a grant opportunity. Their answer was to check “Twitter or Facebook”. This is frustrating to me. In order to get information about a grant I have to give my attention to “Twitter” now X or Facebook (which has been caught lying and doing bad things repeatedly).

Maine, like most states, is very concerned about privacy and security. There is even a current ban on State departments using AI due to privacy and security. Yet, the Maine Department of Education is actively supporting two companies that do not respect privacy and security.

Again, on one hand I understand. It’s hard to keep track of who is supporting what. It’s tough if you don’t obviously see the bias and discrimination.

On the other, isn’t this what being an informed citizen is about? Shouldn’t we be aware of those sites that we support? Do we bear any responsibility to be proactive about combatting discrimination and bias?

H5P in Google Classroom

I’ve been a proponent of H5P. H5P creates interactive activities. I’ve long used it within Moodle to create activities for students to utilize. H5P is open-source. This means that I don’t have to worry about them switching to a paid model and losing all of my material.

H5P has a wide variety of interactive tools. These include Interactive Videos, Flashcards, Dictation Activities, Speak the Word, and much, much more.

However, most teachers only use Google Classroom. Google Classroom is “easy” to use. It also doesn’t do much.

While I have mostly used H5P in Moodle, I have used Lumi as well. Lumi is a stand-alone H5P creation and editing tool. You can download the full application (Mac, Windows, or Linux), so that you own and control all of the data and information. You can use their cloud version as well.

While I was using Lumi, I realized that it will export activities as a web page. Hm. If it’s a web page, one could put the link in Google Classroom. I created an activity, exported that activity to a web page, uploaded the web page to Google Drive, and then linked it in Google Classroom.

Guess what? Google removed the ability to serve web pages from Google Drive, so one still needs to find a place to host the activity. Lumi still makes it easy to create, but you can also use the H5P WordPress plugin. Or, you can take advantage of the power and ease of use of Moodle.

Tech In Education

Background

I’ve long been using Technology in education. I was an early adopter. I clearly remember having one of the first WiFi access points in our district (an Apple “UFO”). I integrated Technology into my classes early on. The students were highly motivated, novelty of technology was high. At the time, I was teaching in a lock-up facility for teenagers. The students had lots of challenges. It was a great place to learn to teach.

I learned how to create worksheets that were easy to change, modify, and adapt. I learned to create quizzes that were different for different students. I had a wide range of student abilities in my classes.

I learned how to differentiate not only the quizzes but the instruction as well. I became a Constructivist. I learned to adjust the pathways so that the students could reach the same standards, but using different materials.

I worked with a variety of teachers who did similar work. Sometimes it looked very different, but many (most?), started including technology into their skill set. It was early on, but there was hope that most teachers would add some technology tools to their skill set.

Administration

I moved into school administration. I took some of my tech skills with me. I leveraged some of those skills to work with others.

For example, I can’t tell you how frustrated I was with calendars for example. We would get updates on calendars about weekly. Let me be clear here, we would get an updated paper calendar through interschool mail weekly. At the time, I kept my calendar on a PalmPilot. (side note, that was a great device, only really replaced by the iPhone – eventually, not the first edition). So every week I had to sit down and do a full review of my calendar. Did this event change? Nope. How about this one? Oh, look, one has been added. I begged the Administrative Assistant responsible for the district calendar to Please use a shared calendar.

I worked with several teachers to implement some laptop programs. We started a laptop program for our sixth graders. We brought in lots of computers for students and staff to use.

I started an after-school program to teach computer skills, with a technology integration focus. These were pretty well attended.

We shared differentiation strategies, actual classroom use, and more at Staff Meetings.

I moved from school administration into district administration as a Technology Director.

Technology Director

I spent about a decade as a Technology Director. I worked to bring in technology use throughout the district. I created a Technology Coach position (with two Technology Coaches) for the district. Together (with more Tech Team members), we focused on how to use technology for student success.

We had bits of success here and there but failed to institutionalize the growth. There were always lots of roadblocks. Lots of misunderstandings.

We did get a program where every teacher was at least expected to create a blog. No, this is not the greatest instructional use of technology, but it did help some teachers move to develop some tech skills. Even more importantly, it increased communication with our parents and community.

iPad Story

I clearly remember having lots of discussions about iPads. When the iPad was first introduced, it was, at least partially, targeted at schools. Several people were pushing how iPads were going to revolutionize education. There was a school in Ireland that went all iPads. Fraser Speirs was widely lauded for his work. Lots of media pushed the possibilities of the iPad. Los Angeles famously signed a billion-dollar iPad program (which promptly crashed and burned).

I was always of the belief that the iPad would never be a really successful product in education UNLESS there was a massive amount of professional development. I’m talking about the kind of professional development that we’ve never done.

Fraser Speirs ran the iPad program for almost a decade. In 2019, Fraser Speirs switched his one-to-one program to Chromebooks.

And, finally, the ultimate switch: moving the world’s first 1:1 iPad school away from iOS to Chromebook. Writing here in 2020 under Coronavirus lockdown, I can honestly say this was the most prescient thing I have ever done.

There was a time where Fraser Speirs argued that the iPad was a content creation device.

This is not meant to be critical of Fraser Speirs. There were several things that just didn’t catch on (like iTunes U), or never really were supported very well.

COVID

COVID hit and everyone went full-on technology. Zoom was purchased by tons of school districts. Learning Management Systems (LMS), or those that pretended to be an LMS – Google Classroom, were brought into schools. Teachers were NOT prepared for this. I posted about this early on, Learning Is Messy. Teachers did an incredible job of adjusting. Naturally, learning looked very different based on the teacher. Generally, though, COVID did not bring great technology implementation. COVID brought some use of technology.

Now that COVID is “over” (it’s not over, but we are acting like it), there is a huge backlash to technology. One of the most popular things I’m hearing is all about how we need to “limit screen time”. (This is actually nothing new. There was pushback about screen time prior to COVID shutting schools down.)

The optimistic side is pushing that teachers will “use the new skills that they developed during COVID”. I’m afraid that I’m not really seeing that. First of all, COVID was a different structure for education. Secondly, I’m not sure that educators were supported much in really using technology.

Technology Understanding

Michigan had a Teachers Technology Initiative (the TTI program) right about 2000. (It’s tough to find information about the program, so I’m going to mostly rely on my memory.) Here is a bit of a write-up from MacWorld:

The Teacher Technology Initiative (TTI) is a voluntary program designed to support teaching and learning in Michigan’s public schools and public school academies through a one-time investment in Michigan’s K-12 teachers. You can learn more at the TTI Web site. The initiative is managed by the Michigan Virtual University, a private, not-for-profit Michigan corporation established in 1998 “to meet the specific workforce development education and training needs of Michigan businesses and industries and their current and prospective employees through the innovative use of electronic learning technologies.”

The idea was to prime every teacher to develop technology skills by providing them with a computer (either a Mac or a Dell). So, lots of computers were purchased and handed out.

Maine has had the Maine Learning Technology Initiative (MLTI) since right about the same time. Maine has a different focus and has continued.

Teachers now use technology every day. Email is the prevalent communication platform. Many (most?) teachers use a computer every day. Grades are probably entered electronically. Maybe they post assignments on a blog (or Facebook or Instagram).

Yet, for many teachers, there hasn’t been a fundamental change. Sure, the worksheet is now typed up on a computer and printed on the copier. Or maybe the worksheet is shared electronically. But, it’s still a worksheet. (*Note: there is nothing wrong with worksheets. However, if that is the only form of assessment, or the educator isn’t clear about why a worksheet is used, well….).

Writing Across the Curriculum

Recently, I was reading Curmudgucation about Writing Across the Curriculum . Part of the point of the article was that not all teachers were prepared and trained to be writing teachers. And that got me thinking.

I think that technology is much like writing. Teachers still don’t have the requisite training, background, and knowledge to fully implement technology in their classrooms. We don’t really have universally implemented models of education with technology. (Yes, I’m aware of the work with Blended Learning Models. I believe in lots of them and am critical/hesitant/thoughtful about some of them. Blended Learning has been around for quite a while.)

EdTech

EdTech has long been a popular(???) topic in some circles. Different technology tools were going to completely revolutionize education. These tools were going to make teachers obsolete in some cases. Frequently, these were based on Adaptive Learning methods. This is where the software would adjust which lessons/material would be presented next based on what the student was doing or answered on a quiz.

Heck, even Khan Academy was going to take over at one point.

Now comes news that may EdTech is seeing a bit of withdrawal: EdTech is No Longer a Funding Fave.

Future

So, what is the future? Will we start to really investigate how we can make school reflective of student choice? Will we create opportunities for students to differentiate how they learn or prove that they have learned something? Will we help develop teachers to be the best that they can be?

« Older posts

© 2024 Troy Patterson

Theme by Anders NorenUp ↑