Empty file to get a better name for the gist
| import * as eks from '@aws-cdk/aws-eks'; | |
| import * as iam from '@aws-cdk/aws-iam'; | |
| import * as cdk8s from 'cdk8s'; | |
| import { Construct, Stack, StackProps } from '@aws-cdk/core'; | |
| import * as k8s from '../imports/k8s'; | |
| export class TestClusterStack extends Stack { | |
| constructor(scope: Construct, id: string, props?: StackProps) { | |
| super(scope, id, props); |
| a4b.amazonaws.com | |
| access-analyzer.amazonaws.com | |
| account.amazonaws.com | |
| acm-pca.amazonaws.com | |
| acm.amazonaws.com | |
| airflow-env.amazonaws.com | |
| airflow.amazonaws.com | |
| alexa-appkit.amazon.com | |
| alexa-connectedhome.amazon.com | |
| amazonmq.amazonaws.com |
To start using this site you need to have a GitHub account to sign in. Once signed in it will create your profiles information based on your GitHub account and return you to your brand new profile page. Click the profile editor button to enter in if you want to be a student, partner or teacher. You should also enter in what skills you have and what skills you are looking to learn on this page.
Once you have your profile how you like it, head on over to the search page to look for what you want to use on your next project and what kind of partner you are looking for. After hitting the search button we will find the very best matches for you to begin your pair programming journey!
| /* @flow */ | |
| /* eslint-disable */ | |
| import mongoose from 'mongoose'; | |
| export type MongoId = typeof mongoose.Types.ObjectId | { | |
| toString(): string, | |
| }; | |
| export type MongoOrScalarId = MongoId | string | number; |
| // run with `node infinite.js` in node v4.x+ | |
| // must have Inquirer installed (`npm install inquirer`) | |
| const inquirer = require('inquirer'); | |
| const Rx = require('rx'); | |
| const prompts = new Rx.Subject(); | |
| function makePrompt(msg) { | |
| return { |
| import { Observable } from 'rxjs' | |
| import 'rxjs/add/observable/of' | |
| import 'rxjs/add/operator/map' | |
| import 'rxjs/add/operator/merge' | |
| import { createAction } from 'redux-actions' | |
| export const SESSION_STORAGE_KEY = 'SESSION_STORAGE_KEY' | |
| export const GET_SESSION_REQUESTED = 'payout/GET_SESSION_REQUESTED' | |
| export const GET_SESSION_FOUND = 'payout/GET_SESSION_FOUND' |
| /** | |
| * File Upload into Amazon S3 | |
| * @param string $input_name | |
| * @param int $restaurant_id | |
| * @return string/bolean | |
| */ | |
| public function _fileUpload($input_name, $restaurant_id) { | |
| if (isset($_FILES[$input_name]) && ($_FILES[$input_name]) != null) { |
Picking the right architecture = Picking the right battles + Managing trade-offs
- Clarify and agree on the scope of the system
- User cases (description of sequences of events that, taken together, lead to a system doing something useful)
- Who is going to use it?
- How are they going to use it?