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
Terraform will perform the following actions: | |
# module.api.aws_security_group_rule.api_to_kafka will be destroyed | |
- resource "aws_security_group_rule" "api_to_kafka" { | |
- cidr_blocks = [ | |
- "10.0.0.0/16", | |
] -> null | |
- from_port = 9090 -> null |
This file has been truncated, but you can view the full file.
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
00601,18.180555, -66.749961 | |
00602,18.361945, -67.175597 | |
00603,18.455183, -67.119887 | |
00606,18.158345, -66.932911 | |
00610,18.295366, -67.125135 | |
00612,18.402253, -66.711397 | |
00616,18.420412, -66.671979 | |
00617,18.445147, -66.559696 | |
00622,17.991245, -67.153993 | |
00623,18.083361, -67.153897 |
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
#!/usr/bin/env bash | |
read -p "See https://www.meter.com/mac_osx_awdl_psa for more details. You will be prompted for your admin password. Do you want to continue? y/n/c " choice | |
case $choice in | |
[yY]* ) echo "Great" ;; | |
[nN]* ) exit ;; | |
[cC]* ) exit ;; | |
*) exit ;; | |
esac |
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
#!/usr/bin/env bash | |
set -euo pipefail | |
while true; do | |
if ifconfig awdl0 |grep -q "<UP"; then | |
(set -x; ifconfig awdl0 down) | |
fi | |
sleep 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
[ | |
{ | |
"name": "mango", | |
"image": "https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png", | |
}, | |
{ | |
"name": "mango", | |
"image": "https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png", | |
}, | |
{ |
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
( | |
"<NSLayoutConstraint:0x7fcf1bfdd440 V:[NDContentActionsView:0x7fcf1bfd2310(34)]>", | |
"<NSLayoutConstraint:0x7fcf1bf2c260 V:[NDUIKit.NDUICircularImageView:0x7fcf1bfd84f0(20)]>", | |
"<NSLayoutConstraint:0x7fcf1bfc3d20 V:[NDUIKit.NDUIImageView:0x7fcf1bfd4100(290)]>", | |
"<NSLayoutConstraint:0x7fcf1bf290c0 V:|-(20)-[NDUIKit.NDUICircularImageView:0x7fcf1bfd84f0] (Names: '|':UIView:0x7fcf1bf5b980 )>", | |
"<NSLayoutConstraint:0x7fcf1bf23b60 V:[NDUIKit.NDUICircularImageView:0x7fcf1bfd84f0]-(11)-[TTTAttributedLabel:0x7fcf1bfca720'Lorem ipsum dolor sit ame...']>", | |
"<NSLayoutConstraint:0x7fcf1bff3e40 V:[TTTAttributedLabel:0x7fcf1bfca720'Lorem ipsum dolor sit ame...']-(10)-[NDUIKit.NDUIImageView:0x7fcf1bfd4100]>", | |
"<NSLayoutConstraint:0x7fcf1bff1980 V:[NDUIKit.NDUIImageView:0x7fcf1bfd4100]-(0)-[NDStoryAttachmentContainerView:0x7fcf1bff84d0]>", | |
"<NSLayoutConstraint:0x7fcf1bff1a70 V:[NDStoryAttachmentContainerView:0x7fcf1bff84d0]-(8)-[NDScopeLineView:0x7fcf1bff9fd0]>", | |
"<NSLayoutConstraint:0x7f |
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
// | |
// AsyncSenTestingKitTests.h | |
// AsyncSenTestingKitTests | |
// | |
// Created by 小野 将司 on 12/03/17. | |
// Copyright (c) 2012年 AppBankGames Inc. All rights reserved. | |
// | |
#import <SenTestingKit/SenTestingKit.h> | |
#import "SenAsyncTestCase.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
- (void)loadView { | |
splashView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 320, 480)]; | |
splashView.image = [UIImage imageNamed:@"Default.png"]; | |
[[[UIApplication sharedApplication] keyWindow] addSubview:splashView]; | |
[[[UIApplication sharedApplication] keyWindow] bringSubviewToFront:splashView]; | |
if (splashView) { | |
splashView.alpha = 1.0f; | |
[UIView beginAnimations:@"FadeOut" context:nil]; | |
[UIView setAnimationDelegate:self]; |