- 導論 | 文/李延華 | 2006-02-13 發表
- 建立檢查清單,以防掛一漏萬 | 文/iThome | 2006-02-08 發表
- 人事篇 | 文/iThome | 2006-01-27 發表
- 系統維運篇 | 文/張明德 | 2006-02-14 發表
- 機房管理:平時如戰時,戰時如平時 | 文/劉人豪 | 2006-02-16 發表
- 資安篇 | 文/蘇碩鈞 | 2006-02-14 發表
- 辦公室作業應變篇 | 文/張瑞隆 | 2006-02-14 發表
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: 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 |
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: Chu-Siang Lai / chusiang (at) drx.tw | |
| # Blog: http://note.drx.tw | |
| # Filename: slackpost.sh | |
| # Modified: 2018-03-28 15:58 | |
| # Description: Post a message to a Slack channel. | |
| # Reference: | |
| # | |
| # - https://gist.github.com/dopiaza/6449505#gistcomment-1627214 |
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
| { | |
| "Version": "2012-10-17", | |
| "Statement": [ | |
| { | |
| "Effect": "Allow", | |
| "Action": "s3:ListAllMyBuckets", | |
| "Resource": "arn:aws:s3:::MyBucketName" | |
| }, | |
| { | |
| "Action": [ |
An Webinar list of Ansible Inc. from @ansible.
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
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| =begin | |
| The Vagrantfile template is fork from https://gist.github.com/joepurdy/28b894574cee15344918. | |
| # Ansible (Windows) VMs | |
| config.vm.box = "chusiang/win10-x64-ansible" | |
| # System Account Credentials |