Skip to content

How Successful People Start and End Their Workday

It’s hardly news that our day to day habits can have a big impact—positive or negative—on how productive we are. What works for one person may not be the best fit for someone else, but there are some practices that many credit to their success and wellbeing.

From morning workouts and walks, to designating family time, to winding down before bed, there are lots you can try in our own life. Maybe you already have a few habits you enjoy and rely on that you feel set you up well for the day so you can do what you set out to do in work or at school.

This article from Fast Company highlights some of the habits successful people they interviewed said help them begin and end their work day on a good note.

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'); } }); }); });