THIS GIST WAS MOVED TO TERMSTANDARD/COLORS REPOSITORY.
PLEASE ASK YOUR QUESTIONS OR ADD ANY SUGGESTIONS AS A REPOSITORY ISSUES OR PULL REQUESTS INSTEAD!
| #!/bin/bash | |
| # Idea from http://stackoverflow.com/questions/2144406/git-shallow-submodules | |
| git submodule init | |
| for i in $(git submodule | sed -e 's/.* //'); do | |
| spath=$(git config -f .gitmodules --get submodule.$i.path) | |
| surl=$(git config -f .gitmodules --get submodule.$i.url) | |
| git clone --depth 1 $surl $spath | |
| done | |
| git submodule update |
| # (File moved to https://github.com/ole/Storyboard-Strings-Extraction) |
| // By Jamie Chapman, @chappers57 | |
| // License: open, do as you wish, just don't blame me if stuff breaks ;-) | |
| public class ParseProxyObject implements Serializable { | |
| private static final long serialVersionUID = 1L; | |
| private HashMap<String, Object> values = new HashMap<String, Object>(); | |
| public HashMap<String, Object> getValues() { | |
| return values; |
THIS GIST WAS MOVED TO TERMSTANDARD/COLORS REPOSITORY.
PLEASE ASK YOUR QUESTIONS OR ADD ANY SUGGESTIONS AS A REPOSITORY ISSUES OR PULL REQUESTS INSTEAD!
| // put this in your AppDelegate | |
| - (void)changeRootViewController:(UIViewController*)viewController { | |
| if (!self.window.rootViewController) { | |
| self.window.rootViewController = viewController; | |
| return; | |
| } | |
| UIView *snapShot = [self.window snapshotViewAfterScreenUpdates:YES]; | |
| [viewController.view addSubview:snapShot]; | |
| self.window.rootViewController = viewController; |
| // | |
| // RBResizer.swift | |
| // Locker | |
| // | |
| // Created by Hampton Catlin on 6/20/14. | |
| // Copyright (c) 2014 rarebit. All rights reserved. | |
| // | |
| import UIKit |
| import Foundation | |
| extension Character { | |
| func utf8() -> UInt8 { | |
| let utf8 = String(self).utf8 | |
| return utf8[utf8.startIndex] | |
| } | |
| } | |
| func encrypt(c:Character, key:Character) -> String { |
| import android.content.Context; | |
| import android.graphics.Typeface; | |
| import android.os.Build; | |
| import android.support.v4.view.PagerAdapter; | |
| import android.support.v4.view.ViewPager; | |
| import android.util.AttributeSet; | |
| import android.util.TypedValue; | |
| import android.view.Gravity; | |
| import android.view.LayoutInflater; | |
| import android.view.View; |
モヒカンslackのチャネルリスト(毎日 AM 5:00 自動更新)
詳細はQiita:究極のIT系最新技術情報収集用Slackチーム公開 - モヒカンSlack -を参照。
参加は
Unfortunately as of writing this (Oct 18, 2017) there is no built in integration for multiple target groups per AWS ECS service. Here are a few things you can try: