Preferences > Key Bindings:
[
{ "keys": ["alt+command+l"], "command": "reindent" , "args": {"single_line": false}}
]
Preferences > Settings:
| <?xml version="1.0" encoding="UTF-8" standalone="yes" ?> | |
| <CodeBlocksConfig version="1"> | |
| <editor> | |
| <colour_sets> | |
| <ACTIVE_COLOUR_SET> | |
| <str> | |
| <![CDATA[modnokai night shift v2]]> | |
| </str> | |
| </ACTIVE_COLOUR_SET> | |
| <ACTIVE_LANG> |
| # smtplib module send mail | |
| import smtplib | |
| TO = '[email protected]' | |
| SUBJECT = 'TEST MAIL' | |
| TEXT = 'Here is a message from python.' | |
| # Gmail Sign In | |
| gmail_sender = '[email protected]' |
| Dropbox Style Filename |
| // Spark 2.1 | |
| val spark = SparkSession.builder().master("local").getOrCreate() | |
| // Given a list of mixture of strings in integers | |
| val values = List("20030100013280", 1.0) | |
| // Create `Row` from `Seq` | |
| val row = Row.fromSeq(values) | |
| // Create `RDD` from `Row` |
| CC := g++ | |
| CFLAGS := -Wall -g | |
| TARGET := example | |
| # $(wildcard *.cpp /xxx/xxx/*.cpp): get all .cpp files from the current directory and dir "/xxx/xxx/" | |
| SRCS := $(wildcard *.cpp) | |
| # $(patsubst %.cpp,%.o,$(SRCS)): substitute all ".cpp" file name strings to ".o" file name strings | |
| OBJS := $(patsubst %.cpp,%.o,$(SRCS)) | |
| all: $(TARGET) |
Preferences > Key Bindings:
[
{ "keys": ["alt+command+l"], "command": "reindent" , "args": {"single_line": false}}
]
Preferences > Settings:
| #!/usr/bin/env bash | |
| replace_or_fail() { | |
| FROM_VALUE=$1 | |
| TO_VALUE=$2 | |
| FILENAME=$3 | |
| echo "Replace from '$FROM_VALUE' to '$TO_VALUE' in '$FILENAME'... " | |
| grep -q ${FROM_VALUE} ${FILENAME} && sed -i.old 's/'${FROM_VALUE}'/'${TO_VALUE}'/' ${FILENAME} || ( (>&2 echo "\033[0;31mError: '$FROM_VALUE' not found") && exit 1 ) | |
| echo "Done. " | |
| } |
| [CA2 yzhong@ca2-p1v01-mon4-0001 ~]$ sudo systemctl status -l -n 20 prometheus.service | |
| ● prometheus.service - Prometheus | |
| Loaded: loaded (/etc/systemd/system/prometheus.service; enabled; vendor preset: disabled) | |
| Active: active (running) since Fri 2019-08-09 17:04:21 UTC; 4 days ago | |
| Process: 16654 ExecReload=/bin/kill -s HUP $MAINPID (code=exited, status=0/SUCCESS) | |
| Main PID: 15929 (prometheus) | |
| CGroup: /system.slice/prometheus.service | |
| └─15929 /opt/prometheus/prometheus/prometheus --config.file /opt/prometheus/prometheus/prometheus.yml --storage.tsdb.path=/srv/prometheus/prometheus --storage.tsdb.retention=120d --web.listen-address=0.0.0.0:9090 | |
| Aug 13 21:19:42 ca2-p1v01-mon4-0001.ca2.internal.zone prometheus[15929]: level=warn ts=2019-08-13T21:19:42.797Z caller=manager.go:513 component="rule manager" group=HoustonDashboard msg="Evaluating rule failed" rule="alert: HoustonDashboardBackendErrorRate\nexpr: ((sum by(instance) (rate(haproxy_backend_http_responses_total{backend=~\"houston-dashboa |
| [CA2 yzhong@ca2-p1v01-mon4-0001 ~]$ sudo systemctl status -l -n 20 prometheus.service | |
| ● prometheus.service - Prometheus | |
| Loaded: loaded (/etc/systemd/system/prometheus.service; enabled; vendor preset: disabled) | |
| Active: active (running) since Fri 2019-08-09 17:04:21 UTC; 4 days ago | |
| Process: 16654 ExecReload=/bin/kill -s HUP $MAINPID (code=exited, status=0/SUCCESS) | |
| Main PID: 15929 (prometheus) | |
| CGroup: /system.slice/prometheus.service | |
| └─15929 /opt/prometheus/prometheus/prometheus --config.file /opt/prometheus/prometheus/prometheus.yml --storage.tsdb.path=/srv/prometheus/prometheus --storage.tsdb.retention=120d --web.listen-address=0.0.0.0:9090 | |
| Aug 13 21:19:42 ca2-p1v01-mon4-0001.ca2.internal.zone prometheus[15929]: level=warn ts=2019-08-13T21:19:42.797Z caller=manager.go:513 component="rule manager" group=HoustonDashboard msg="Evaluating rule failed" rule="alert: HoustonDashboardBackendErrorRate\nexpr: ((sum by(instance) (rate(haproxy_backend_http_responses_total{backend=~\"houston-dashboa |