November 30, 2025 • 0 comments

EdTech Updates and Holiday Reflections: The Power of Community and Connection

Bi–Weekly Insights on Everything EdTech

Welcome to The EdTech Pulse, your ultimate guide to staying ahead of the curve with the latest trends and innovations in education technology, K-12, higher education, and workforce development. With each edition, we provide fresh industry news, insightful analysis, and valuable resources to empower you to make proactive, informed decisions. This week, we share the latest news in EdTech and highlight the importance of community support during the holiday season.

Never miss a beat – subscribe now and be at the forefront of the dynamic world of EdTech and beyond!

Industry News

Funding
  • What would dissolving the U.S. Department of Education mean for schools? Explore the potential impacts on federal funding, state oversight, and the future of public education in the U.S. here
  • Colleges move quickly to expand financial aid. As affordability becomes a top priority, institutions are unveiling new plans to support students. Learn how these initiatives aim to reduce financial barriers here
  • The 2025-26 FAFSA form is here! The U.S. Department of Education has officially released the updated form, making it easier for students to access financial aid for their education. Learn more about the changes here.
Innovation, Trends, & Tools
  • Can AI tutoring outperform active learning? New findings suggest AI-driven tutoring may be more effective at boosting student outcomes. Dive into the study and what it means for the future of education here.  
  • What does EdTech consolidation mean for students? As the industry shifts, schools are finding new ways to empower learners and ensure access to innovative tools. Explore how these changes are shaping classrooms here
  • Early STEM career awareness sets students up for success. Discover how introducing STEM pathways at a young age can inspire future innovation and prepare students for in-demand careers here.

The Course Materials Corner with Dr. Mike Moore

Academic Researcher | Course Materials Access Advocate | Intellectual Egalitarianism Champion | Higher Education

I think we can all agree that we are hitting our holiday season stride. Most of us have eaten all of our Halloween candy, or at least our kids’ Halloween candy. Hopefully, your Thanksgiving menus are finalized, or you made your reservations at your favorite restaurant. Lastly, those Christmas wish lists are starting to get filled out. So, with that in mind, I thought I would skip the course materials talk for this week and talk about something else:

For many of us, this two month stretch is joyous. We get to see family we haven’t seen in a while or long-lost friends from our youth. However, for some, the holidays can be a difficult and challenging time. My grandmother loved the holidays because her house was filled with guests and visitors. She would read ‘Twas the Night Before Christmas to her 6 kids, 14 grandchildren, and many great grandchildren. But, for her, it was also a difficult time. She lost her dad on Christmas morning when she was a young adult. I remember her taking a few minutes away from everyone every year to have a minute to herself.

I was instructed to make this edition of the Course Materials Corner light and joyous, which is the spirit of the holiday season. But, again, for many of our friends and colleagues, this time can be personally challenging. So, I ask you, as you reflect on all that you are grateful for this season, pick up the phone and call someone you haven’t talked to in a long time and ask them how they are doing. Send that “WYD” text to someone you haven’t seen in ages. Open your heart and door to someone new. Who knows, you might start a holiday tradition only read about in fairytales.

If you or someone you know is having a difficult time this holiday season, please call or text 988 (National Suicide Prevention Lifeline). Get them, and you, the help necessary. We love and appreciate you all. Thank you for being part of the PIP Family. Have a Happy Thanksgiving!

-M

For the Educators

We offer paid opportunities for educators to participate in market research that will help transform educational tools. Opt-in here to learn more.

Upcoming Conferences

PIP Announcements

Exciting Content Coming Soon…

Exciting Content Coming Soon…
No new EdTech Elevated episode this week, but we’ve got some exciting #content in the works!

Thanks for reading!

