Skip to content

Instantly share code, notes, and snippets.

@wifecooky
wifecooky / aws-shell.md
Last active January 24, 2022 11:51
[AWS] aws-shell #aws

インストール

pip install aws-shell

起動

aws-shell

Exit

control + d

@wifecooky
wifecooky / git-clone-all.sh
Last active February 16, 2017 05:19
GIT関連
#!/bin/bash
# git の remote branch をすべてローカルに clone する
# git clone all remote branches locally
# https://coderwall.com/p/0ypmka/git-clone-all-remote-branches-locally
for branch in `git branch -a | grep remotes | grep -v HEAD | grep -v master `; do
git branch --track ${branch#remotes/origin/} $branch
done
@wifecooky
wifecooky / AWS CLI.md
Last active May 15, 2019 12:51
AWS コマンドラインインターフェイス(AWS CLI)関連

AWS CLIコマンドの実行オプション

--output {json|text|table}
--region {<region>}
--filter
--query
--profile   別プロファイルでの実行(ユーザー、表示形式、region等のセット)

--region {}

@wifecooky
wifecooky / markdown.md
Last active February 17, 2017 06:41
Markdown関連

MarkdownのTable内で改行を入れる


タグ入れればできる

|name            |
|:---------------|
|foobar <br> baz |
@wifecooky
wifecooky / VIM.md
Last active February 17, 2017 09:31
VIM関連

VIMでCSVの列を入れ替える

対象データ

果物,りんご
酒,ウオツカ
調味料,塩

コマンド

@wifecooky
wifecooky / FixAppStore.md
Last active February 21, 2017 08:12
Macbook関連

現象


App Storeでアプリのアップデートを行なっていましたら、下記のようなエラーが出て失敗しました。

アップデートを完了できませんでした。
この製品のディストリビューションファイルを検証できませんでした。 破損しているか、署名されていない可能性があります。

対策


@wifecooky
wifecooky / English Name of Special Characters.md
Last active May 9, 2019 00:42
[English] Special Characters #English

English Name of Special Characters

\   backslash
`   backtick
*   asterisk
_   underscore
{}  curly braces
[]  square brackets
()  parentheses
@wifecooky
wifecooky / rotate_aws_keys.py
Last active July 27, 2019 15:59 — forked from john-auld/rotate_aws_keys.py
[AWS] Python 3 compatible script to rotate aws access keys #aws
'''
Rotate AWS access keys for each profile in the users ${HOME}/.aws/credentials file.
Note: the default profile is not altered
Author: John Auld
'''
import configparser
import os
import boto3
@wifecooky
wifecooky / create s3.py
Last active July 27, 2019 16:04 — forked from taogawa/gist:5613314
[AWS] S3を使う(Python) #aws
# coding: utf-8
# バケットにファイルを作成する
import boto
from boto.s3.connection import S3Connection
from boto.s3.key import Key
AWS_KEY_ID = 'aws_key_id'
AWS_SECRET_KEY = 'aws_secret_key'
BUCKET_NAME = 'bucket_name'
@wifecooky
wifecooky / cloudwatch.tf
Created July 27, 2019 16:33
[AWS] EC2 Instance Scheduling with Terraform
### Cloudwatch Events ###
# Event rule: Runs at 8pm during working days
resource "aws_cloudwatch_event_rule" "start_instances_event_rule" {
name = "start_instances_event_rule"
description = "Starts stopped EC2 instances"
schedule_expression = "cron(0 8 ? * MON-FRI *)"
depends_on = ["aws_lambda_function.ec2_start_scheduler_lambda"]
}
# Runs at 8am during working days