All we need to worry about _sass/_highlights.scss.
First visit This web page to see live example.
Copy the following piece of code and paste or replace all code there in _highlights.scss file.
highlight {
background-color: #ffffff;| apiVersion: helm.cattle.io/v1 | |
| kind: HelmChart | |
| metadata: | |
| name: prometheus-operator | |
| namespace: kube-system | |
| spec: | |
| chart: stable/prometheus-operator | |
| targetNamespace: prometheus | |
| valuesContent: |- | |
| alertmanager: |
All we need to worry about _sass/_highlights.scss.
First visit This web page to see live example.
Copy the following piece of code and paste or replace all code there in _highlights.scss file.
highlight {
background-color: #ffffff;| ############################################# | |
| ### Proxmox V & Docker-CE + Portainer # | |
| ############################################# | |
| ## Rescue System | |
| # Erase other disks | |
| dd if=/dev/zero of=/dev/sda bs=1M count=100 | |
| dd if=/dev/zero of=/dev/sdb bs=1M count=100 | |
| # You can install debian 9 via the guide: |
When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a change.
Please note we have a code of conduct, please follow it in all your interactions with the project.
This page describes MDB (Message Driven Bean) configuration with Wildfly (> version 8 implementing Java EE 7/8) and Websphere MQ messaging broker.
Websphere MQ provides a resource adapter which is able to interact with latest and even legacy Websphere MQ versions. (See this link for WMQ v8.0 Resource Adapter compatibility details)
| ''' | |
| @author Bommarito Consulting, LLC; http://bommaritollc.com/ | |
| @date 20131029 | |
| This script monitors and logs to CSV the status of all tunnels for all VPNs for a single EC2 region. | |
| ''' | |
| # Imports | |
| import boto | |
| import boto.ec2 | |
| import boto.vpc |
| # 0 is too far from ` ;) | |
| set -g base-index 1 | |
| # Automatically set window title | |
| set-window-option -g automatic-rename on | |
| set-option -g set-titles on | |
| #set -g default-terminal screen-256color | |
| set -g status-keys vi | |
| set -g history-limit 10000 |
| # TO_FOLDER=/something | |
| # FROM=/your-es-installation | |
| DATE=`date +%Y-%m-%d_%H-%M` | |
| TO=$TO_FOLDER/$DATE/ | |
| echo "rsync from $FROM to $TO" | |
| # the first times rsync can take a bit long - do not disable flusing | |
| rsync -a $FROM $TO | |
| # now disable flushing and do one manual flushing |
| import sys | |
| from gi.repository import Gtk, Gdk, WebKit | |
| class BrowserTab(Gtk.VBox): | |
| def __init__(self, *args, **kwargs): | |
| super(BrowserTab, self).__init__(*args, **kwargs) | |
| go_button = Gtk.Button("go to...") | |
| go_button.connect("clicked", self._load_url) | |
| self.url_bar = Gtk.Entry() |