Live data from Hacker News

Expressive Writing Cools Brain on Stressful Tasks

msutoday.msu.edu

11–20 of 52 posts

Re: Expressive Writing Cools Brain on Stressful Tasks

#11
post #8

I have also found that it helps to put swear-words in the commit messages when I'm struggeling a lot with something. Once I get to that point I will stop working on that specific problem until the next day, but swearing about it in the commit message helps me not think about it anymore and also when I come back to it the next day I can see from the commit what I was struggeling with. Obviously only do this for reposi…

See: [1] [1] http://www.commitlogsfromlastnight.com/

This is what the world is built on

Re: Expressive Writing Cools Brain on Stressful Tasks

#12
post #6

Is it writing did the trick, or any verbalization will do? Maybe all you need is to spend 8 minutes on thinking about task?

There are cognitive benefits to talking to an imaginary person. https://www.nytimes.com/2017/06/08/smarter-living/benefits-o... http://nymag.com/scienceofus/2017/05/the-perks-of-talking-to...

Re: Expressive Writing Cools Brain on Stressful Tasks

#13
In my former job I kept a secret "project shitlist" detailing my feelings about the worst parts of the codebase(usually 8-year old technical debt).

Now I see that they were actually pretty tame. Here's an example:

Variables used before declaration because "code style".

Re: Expressive Writing Cools Brain on Stressful Tasks

#14
post #13

In my former job I kept a secret "project shitlist" detailing my feelings about the worst parts of the codebase(usually 8-year old technical debt). Now I see that they were actually pretty tame. Here's an example: Variables used before declaration because "code style".

What language is this where you can use a variable before declaring it?

Re: Expressive Writing Cools Brain on Stressful Tasks

#15
post #14
post #13

In my former job I kept a secret "project shitlist" detailing my feelings about the worst parts of the codebase(usually 8-year old technical debt). Now I see that they were actually pretty tame. Here's an example: Variables used before declaration because "code style".

What language is this where you can use a variable before declaring it?

Javascript allows it.

Re: Expressive Writing Cools Brain on Stressful Tasks

#17
post #6

Is it writing did the trick, or any verbalization will do? Maybe all you need is to spend 8 minutes on thinking about task?

There are cognitive benefits to talking to an imaginary person. https://www.nytimes.com/2017/06/08/smarter-living/benefits-o... http://nymag.com/scienceofus/2017/05/the-perks-of-talking-to...

Sometimes it doesn't have to be a person, or even alive: https://en.wikipedia.org/wiki/Rubber_duck_debugging

Re: Expressive Writing Cools Brain on Stressful Tasks

#18
I enjoy expressively writing to cool off sometimes, so I was interested in checking out the study itself.

The link to the actual study from 2017/09/08 can be found here:

https://www.ncbi.nlm.nih.gov/pubmed/28884815

"The effect of expressive writing on the error-related negativity among individuals with chronic worry."

> The error-related negativity (ERN), an ERP elicited immediately after errors, is enlarged among individuals with anxiety. The relationship between anxiety and enlarged ERN has spurred interest in understanding potential therapeutic benefits of decreasing its amplitude within anxious individuals. The current study used a tailored intervention-expressive writing-in an attempt to reduce the ERN among a sample of individuals with chronic worry. Consistent with hypotheses, the ERN was reduced in the expressive writing group compared to an unrelated writing control group. Findings provide experimental support that the ERN can be reduced among anxious individuals with tailored interventions. Expressive writing may serve to "offload" worries from working memory, therefore relieving the distracting effects of worry on cognition as reflected in a decreased ERN.

The study is not shy about what conclusions should and shouldn't be drawn from it. There is large "Limitations and future directions" section. Here are some excerpts:

> Although the current study sheds light on the utility of expressive writing in reducing the ERN among worriers, there are limitations that should be addressed in future studies.

> First, the samples size (N540) was rather small for a between-subjects investigation, and, unfortunately, this is the rule rather than the exception in comparable cognitive neuroscience studies (Holmes & Pizzagalli, 2010; Klawohn et al., 2016; Olvet & Hajcak, 2012)

> Second, we examined the ERN only after participants engaged in the writing and were therefore unable to assess how these processes changed from before to after writing.

> Third, we did not include a low-worry control condition. The purpose of the present study, however, was to provide a very specific test of the effects of expressive writing on the ERN in individuals with chronic levels of worry. Indeed, we meant to build upon the prior study that tested the effect of attention bias modification on the ERN (Nelson et al., 2015) by examining high-anxious individuals instead of college students sampled without regard for anxiety symptoms.

> Fourth, because we utilized a student sample, it would be useful to examine the effects of expressive writing on the ERN in clinical samples in future studies. However, as we detailed in Method, the individuals in our sample reported worry symptoms that were comparable to previous studies of patients with GAD, and by using a well-validated measure in the PSWQ, it is likely that many of our participants had GAD. Moreover, college students are not immune to psychopathology.

Re: Expressive Writing Cools Brain on Stressful Tasks

#20
post #16

Earlier quoted context omitted.

Javascript allows it.

Does it actually allow it? I thought the declaration is just hoisted to the top of the scope?

It is hoisted at runtime. There is no compile/transpile step that physically moves the declaration to the top, so syntactically the declaration can be after variable usage.
Post reply on HN