appsecu.re 담당자(담당자 이메일)에게 바이너리 파일 요청
$ appsecure [global options] command [command options] [arguments...]
var mandrillApiKey; | |
var path = 'https://mandrillapp.com/api/1.0/messages/'; | |
exports.initialize = function(apiKey) { | |
mandrillApiKey = apiKey; | |
}; | |
exports.sendMail = function(params, options){ | |
callMandrill('send.json', params, options); | |
}; |
Vendor | Machine | per Hour | per Month (1 machine) | per Month Total |
---|---|---|---|---|
n1-standard-1 | $0.038 | $28.272 | $84.816 (3 machines) | |
aws | m3.medidum | $0.067 | $49.848 | $199.392 (4 machines) |
#!/bin/bash | |
#remove containers | |
docker rm $(docker ps -a -f 'status=exited' -q) | |
#remove images | |
docker rmi $(docker images -f "dangling=true" -q) |
// | |
// PopupView.m | |
// Modeling | |
// | |
// Created by Heechul on 10/26/15. | |
// Copyright © 2015 min. All rights reserved. | |
// | |
#import <UIKit/UIKit.h> |
@interface UIScrollView (AdjustOffset) | |
- (CGFloat)updateContentOffsetWithPreviousHeight:(CGFloat)previousHeight distanceFromBottom:(CGFloat)distanceFromBottom; | |
@end | |
@implementation UIScrollView (AdjustOffset) | |
- (void)updateContentOffset:(CGPoint)offset | |
{ |
// | |
// NSString+Ranges.h | |
// Modeling | |
// | |
// Created by Heechul Ryu on 12/11/15. | |
// Copyright © 2015 Heechul Ryu. All rights reserved. | |
// | |
#import <Foundation/Foundation.h> |
// | |
// PhotoResource.h | |
// Modeling | |
// | |
// Created by Heechul on 1/8/16. | |
// Copyright © 2016 Heechul Ryu. All rights reserved. | |
// | |
#import <UIKit/UIKit.h> |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |