This file contains hidden or 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 | |
# Author: Erik Kristensen | |
# Email: [email protected] | |
# License: MIT | |
# Nagios Usage: check_nrpe!check_docker_container!_container_id_ | |
# Usage: ./check_docker_container.sh _container_id_ | |
# | |
# The script checks if a container is running. | |
# OK - running |
This file contains hidden or 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
# Ivaylo Kuzev <[email protected]>, 2014 | |
# Zenburn like colorscheme for https://github.com/hut/ranger . | |
# default colorscheme. | |
# Copyright (C) 2009-2013 Roman Zimbelmann <[email protected]> | |
# This software is distributed under the terms of the GNU GPL version 3. | |
from ranger.gui.colorscheme import ColorScheme | |
from ranger.gui.color import * |
This file contains hidden or 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
let g:tagbar_type_html = { | |
\ 'ctagstype' : 'html', | |
\ 'kinds' : [ | |
\ 'f:JavaScript funtions', | |
\ 'a:named anchors', | |
\ 'r:html', | |
\ 'b:body', | |
\ 'o:object', | |
\ 'c:class', | |
\ ], |
This file contains hidden or 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
--langmap=html:.htm.html | |
--regex-html=/]*>(.*)<\/html>/\1/r,html/ | |
--regex-html=/]*>(.*)<\/body>/\1/b,body/ | |
--regex-html=/]*>(.*)<\/h1>/\1/h,header/ | |
--regex-html=/]*>(.*)<\/h2>/. \1/h,header/ | |
--regex-html=/]*>(.*)<\/h3>/. \1/h,header/ | |
--regex-html=/]*>(.*)<\/h4>/. \1/h,header/ | |
--regex-html=/]*>(.*)<\/h5>/. \1/h,header/ | |
--regex-html=/]*>(.*)<\/h6>/. \1/h,header/ | |
--regex-html=/<([a-zA-Z][a-zA-Z0-9]*)[^>]*[ \t]+id='([^']+)'/\1#\2/o,object/ |