Skip to content

Instantly share code, notes, and snippets.

@vedmant
vedmant / 0.json
Created February 19, 2023 20:13
Example Item Public Data File from Crossref
{
"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",
[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
@vedmant
vedmant / laravel-deploy.sh
Last active September 21, 2018 23:53
A script for deploying Laravel application, includes maintenance mode, composer, migrations, clearing cache and restart queues
#!/bin/bash
NO_DEV="--no-dev"
if [[ $1 == "dev" ]]; then
NO_DEV=""
fi
git fetch
@vedmant
vedmant / TracksEmails.php
Created May 18, 2017 12:14
Helper for testing emails with Laravel
<?php
namespace Tests;
use Mail;
use Swift_Events_EventListener;
use Swift_Events_SendEvent;
use Swift_Mime_Message;
/**
# 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;
#!/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