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
// | |
// ClassInfo.m | |
// sentinelShuttleValidationCheck | |
// | |
// Created by uzysjung on 2016. 1. 28.. | |
// Copyright © 2016년 skpdi. All rights reserved. | |
// | |
#import "ClassInfo.h" | |
#import "RakeClientMetricSentinelShuttle.h" |
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
container_commands: | |
01_download_nanum_font: | |
command: wget http://static.campaign.naver.com/0/hangeul/renew/download/NanumFont_TTF.zip | |
02_unzip_font: | |
command: unzip Nanum*.zip | |
03_creat_fontdir: | |
command: mkdir -p /usr/share/fonts/nanumfont | |
04_mv_font: | |
command: mv *.ttf /usr/share/fonts/nanumfont | |
05_add_font_cache: |
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
commands: | |
01limits: | |
command: echo -e "#commands\nroot soft nofile 65536\nroot hard nofile 65536\n* soft nofile 65536\n* hard nofile 65536" >/etc/security/limits.d/custom.conf | |
02sysctl: | |
command: sysctl -w fs.file-max=131072 fs.nr_open=131072 net.ipv4.netfilter.ip_conntrack_max=131072 net.nf_conntrack_max=131072 |
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
// | |
// NSLocale+ios8_1.h | |
// | |
// Created by Uzysjung on 2014. 11. 11.. | |
// Copyright (c) 2014년 SKPlanet. All rights reserved. | |
// | |
#import <Foundation/Foundation.h> | |
#if TARGET_IPHONE_SIMULATOR | |
@interface NSLocale (iOS8_1) |
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
// | |
// NSLocale+ios8_1.m | |
// | |
// Created by Uzysjung on 2014. 11. 11.. | |
// Copyright (c) 2014년 SKPlanet. All rights reserved. | |
// | |
#if TARGET_IPHONE_SIMULATOR | |
#import "NSLocale+ios8_1.h" | |
#import <objc/runtime.h> |
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
// | |
// DebugLog.h | |
// Uzys DebugLog | |
// | |
// Created by UzysJung on 13. 2. 25.. | |
// Copyright (c) 2013년 Uzys. All rights reserved. | |
// | |
/* | |
How to use |
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
#define ApplicationDelegate ((AppDelegate *)[[UIApplication sharedApplication] delegate]) | |
#define UserDefaults [NSUserDefaults standardUserDefaults] | |
#define NotificationCenter [NSNotificationCenter defaultCenter] | |
#define SharedApplication [UIApplication sharedApplication] | |
#define Bundle [NSBundle mainBundle] | |
#define MainScreen [UIScreen mainScreen] | |
#define ShowNetworkActivityIndicator() [UIApplication sharedApplication].networkActivityIndicatorVisible = YES | |
#define HideNetworkActivityIndicator() [UIApplication sharedApplication].networkActivityIndicatorVisible = NO | |
#define NetworkActivityIndicatorVisible(x) [UIApplication sharedApplication].networkActivityIndicatorVisible = x | |
#define NavBar self.navigationController.navigationBar |