| 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 |
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
| [user] | |
| name = Jeffry Angtoni | |
| email = jeffryangtoni24@gmail.com | |
| # Add GPG signing key later, use exclamation mark for subkey. | |
| # signingKey = 4BB6D45482678BE3! | |
| [core] | |
| editor = vim | |
| # Use true for windows, and input for linux/mac os. | |
| autocrlf = true | |
| [color] |
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
| #!/usr/bin/env python | |
| """ | |
| Lint python files before commit with flake8 and pep8 lint tools. | |
| You can define lint settings in '.pep8' file in the project root. | |
| Section '[pep8]' if for pep8 linter, and section '[flake8]' is for flake8. | |
| INSTALL: | |
| 1. sudo pip install flake8 pep8 | |
| 2. Save this file to '.git/hooks/pre-commit' file in your git repository |
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
| // 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'; |
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
| 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'; |
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: |
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
| 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" |
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
| #!/usr/bin/env bash | |
| # GitHub (NodeJS) Auto Deployment Script | |
| # for debug | |
| #set -o xtrace | |
| # Version | |
| _GHPLOY_VERSION="0.1a1" | |
| # Reserved variables |
An introduction to curl using GitHub's API.
Makes a basic GET request to the specifed URI
curl https://api.github.com/users/caspyin
NewerOlder