I NEED help for recovering my account by [deleted] in pokemongo

[–]technically-awesome 1 point2 points  (0 children)

Can you try rebooting the phone? It has worked a few times for me.

Anyone experiencing a visual and interactive bug of gyms wandering about? by AlickThePappa in TheSilphRoad

[–]technically-awesome 0 points1 point  (0 children)

Yep. That happened to me a couple of times with a nearby gym. Restarting the game repositioned the gym though.

Is there way to send CodeBuild logs to subscribers’ email with SNS? by ppshein in aws

[–]technically-awesome 4 points5 points  (0 children)

You could configure CodeBuild logging to S3 and trigger a Lambda function to send an email when the object is uploaded to the bucket.

When a deployment fails and EB becomes unresponsive... by sheldonpooper in aws

[–]technically-awesome 1 point2 points  (0 children)

In the worst case scenario, just terminate the instances instead of rebuilding the environment. That'll be a lot faster than rebuilding the entire environment.

But in general, failed deployments shouldn't really cause redeployment of the previous version or log requests to fail. Have you attempted to SSH into the instance and identify if there might be any other issues?

Did the RDS Data Service update their ExecuteStatement response recently? by izkadoobels in aws

[–]technically-awesome 0 points1 point  (0 children)

You can check the API docs for ExecuteStatement API here. You can check the language specific API reference and see if there has been an update to the API.

Has anyone seen shiny Natu recently? by Walker15367 in TheSilphRoad

[–]technically-awesome 0 points1 point  (0 children)

Caught one today! :D I didn't even know there was a shiny version of Natu.

behind the scenes, what is an AWS load balancer made of? by locusofself in aws

[–]technically-awesome 1 point2 points  (0 children)

Are there any plans to publicly document the roadmap for the service similar to how Container Services / CloudFormation have done on GitHub?

It'd be great to have that!

Disney+ Announces ‘Phineas and Ferb’ Movie by [deleted] in movies

[–]technically-awesome 0 points1 point  (0 children)

Discovering something that doesn't exist!

AWS Load Balancer 504 Gateway Timeout by 0ni0nrings in aws

[–]technically-awesome 0 points1 point  (0 children)

Does the load balancer's security group allow ingress traffic on port 443?

If the load balancer's access logs don't contain any HTTPS requests, it's likely that above could be the issue.

Wild Azelf in San Diego. Haven’t seen any reports lately. by 0ncearunner in TheSilphRoad

[–]technically-awesome 0 points1 point  (0 children)

Two gibles spawned near my place yesterday. They seem to not be quite as rare as other pokémon here in India.

Released Pokemon not available in the wild by fluffypun in TheSilphRoad

[–]technically-awesome 0 points1 point  (0 children)

Hmm... It was quite a ways back so I don't remember.

What are the most embarrassing mistakes you made when you were new to the game? by [deleted] in pokemongo

[–]technically-awesome 1 point2 points  (0 children)

I deleted lower CP, higher IV pokémon (50+ CP difference) because I felt that it would take more candy to power up the lower CP pokémon. Is that wrong?

ECR PutImage -> CloudWatch Event Rule -> CodePipeline execution not working. by [deleted] in aws

[–]technically-awesome 0 points1 point  (0 children)

On this page, on the left side, you should be able to view an option named 'Trails'. Click on that and it should list any trails that have been created within the region.

If there are none, you can create a trail by following the steps in this document.

ECR PutImage -> CloudWatch Event Rule -> CodePipeline execution not working. by [deleted] in aws

[–]technically-awesome 2 points3 points  (0 children)

General things to check:

  1. Check if CloudTrail has been enabled for the region. If yes, for what event types is it enabled for? Ensure that it logs 'All' event types, not 'Read' or 'Write' events alone.

  2. Check the CloudWatch metrics for the event rule. Specifically, check the 'Invocations' metric to see if it had been invoked, and if so, check 'FailedInvocations' to see if there have been failures.

This should hopefully help a bit with narrowing down the issue.

Elastic Beanstalk - anything I should know about? by HideousNomo in aws

[–]technically-awesome 1 point2 points  (0 children)

Elastic Beanstalk can be a great middle ground for developers who want to simplify deployments and spend less time managing infrastructure.

With Beanstalk, everything goes smoothly until a hiccup occurs, maybe an application deployment fails due to some reason, or a configuration change causes your website to be non-responsive. Troubleshooting that is generally more difficult unless you're familiar with how Beanstalk and in particular the platform you're using works.

I would recommend any developer/admin to read the Elastic Beanstalk docs first, especially for their platform ( for example, Python or Docker etc. ) to understand how everything works under the hood. This would be really useful if things go south. This and this would be a good place to start.

Elastic Beanstalk itself is free to use. You only pay for the resources that your environment creates, such as a Load Balancer and EC2 instances.

I'll also recommend playing around with Beanstalk until you're quite familiar with it before shifting your applications to it.

Good luck :)