- AWS Documentation
- AWS Service FAQs
- AWS Whitepapers
- Read early and study later
- Architecting for the Cloud: AWS Best Practices
- AWS Security Best Practices
- Read before exam
- Overview of Amazon Web Services
- Overview of Security Processes
- Read early and study later
- AWS Storage Services Overview
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
Description: CloudFormation stack for Epsagon to provide monitoring. | |
Resources: | |
EpsagonRole: | |
Type: 'AWS::IAM::Role' | |
Properties: | |
AssumeRolePolicyDocument: | |
Version: 2012-10-17 | |
Statement: | |
- Effect: Allow | |
Principal: |
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
package main | |
import "fmt" | |
func main() { | |
c := make(chan int) | |
quit := make(chan int) | |
go func() { | |
for i := 0; i < 10; i++ { |
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
package main | |
import ( | |
"encoding/json" | |
"log" | |
"github.com/apex/go-apex" | |
"github.com/apex/go-apex/sns" | |
) |
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
require "scientist" | |
class MyExperiment | |
include Scientist::Experiment | |
attr_accessor :name | |
def initialize(name) | |
@name = name | |
end |
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
FROM alpine | |
RUN apk add --update bash curl ca-certificates | |
ADD freshness.sh /usr/bin/freshness | |
ENTRYPOINT ["/usr/bin/freshness"] |
Hi,
For a couple of months, I've been observing the following strange behavior in Byword:
I'm storing my documents to a folder that is backed by Dropbox. When saving a Markdown file with Cmd+S, I often get the following error:
The document “example.md” could not be saved. The file has been changed by another application.
This happens almost every time I have Dropbox enabled. In addition to this annoying message, my documents folder will contain lots of "conflicted copy" files, which I have to remove manually on a regular basis.
2016-09-05
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
Oct 05 17:43:14 ip-10-8-4-91.eu-west-1.compute.internal nomad-server: 2016/10/05 15:43:13.940219 [DEBUG] http: Request /v1/job/wlc-wonderland-cluster-autoscaler/periodic-1475661600/summary (831.064µs) | |
Oct 05 17:43:14 ip-10-8-3-88.eu-west-1.compute.internal nomad-server: 2016/10/05 15:43:13.880426 [DEBUG] http: Request /v1/job/wlc-wonderland-cluster-autoscaler (752.494µs) | |
Oct 05 17:43:14 ip-10-8-3-88.eu-west-1.compute.internal nomad-server: 2016/10/05 15:43:13.934781 [DEBUG] http: Request /v1/job/wlc-wonderland-cluster-autoscaler/periodic-1475661900/summary (562.904µs) | |
Oct 05 17:43:14 ip-10-8-3-88.eu-west-1.compute.internal nomad-server: 2016/10/05 15:43:13.935924 [DEBUG] http: Request /v1/job/wlc-wonderland-cluster-autoscaler/periodic-1475662140/summary (402.74µs) | |
Oct 05 17:43:14 ip-10-8-3-88.eu-west-1.compute.internal nomad-server: 2016/10/05 15:43:13.949470 [DEBUG] http: Request /v1/job/wlc-wonderland-cluster-autoscaler/periodic-1475662500/summary (360.612µs) | |
Oct 05 17:43:14 ip-10-8 |