AWS region code | AWS region name | Number of AZs | AZ names |
---|---|---|---|
us-east-1 | Virginia | 4 | us-east-1a, us-east-1b, us-east-1c, us-east-1e |
us-west-1 | N. California | 2 | us-west-1a, us-west-1b |
us-west-2 | Oregon | 3 | us-west-2a, us-west-2b, us-west-2c |
eu-west-1 | Ireland | 3 | eu-west-1a, eu-west-1b, eu-west-1c |
eu-central-1 | Frankfurt | 2 | eu-central-1a, eu-central-1b |
ap-southeast-1 | Singapore | 2 | ap-southeast-1a, ap-southeast-1b |
ap-southeast-2 | Sydney | 2 | ap-southeast-2a, ap-southeast-2b, ap-southeast-2c |
ap-northeast-1 | Tokyo | 2 | ap-northeast-1a, ap-nort |
View addons.ts
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
// Storybook v5.2.7 | |
import '@storybook/addon-knobs/register'; | |
import '@storybook/addon-actions/register'; | |
import '@storybook/addon-viewport/register'; | |
import '@storybook/addon-storysource/register'; | |
import '@storybook/addon-docs/register'; | |
import '@storybook/addon-a11y/register'; |
View next.config.js
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
const withTypescript = require('@zeit/next-typescript') | |
const withCss = require('@zeit/next-css') | |
const withSass = require('@zeit/next-sass'); | |
const withImages = require('next-images'); | |
const withOffline = require('next-offline'); | |
const withManifest = require('next-manifest') | |
const pipe = (...ops) => ops.reduce((a, b) => (arg) => b(a(arg))); | |
const isProd = process.env.NODE_ENV === 'production'; |
View AWSRegionsAndAZs.md
View gist:208dcbc19c8dec8946ace8fe8dd50e7f
People
![]() :bowtie: |
:smile: |
:laughing: |
---|---|---|
:blush: |
:smiley: |
:relaxed: |
:smirk: |
:heart_eyes: |
:kissing_heart: |
:kissing_closed_eyes: |
:flushed: |
:relieved: |
:satisfied: |
:grin: |
:wink: |
:stuck_out_tongue_winking_eye: |
:stuck_out_tongue_closed_eyes: |
:grinning: |
:kissing: |
:kissing_smiling_eyes: |
:stuck_out_tongue: |
View tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet
start new:
tmux
start new with session name:
tmux new -s myname
View ghploy Dockerfile
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
FROM rastasheep/ubuntu-sshd:16.04 | |
LABEL maintainer="jeffry.angtoni@traveloka.com" | |
# use sby repo? | |
ARG use_sby_repo=1 | |
# Repo list(s) | |
ENV sby_REPO="kartolo.sby.datautama.net.id" |
View curl.md
Introduction
An introduction to curl
using GitHub's API.
The Basics
Makes a basic GET request to the specifed URI
curl https://api.github.com/users/caspyin
View ssh-known-hosts-mgmt.sh
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
# This is a short collection of tools that are useful for managing your | |
# known_hosts file. In this case, I'm using the '-f' flag to specify the | |
# global known_hosts file because I'll be adding many deploy users on this | |
# system. Simply omit the -f flag to operate on ~/.ssh/known_hosts | |
# Add entry for host | |
ssh-keyscan -H github.com > /etc/ssh/ssh_known_hosts | |
# Scan known hosts | |
ssh-keygen -f /etc/ssh/ssh_known_hosts -H -F github.com |
View ghploy
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/env bash | |
# GitHub (NodeJS) Auto Deployment Script | |
# for debug | |
#set -o xtrace | |
# Version | |
_GHPLOY_VERSION="0.1a1" | |
# Reserved variables |
View cli.py
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
from argparse import ArgumentParser | |
cli = ArgumentParser() | |
subparsers = cli.add_subparsers(dest="subcommand") | |
def argument(*name_or_flags, **kwargs): | |
"""Convenience function to properly format arguments to pass to the | |
subcommand decorator. |
NewerOlder