Or the 25 hour work week. Heavily borrowed from cblgh.
The structure is simple:
- 1 pomodoro planning the work day
- 8 pomodoros of work
- 3 pomodoros of break
1+8+3=12 pomodoros,
Or the 25 hour work week. Heavily borrowed from cblgh.
The structure is simple:
1+8+3=12 pomodoros,
# Prometheus Recoding and Alert Rules Collection | |
# Copyright (C) 2017 Matous Jan Fialka, <http://mjf.cz/> | |
# Released under the terms of The MIT License | |
groups: | |
- name: node_common | |
interval: 30s | |
rules: |
.vagrant |
Sometimes you may have a run away reindex process that aborted due to a MySQL connection error of some sorts. It may be useful to use the following MySQL commands to aid in debugging.
Magento Enterprise labels the reindex lock via the constant REINDEX_FULL_LOCK in app/code/core/Enterprise/Index/Model/Observer.php
SELECT IS_FREE_LOCK('mydatabase_name.reindex_full')
Returns 1 is specified lock is free and can be acquired, 0 if it’s in use, NULL if an error occurs.
Some stuff off the top of my head:
Monitorama 2013:
RICON East 2013:
events { | |
worker_connections 1024; | |
} | |
http { | |
default_type text/html; | |
access_log /dev/stdout; | |
sendfile on; | |
keepalive_timeout 65; |
THIS GIST WAS MOVED TO TERMSTANDARD/COLORS
REPOSITORY.
PLEASE ASK YOUR QUESTIONS OR ADD ANY SUGGESTIONS AS A REPOSITORY ISSUES OR PULL REQUESTS INSTEAD!
# to generate your dhparam.pem file, run in the terminal | |
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.
# force HTTP to HTTPS - /etc/nginx/conf.d/nonssl.conf | |
server { | |
listen 80; | |
server_name jira.example.com; | |
access_log off; | |
return 301 https://$server_name$request_uri; | |
} | |
# /etc/nginx/conf.d/jira.conf | |
server { |