I hereby claim:
- I am miseyu on github.
- I am miseyu2000 (https://keybase.io/miseyu2000) on keybase.
- I have a public key ASC_Hr9dhcW41Y5ZrMgYSom88xCOPCi9BuwnP8Qp_vJP6go
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
Makefile and YAML templates for automating the use of AWS Elastic Container Registry with Kubernetes.
Based off of this awesome Redsaid blog post.
| import {bootstrap, Component, Inject, ElementRef, onInit} from 'angular2/angular2'; | |
| @Component({ | |
| selector: 'my-app', | |
| template: ` | |
| <div class="mdl-layout mdl-js-layout mdl-layout--fixed-header"> | |
| <header class="mdl-layout__header"> | |
| <div class="mdl-layout__header-row"> | |
| <!-- Title --> | |
| <span class="mdl-layout-title">Title</span> |
| openssl genrsa -out api.wizpra.com.key 2048 | |
| openssl req -new -key api.wizpra.com.key -out api.wizpra.com.csr |
| #!/usr/bin/env bash | |
| rm -rf "${HOME}/Library/Caches/CocoaPods" | |
| rm -rf "`pwd`/Pods/" | |
| pod update |
| class CreateDynamoDbTable < ActiveRecord::Migration | |
| def up | |
| unless exists? 'table_name' | |
| table = dynamo_db.tables.create('table_name', | |
| 1, 1, :hash_key => { :significant_id => :number }) | |
| while table.status == :creating | |
| puts "Waiting for table create to complete.." | |
| sleep 2 | |
| end | |
| end |
| $http | |
| method: 'DELETE' | |
| url: '/hogehoge' | |
| headers: 'Content-Type':'application/json; charset=UTF-8' |