- Windows 7
- PowerShell
This file contains 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
diff --git a/iOS/Images.xcassets/aws_icon_iam.imageset/Contents.json b/iOS/Images.xcassets/aws_icon_iam.imageset/Contents.json | |
index 5d728bb..2557241 100644 | |
--- a/iOS/Images.xcassets/aws_icon_iam.imageset/Contents.json | |
+++ b/iOS/Images.xcassets/aws_icon_iam.imageset/Contents.json | |
@@ -3,21 +3,21 @@ | |
{ | |
"idiom" : "universal", | |
"scale" : "1x", | |
- "filename" : "Deployment_Management_IAM-1.png" | |
+ "filename" : "aws_icon_iam.png" |
This file contains 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
RCT_EXPORT_MODULE(); | |
RCT_EXPORT_METHOD(canOpenSettingsApp:(RCTResponseSenderBlock)callback) | |
{ | |
if (/* iOS8以上? */) { | |
/* コールバックに渡す引数は、1つでも配列として渡す必要あり */ | |
callback(@[true]); | |
} else { | |
callback(@[false]); | |
} |
This file contains 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
var names = [ | |
'shikaku', | |
'affiliate', | |
'kabu', | |
'tochi', | |
'programming' | |
]; | |
function main() { | |
var i; | |
var currentJob = 1; |
This file contains 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
// ソース | |
var SomeComponent = React.createClass({ | |
... | |
render: function() { | |
return ( | |
<form action="/upload" method="POST" encType="multipart/form-data"> | |
<input type="file" name="file_input" /> | |
<input type="submit" value="Upload" /> |
Node-RED
npm install -g node-red
node-red
This file contains 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
input { | |
file { | |
path => "LOG_PATH/access_log" | |
} | |
} | |
filter { | |
if [path] =~ "access" { | |
mutate { | |
replace => { "type" => "apache_access" } |
This file contains 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
<!Doctype html> | |
<iframe src="http://es5.betahikaru.com/_plugin/kibana/app/kibana#/dashboard/apache-log-dashboard?embed=true&_g=(refreshInterval:(display:Off,pause:!f,value:0),time:(from:now%2Fy,mode:quick,to:now%2Fy))&_a=(filters:!(),options:(darkTheme:!f),panels:!((col:1,id:access-ip-address,panelIndex:1,row:1,size_x:6,size_y:4,type:visualization),(col:7,id:referrer-and-client-ip,panelIndex:2,row:1,size_x:6,size_y:4,type:visualization)),query:(query_string:(analyze_wildcard:!t,query:'*')),title:'apache+log+dashboard',uiState:())" height="600" width="800"></iframe> | |
<iframe src="http://es5.betahikaru.com/_plugin/kibana/app/kibana#/dashboard/apache-log-dashboard?embed=true&_g=(refreshInterval%3A(display%3AOff%2Cpause%3A!f%2Cvalue%3A0)%2Ctime%3A(from%3Anow%2Fy%2Cmode%3Aquick%2Cto%3Anow%2Fy))" height="600" width="800"></iframe> | |