View 0.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"abstract": "<jats:p>Although much has been written about management competencies, the literature is sparse in its consideration of specific competencies for services marketing decision making. This article considers the pertinent literature surrounding management competencies in the context of decision making for services management. A case description of a consumer services company is used to develop the argument. The case description focuses on the progression of the management decision makers\u2019 competencies over a three\u2010year period. The importance of continually developing the competencies of the key decision makers in an organisation is emphasised, particularly in relation to the changing nature of managerial roles and responsibilities.</jats:p>", | |
"URL": "http://dx.doi.org/10.1108/09564239810199969", | |
"resource": { | |
"primary": { | |
"URL": "https://www.emerald.com/insight/content/doi/10.1108/09564239810199969/full/html" | |
} | |
}, | |
"member": "140", |
View gist:ffe64fdd70c6da2bed467a1d33cb7817
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[12752408:motion] [NTC] [ALL] conf_load: Processing thread 0 - config file /home/vedmant/.motion/motion.conf | |
[12752408:motion] [NTC] [ALL] motion_startup: Motion 4.1.1 Started | |
[12752408:motion] [NTC] [ALL] motion_startup: Logging to syslog | |
[12752408:motion] [NTC] [ALL] motion_startup: Using log type (ALL) log level (INF) | |
[12752408:motion] [INF] [ALL] conf_output_parms: Writing configuration parameters from all files (1): | |
[12752408:motion] [INF] [ALL] Thread 0 - Config file: /home/vedmant/.motion/motion.conf | |
[12752408:motion] [INF] [ALL] daemon off | |
[12752408:motion] [INF] [ALL] process_id_file /var/run/motion/motion.pid | |
[12752408:motion] [INF] [ALL] setup_mode off | |
[12752408:motion] [INF] [ALL] log_level 7 |
View laravel-deploy.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
NO_DEV="--no-dev" | |
if [[ $1 == "dev" ]]; then | |
NO_DEV="" | |
fi | |
git fetch |
View TracksEmails.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Tests; | |
use Mail; | |
use Swift_Events_EventListener; | |
use Swift_Events_SendEvent; | |
use Swift_Mime_Message; | |
/** |
View Symfony 2 Nginx configuration with php-fpm and maintenance file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# List of upstream php servers | |
upstream project_php_fpm { | |
least_conn; | |
ip_hash; | |
server 127.0.0.1:9101; | |
server 127.0.0.1:9102; | |
} | |
proxy_cache_path /home/user/project/nginx/cache levels=1:2 keys_zone=project_cache:10m max_size=10g inactive=60m; # use_temp_path=off; |
View init.d service script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
### BEGIN INIT INFO | |
# Provides: <NAME> | |
# Required-Start: $local_fs $network $named $time $syslog | |
# Required-Stop: $local_fs $network $named $time $syslog | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Description: <DESCRIPTION> | |
### END INIT INFO |