June 17, 2016
With Dovetail Task Manager, a Task will define the properties that get set when the task is executed. Set a Property to a Static Text ValueFor example, I can have a task that creates a subcase, and I can set it up so that the subcase title will be set to Do something awesome!The task property setup would look like:So when the subcase is created, its title will be Do something awesome! Set a Property to the Same Value as a Case PropertyAlternatively, instead of setting a property to a static text value, we can set it to be the same as a case property.For example, we can set the subcase title to be the same as the case title, as shown here:So when the subcase is created, its title will be the same as whatever the case title is. Dynamic Property NotationWhen…
Task Manager trick: Properties with static text and a case property
June 17, 2016
With Dovetail Task Manager, a Task will define the properties that get set when the task is executed. Set a Property to a Static Text ValueFor example, I can have a task that creates a subcase, and I can set it up so that the subcase title will be set to Do something awesome!The task property setup would look like:So when the subcase is created, its title will be Do something awesome! Set a Property to the Same Value as a Case PropertyAlternatively, instead of setting a property to a static text value, we can set it to be the same as a case property.For example, we can set the subcase title to be the same as the case title, as shown here:So when the subcase is created, its title will be the same as whatever the case title is. Dynamic Property NotationWhen…
June 10, 2016
What We Do and Understanding the CustomerTesting the waters, as a marketer, can be tenuous. Depending on marketing campaigns, we run the risk of boring our intended audience or annoying them. Over the years, I have come to understand that each effort can be a good effort, as it may reach just the person it was intended to reach. But, there is also the risk of over-saturation. The most important thing, for me, as a marketer and as someone who truly believes in our product and cares about our company, is to know the customer.Knowing the Customer - YOUR CustomerIt isn't enough to know who the customer is - their name, rank, and serial number. It isn't enough to know what they do. It isn't nearly enough to know what our competitors do when it comes to their own marketing…
January 5, 2016
There were some posts a while back that talked about using npm scripts to handle most of your mundane tasks over using a task manager. I only recently got around to diving into this concept and wanted to share some of my discoveries.Why use task runners at all?This is an easy one. In development, there are things that have to get run and rerun constantly. Make a change to your javascript? Recompile (if you’re using webpack, browserify, babel, etc.). Make a change to your sass/less? Recompile. Want to release your code? Bundle, minify, copy assets, distribute. Lint your code? Run eslint or jshint or jscs.For example, to compile some code via webpack for development could look like webpack -d --progress --colors. Granted, it could be just webpack -d but I like the extra niceties. More realistically, you might have multiple…