🌟 chusiang@gundam 🎁 ~ 🎄 ❄️ 17:47
$ cowsay -f moose 'Merry Christmas'
_________________
< Merry Christmas >
-----------------
\
\ \_\_ _/_/
\ \__/
(oo)\_______
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<zabbix_export> | |
<version>3.2</version> | |
<date>2018-12-22T09:33:22Z</date> | |
<groups> | |
<group> | |
<name>Templates</name> | |
</group> | |
</groups> | |
<templates> |
tags: GDG-Cloud-KH
, K8S
This file contains 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: Chu-Siang Lai / chusiang.lai (at) gmail.com | |
# Filename: retry_gitbook_build.sh | |
# Modified: 2020-03-04 15:47 | |
# Description: | |
# As the gitbook maintainer, I want to auto retry the "gitbook build" tasks, | |
# so that we can reduce a lot of manual retry actions. | |
# ============================================================================= |
This file contains 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
# EditorConfig is awesome: https://EditorConfig.org | |
# top-most EditorConfig file | |
root = true | |
# Unix-style newlines with a newline ending every file | |
[*] | |
end_of_line = lf | |
insert_final_newline = true |
This file contains 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
--- | |
# .ansible-lint | |
# exclude_paths included in this file are parsed relative to this file's location | |
# and not relative to the CWD of execution. CLI arguments passed to the --exclude | |
# option will be parsed relative to the CWD of execution. | |
exclude_paths: | |
- .gitlab-ci.yml | |
- logs/ | |
- roles/ |
This file contains 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: Chu-Siang Lai / chusiang (at) drx.tw | |
# Blog: http://note.drx.tw | |
# Filename: migrate-diary-to-sub-dir.sh | |
# Modified: 2023-09-04 15:52 | |
# Description: Migrate diary from vimwiki/obsidian format to multi-sub | |
# directory architecture for "mattn/calendar-vim" plugin, and | |
# only review/edit via Vim. | |
# Reference: https://github.com/chusiang/vimrc/commit/faca1de7e49f9a51cba3805d4ba3b2fc8a449909 |