Skip to content

Want to Be More Productive? Try This!

Frustrated when you get to the end of the day and feel like you’ve barely scratched the surface of your to-do list? Maybe you feel like you’re in a good groove with blocking out time for the big stuff, but what about those small tasks you need to get done but find yourself forgetting or putting off

This article by Marla Tabaka for Inc.com explains how you can optimize those ten- and fifteen-minute gaps in your day when you would otherwise be getting sucked into email or social media scrolling by keeping a separate list of to-do items for those small tasks you can knock off in fifteen minutes or less.

Next time you have fifteen minutes between finishing a project and hopping on a call, take a look at your list of little tasks and pick one to cross off. Way more productive than wasting time trying to remember what you’re forgetting to take care of!

document.addEventListener("DOMContentLoaded", function() { // Get all accordion toggle elements var accordions = document.querySelectorAll('.accordion-toggle'); // Add click event listeners to each accordion toggle accordions.forEach(function(accordion) { accordion.addEventListener('click', function() { // Get the panel-collapse element directly following this accordion-toggle var panelCollapse = this.nextElementSibling; // Check if this panel-collapse is currently open var isOpen = panelCollapse.classList.contains('open'); // Remove 'open' class from all panel-collapses accordions.forEach(function(acc) { var collapse = acc.nextElementSibling; collapse.classList.remove('open'); }); // Toggle 'open' class only on the clicked panel-collapse if (!isOpen) { panelCollapse.classList.add('open'); } }); }); });