L328 What Is Millennial Burnout?
What Is Millennial Burnout?
Do you often feel stressed? Does the pace of life make you feel like you're continually on the go or at the end of your rope? Are you often so wiped out by work that you struggle to switch off? And are you a member of the millennial generation, who, according to the Pew Research Center, were born between 1981 and 1996? If your answer to these questions is 'yes', maybe you suffer from 'millennial burnout'.
Millennial burnout is a term first popularised by BuzzFeed writer Anne Helen Petersen. Unlike 'regular' burnout, which leaves sufferers feeling physically and emotionally frazzled, run into the ground and overwhelmed, millennial burnout also adds, among other things, 'errand paralysis'. This is when minor tasks, such as cleaning the car, or sending a parcel in the mail, feel impossible. "It's not as if I were slacking in the rest of my life," she wrote. "But when it came to the stuff that wouldn't make my job easier or my work better, I avoided it." So it doesn't get done, which leads to a backlog of tasks and feelings of shame.
In the UK, 74% of us feel so stressed that we are coming apart at the seams, mentalhealth.org reports. So why are millennials tearing their hair out? Millennials feel their problems are 'exacerbated by social media, because of the constant pressure to be living up to your best life,' British psychotherapist Beverly Hills told the BBC. This pressure is made worse when the definition of 'success' seems to have changed. It used to be about earning money, but now it's things like being passionate about work, being super-healthy, holidaying and having amazing experiences, etc. That's a lot to have on your plate and the 'failure' to cope leaves many feeling guilty, ashamed and at their wits' end.
However, the concept of millennial burnout has not gone unchallenged. Many have said that it's merely a form of entitled laziness or the result of poor choices – for example, trying to do too much. After all, as psychoanalyst Josh Cohen writes for NBC, this isn't the first generation to suffer from overwork and exhaustion, nor is it the first to have to adapt to new forms of technology and culture. Could the answer simply be that millennial ambition reaches too far?
The jury is still out on whether millennial burnout is real or not – though it isn't a recognised medical condition. Whether it will become one is unknown. So for the time being, try not to stress about it.
L328 What Is Millennial Burnout?的更多相关文章
- English Learning -- 0611--When Burnout Is a Sign You Should Leave Your Job
I like the following article from Harvard Business Review, as I ever experienced burnout at work. Ve ...
- How to recover from 'programmers burnout(转)
程序员这个压力大,节奏快,任务繁重,所以很容易令人感觉倦怠,令人感觉烦躁,郁闷,疲惫不堪. 本文将介绍的是程序员如何克服可怕的“职业倦怠”. 丰盛的早餐——身处高科技产业漩涡的我们常常会熬夜到凌晨两三 ...
- 【转载学习前辈的经验】-- Mistakes I made (as a developer) 我(作为一名开发者)所犯过的错误
我 2006 年开始工作,至今已经 10 年.10 年是个里程碑,我开始回顾自己曾经犯过的错误,以及我希望从同行那里得到什么类型的忠告.一切都在快速改变,10 年了,我不能确定这些秘诀是否还有用. 不 ...
- phpize 动态添加 PHP 扩展的错误及解决方案
使用phpize 动态添加 PHP 扩展是开发中经常需要做的事情,但是在 macOS 中,首次使用该功能必然会碰到一些错误,本文列出了这些错误的解决方法. 问题一: 执行 phpize 报错如下: $ ...
- Mod_python: The Long Story
mod_python: the long story - Grisha Trubetskoy Mod_python: The Long Story Oct 25th, 2013 | Comments ...
- 详解Linux2.6内核中基于platform机制的驱动模型 (经典)
[摘要]本文以Linux 2.6.25 内核为例,分析了基于platform总线的驱动模型.首先介绍了Platform总线的基本概念,接着介绍了platform device和platform dri ...
- Networked Graphics: Building Networked Games and Virtual Environments (Anthony Steed / Manuel Fradinho Oliveira 著)
PART I GROUNDWORK CHAPTER 1 Introduction CHAPTER 2 One on One (101) CHAPTER 3 Overview of the Intern ...
- 100-days: twenty-two
Title: Why urban millennials love Uniqlo(优衣库) urban adj.都市的:具有城市或城市生活特点的; 市内; millennial n.千禧世代 mill ...
- (24)How generational stereotypes hold us back at work
https://www.ted.com/talks/leah_georges_how_generational_stereotypes_hold_us_back_at_work/transcript ...
随机推荐
- lua语言中的假
[1]测试及结论 (1)代码 local var_false = false local var_nil = nil if var_zero then print('var_zero : true') ...
- Python在金融量开源项目列表
Python也已经在金融量化投资领域占据了重要位置,开源项目列表:
- 泛型-----键值对----映射 hashmap--entry中key value 链表
connection map 集合框架 * java.util.Collection *集合与数组相似,也是可以保存一组元素,并且提供了操作元素的相关方法. *collection是所有集合的顶级接口 ...
- 1333:【例2-2】Blah数集
1333:[例2-2]Blah数集 注意是数组,答案数组中不能有重复数字 q数组是存储答案的 代码: #include<iostream> #include<cstdio> # ...
- 1、Storm集群安装
1.下载 本次选择1.2.2版本进行安装 解压安装到/opt/app目录下 2.配置环境变量 export STORM_HOME=/opt/app/apache-storm-1.2.2 export ...
- Python 缓存服务
缓存服务:mongodb.redis.memcache mongodb:早期的缓存系统,直接持久话,数据即存内存也同步到硬盘. redis:主流缓存系统,半持久化,默认存在内存,需要手动调用存在硬盘, ...
- springboot跑定时任务
使用@Scheduled注解实现 1.在启动类上加上@EnableScheduling 开启定时任务 2.新建一个任务类,在方法上添加@Scheduled注解 @Componentpublic cla ...
- auto关键字
使用前: #include<string> #include<vector> int main() { std::vector<std::string> vs; f ...
- 一道简单树形dp
题意:给定一棵树,从中选出一些节点,使得不成父子关系的节点对数最多.问这个最大值是多少. 思路:首先既然是给定一颗树,先要选择合适的数据结构,来保存这颗树.由于这颗树只关心根节点在哪里,所以只需要用一 ...
- 巧用同步请求处理react页面刷新问题
很多时候,我们会遇到这种情况,组件加载需要请求后台数据,然后填充组件.那么我们一般会这样处理:如[使用异步请求的方式]代码: 加载组价的时候,未获得数据,render一个空的div: 然后异步请求数据 ...