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
| client04@Patricks-MacBook-Pro terraform-iam-test % terraform plan | |
| ╷ | |
| │ Error: Request cancelled | |
| │ | |
| │ with data.aws_iam_policy_document.test, | |
| │ on test.tf line 1, in data "aws_iam_policy_document" "test": | |
| │ 1: data "aws_iam_policy_document" "test" { | |
| │ | |
| │ The plugin.(*GRPCProvider).ReadDataSource request was cancelled. | |
| ╵ |
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
| <?xml version="1.0" encoding="utf-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>EnvironmentVariables</key> | |
| <dict> | |
| <key>PATH</key> | |
| <!-- needs path to hyperkit and hdiutil --> | |
| <string>/usr/local/bin:/usr/bin</string> | |
| </dict> |
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
| curl -XPUT 'localhost:9600/_node/logging?pretty' -H 'Content-Type: application/json' -d' | |
| { | |
| "logger.logstash.outputs.amazones" : "TRACE", | |
| "logger.logstash.inputs.beats" : "TRACE", | |
| "logger.logstash.pipeline" : "TRACE", | |
| "logger.logstash.runner" : "DEBUG", | |
| "logger.org.logstash.Event": "DEBUG", | |
| "logger.org.logstash.beats.BeatsParser": "DEBUG", | |
| "logger.org.logstash.beats.BeatsHandler": "DEBUG", | |
| "logger.org.logstash.netty.SslSimpleBuilder": "DEBUG", |
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
| Go to /opt/graphite/webapp/graphite/ | |
| Run python ./manage.py syncdb | |
| source: https://answers.launchpad.net/graphite/+question/187148 |
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
| package main | |
| import ( | |
| "testing" | |
| "time" | |
| ) | |
| func TestDefaultTimeToUnixNanoAndBackAgain(t *testing.T) { | |
| var defaultTime time.Time // 0001-01-01 00:00:00 +0000 UTC |
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
| FROM phusion/baseimage:latest |
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
| param( | |
| $QueueName = "default" | |
| ) | |
| $load_result = [Reflection.Assembly]::LoadWithPartial("System.Messaging") | |
| if($load_result -ne $null) { | |
| $msmq = [System.Messaging.MessageQueue]::Create(".\PRIVATE$\$QueueName") | |
| } else { | |
| Write-Error "Failed to load System.Messaging" | |
| } |