- 導論 | 文/李延華 | 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 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 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 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 |
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
#! /usr/bin/python | |
# | |
# Query and display EC2 metadata related to the AMI instance | |
# Copyright (c) 2009 Canonical Ltd. (Canonical Contributor Agreement 2.5) | |
# | |
# Author: Alon Swartz <[email protected]> | |
# | |
# This program is free software; you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation; either version 2 of the License, or |