Don’t forget to subscribe to stay informed on the latest education insights and updates, helping you stay ahead in the increasingly competitive field of education technology.
Category
'); iframeDoc.close();const iframeSummary = summary.cloneNode(true); iframeSummary.style.display = 'block'; iframeDoc.body.appendChild(iframeSummary); if (!iframeSummary) { throw new Error('No PDF summary found in isolated iframe.'); }const pageElements = Array.from(iframeSummary.querySelectorAll('.pdf-page')); if (!pageElements.length) { throw new Error('No PDF pages were found in isolated summary.'); } const images = Array.from(iframeSummary.querySelectorAll('img'));await Promise.all(images.map((img) => { if (img.complete) return Promise.resolve(); return new Promise((resolve) => { img.addEventListener('load', resolve, { once: true }); img.addEventListener('error', resolve, { once: true }); }); }));const pdf = new JsPdfCtor({ orientation: 'portrait', unit: 'px', format: [794, 1123], putOnlyUsedFonts: true, hotfixes: ['px_scaling'] });for (let i = 0; i < pageElements.length; i++) { const pageEl = pageElements[i]; const renderPageCanvas = async (el, useCors, removeBg) => { let target = el; if (removeBg) { target = el.cloneNode(true); target.style.position = 'fixed'; target.style.left = '-99999px'; target.style.top = '0'; const bgImage = target.querySelector('img'); if (bgImage) bgImage.remove(); target.style.background = '#ffffff'; document.body.appendChild(target); }try { return await html2canvasLib(target, { scale: 2, useCORS: useCors, allowTaint: false, backgroundColor: '#ffffff', scrollX: 0, scrollY: 0, width: 794, height: 1123, windowWidth: 794, windowHeight: 1123 }); } finally { if (removeBg && target && target.parentNode) { target.parentNode.removeChild(target); } } };let canvas; try { canvas = await renderPageCanvas(pageEl, true, false); // Throws if canvas is tainted canvas.toDataURL('image/jpeg', 0.98); } catch (pageErr) { canvas = await renderPageCanvas(pageEl, false, true); console.warn('PDF page fallback used (background not exported):', pageErr); }const imgData = canvas.toDataURL('image/jpeg', 0.98); if (i > 0) pdf.addPage(); pdf.addImage(imgData, 'JPEG', 0, 0, 794, 1123);const ctaLink = pageEl.querySelector('a[href="https://partnerinpublishing.com/contact-us/"]'); if (ctaLink && typeof pdf.link === 'function') { const pageRect = pageEl.getBoundingClientRect(); const linkRect = ctaLink.getBoundingClientRect(); const linkX = Math.max(0, linkRect.left - pageRect.left); const linkY = Math.max(0, linkRect.top - pageRect.top); const linkW = Math.max(1, linkRect.width); const linkH = Math.max(1, linkRect.height); pdf.link(linkX, linkY, linkW, linkH, { url: 'https://partnerinpublishing.com/contact-us/' }); } }const pdfBlob = pdf.output('blob'); const blobUrl = URL.createObjectURL(pdfBlob); const link = document.createElement('a'); link.href = blobUrl; link.download = 'EdTech-Growth-Checklist.pdf'; link.style.display = 'none'; document.body.appendChild(link); link.click(); setTimeout(() => { URL.revokeObjectURL(blobUrl); link.remove(); }, 1500); } catch (err) { console.error('Error al generar PDF:', err); const msg = (err && err.message) ? err.message : 'Unknown error generating PDF.'; alert('No se pudo descargar el PDF. Revisa consola para detalle técnico.\n' + msg); } finally { if (pdfIframe && pdfIframe.parentNode) { pdfIframe.parentNode.removeChild(pdfIframe); } summary.style.display = 'none'; btn.textContent = 'Download Full Report'; } });}btnNext.addEventListener('click', () => { if (currentStep < categories.length - 1) { currentStep++; renderStep(); } else { calculateResult(); } });btnBack.addEventListener('click', () => { if (currentStep > 0) { currentStep--; renderStep(); } });renderStep(); });

Social Media Strategy

From CEO thought leadership to brand engagement, this guide shows how to turn scrolls into sales.

Website Content & SEO

Your site is your handshake—learn how to structure messaging that drives conversions.

Video Marketing

Boost trust, engagement, and leads with video content that converts.

Strategic Copywriting

Great copy converts. Download this guide to see how messaging impacts every touchpoint—from email to website.