[How To] Get notifications when someone posts in a subreddit

  Check Which Profiles That Are Disabled (61)

<<h3><font color="#26B900">Creates a global variable containing a list of disabled profiles<br><br>/u/Svampsson</font></h3>>
A1: Anchor 

<<h6><font color="#26B900">Sets a local variable to a list of enabled profiles</font></h6>>
A2: Variable Set [ Name:%profiles_enabled To:%PENABLED Do Maths:Off Append:Off ] 

<<h6><font color="#26B900">Turns the list into an array</font></h6>>
A3: Variable Split [ Name:%profiles_enabled Splitter:, Delete Base:Off ] 

<<h6><font color="#26B900">Creates an array containing all the profiles on your device</font></h6>>
A4: Test Tasker [ Type:Profiles Data: Store Result In:%profiles ] 

A5: For [ Variable:%profile Items:%profiles() ] 

<<h6><font color="#26B900">Adds all  disabled profiles to an array</font></h6>>
A6: Array Push [ Name:%not_enabled Position:1000 Value:%profile Fill Spaces:Off ] If [ %profiles_enabled() !~R %profile ]

A7: End For 

<<h6><font color="#26B900">Sets the variable separator to "|" so it can be used in a Regex matching</font></h6>>
A8: Variable Join [ Name:%not_enabled Joiner:| Delete Parts:Off ] 

A9: Flash [ Text:%not_enabled Long:Off ] 

<<h6><font color="#26B900">Sets a global variable to the list of disabled profiles</font></h6>>
A10: Variable Set [ Name:%PDISABLED To:%not_enabled() Do Maths:Off Append:Off ] 
/r/tasker Thread