365videos -
“It feels like a morning ritual, not homework.” — Pilot participant 6. Challenges & Mitigations | Challenge | Mitigation Strategy | |-----------|---------------------| | Dropout around day 30–50 | Introduce “catch-up weekends” or skip bank (3 skips per month) | | Content fatigue | Vary format (talking head, animation, screencast, interview) | | Life events | Pause/resume functionality, streak freeze tokens | | Production cost | Use AI video generation or user-generated content for long tails | | Diminishing novelty | Thematic arcs (e.g., month 1: basics, month 2: advanced) | 7. Comparison with Existing Models | Model | Release cadence | Retention driver | Best for | |-------|----------------|------------------|-----------| | Netflix (binge) | All at once | Immediate gratification | Entertainment | | YouTube algorithmic | Continuous, chaotic | Novelty & recommendations | Discovery | | 365videos | Fixed daily | Habit + streak + anticipation | Behavior change, learning | | MOOCs (weekly) | Weekly modules | Deadline-driven | Academic credit |
def check_streak(user, today): last_watch = user.last_watch_day if last_watch == today - timedelta(days=1): user.streak += 1 elif last_watch == today: pass # already watched today else: user.streak = 0 return user.streak This paper is released under CC BY-NC 4.0 for educational use. 365videos
| Component | Implementation | |-----------|----------------| | | Video N+1 becomes available only after watching video N (or at 00:00 UTC daily) | | Streak tracking | Redis or Firebase counter with grace periods (e.g., 24–48h skip forgiveness) | | Recommendation suppression | No algorithmic rabbit holes — only “today’s video” and “previous days” | | Cross-device sync | Web, mobile, TV — resume from last watched day | | Analytics | Daily active users (DAU) / stickiness, drop-off by day number, completion heatmaps | “It feels like a morning ritual, not homework
| Metric | 365videos (daily) | Batch (traditional) | |--------|------------------|---------------------| | Completion rate (100% of content) | 68% | 22% | | Average days active per week | 5.8 | 1.2 | | Delayed test score (2 weeks post) | 84% | 61% | | Voluntary referrals | 2.4 per user | 0.3 per user | drop-off by day number
daily video, habit formation, microlearning, retention, video streaming, spaced repetition, engagement metrics 1. Introduction Video dominates internet traffic (82% by 2025, Cisco-style estimates), yet most video courses suffer from the “syllabus drop-off”: 70–90% of learners never finish a multi-hour course. The 365videos model inverts traditional design by imposing daily atomic units — each video is 3–15 minutes, released exactly once per day for 365 consecutive days.