🌟 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> |
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 | |
# Filename: teams-chat-post-for-workflows.sh | |
# Modified: 2024-07-22 11:44 (UTC+08:00) | |
# Description: Post a message to Microsoft Teams via "Post to a chat when a webhook request is received" workflows. | |
# Reference: | |
# | |
# - https://gist.github.com/chusiang/895f6406fbf9285c58ad0a3ace13d025 | |
# - https://devblogs.microsoft.com/microsoft365dev/retirement-of-office-365-connectors-within-microsoft-teams/ |
2017/11/01 此頁面已不再維護,請移至 GitLab 上觀看。
Ansible 是個與 Puppet, Salt, Chef 並列其四的 Infrastructure as Code 組態設定工具,其簡單易用的特性讓人愛不釋手;GitLab 是業界常見的 Git 私有版本控制服務,搭配其 GitLab CI 更能建立屬於自己的發佈流程。
本次凍仁將藉由工作坊的形式,帶領大家一探持續交付的世界和自動化的威力!
- kb4019264: Windows 7.
- kb4019215: Windows 8.
150fe39c77e54c38ff0458674353bf41352f886683c0feb3ef52f6fbbd3f8ac2 windows6.1-kb4019264-x64_c2d1cef74d6cb2278e3b2234c124b207d0d0540f.msu
59668a383811d621d2ab2e372fb183c5733022a1a5bf9ceebb0bbb69ce735824 windows6.1-kb4019264-x86_aaf785b1697982cfdbe4a39c1aabd727d510c6a7.msu
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: bat-run-docker.sh | |
# Modified: 2017-03-27 00:25 | |
# Description: Batch run multiple docker containers. | |
# ============================================================ | |
for X in {1..31}; do |
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
<map version="1.0.1"> | |
<!-- To view this file, download free mind mapping software FreeMind from http://freemind.sourceforge.net --> | |
<node CREATED="1480142207100" ID="ID_1653007671" MODIFIED="1480146243259" STYLE="bubble"> | |
<richcontent TYPE="NODE"><html> | |
<head> | |
</head> | |
<body> | |
<p> | |
2016-11-26 / 第 7 組 |
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 | |
# Filename: route53-ec2-ip-match.sh | |
# Modified: 2016-11-14 15:31 | |
# Description: Quick check domain address and ec2 public ip. | |
# | |
# - It's need install the `jq` package. | |
# | |
# Reference: |
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 | |
# Filename: memory-check.sh | |
# Modified: 2016-10-24 15:47 | |
# Description: Monitoring process memory usage. | |
# | |
# `ps aux` 結果中的 RSS (resident set size) 的單位是 KB,而 zabbix- | |
# server 用的單位是 B,所以得多乘以 1024 才符合真實情況。 | |
# |
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: clone-qiniu-bucket.sh | |
# Modified: 2016-11-01 11:06 | |
# Description: Clone all files from bucket1 to bucket2. | |
# | |
# $ chmod +x clone-qiniu-bucket.sh | |
# $ ./clone-qiniu-bucket.sh bucket_source bucket_new |