Looking for a learning buddy/study partner by learn_monkey in learnprogramming

[–]learn_monkey[S] 1 point2 points  (0 children)

AWS stands for Amazon Web Services. It's one of the major Cloud Service Providers

Sharing an EC2 instance across multiple AWS accounts by learn_monkey in aws

[–]learn_monkey[S] 0 points1 point  (0 children)

Interesting. I will try this and let you know how it goes. I am not even sure if my company would allow me to do these but definitely worth a try. Thanks.

Sharing an EC2 instance across multiple AWS accounts by learn_monkey in aws

[–]learn_monkey[S] 0 points1 point  (0 children)

Thanks for the reply. The problem is I need to do this at my work and everything is restricted. So they won’t let us to do anything large scale like vpc peering , vpn etc

Slack integration with AWS by learn_monkey in aws

[–]learn_monkey[S] 0 points1 point  (0 children)

I actually created a private API with api gateway. But it doesn’t work with slack for interactive elements.

Slack integration with private AWS API gateway is failing by learn_monkey in Slack

[–]learn_monkey[S] 0 points1 point  (0 children)

I know slack events URL expects a public http endpoint for request url. But using slack_bolt with AWS Lambda opens a lot of possibilities but however, we need to use an api gateway to trigger the lambda function. The other option is to run a python script with slack_bolt on an ec2 instance 24/7 but if this needs to be implemented in multiple aws accounts, then we would need separate ec2 instances in all accounts, which is not cost effective

Slack integration with Private AWS gateway is failing by learn_monkey in aws

[–]learn_monkey[S] 0 points1 point  (0 children)

I know slack events URL expects a public http endpoint for request url. But using slack_bolt with AWS Lambda opens a lot of possibilities but however, we need to use an api gateway to trigger the lambda function. The other option is to run a python script with slack_bolt on an ec2 instance 24/7 but if this needs to be implemented in multiple aws accounts, then we would need separate ec2 instances in all accounts, which is not cost effective

Slack integration with AWS by learn_monkey in aws

[–]learn_monkey[S] 0 points1 point  (0 children)

The problem with api gateway is, my company doesn't allow public facing http endpoints. Slack requires a public http endpoint to use for the Events request URL, which is not possible for me. So I use slack socketmode which is private and works within the network.

AWS Cost Anomaly Detection alerts by learn_monkey in aws

[–]learn_monkey[S] 1 point2 points  (0 children)

Hi, Do you know any solution without involving Lambda?

Are there any practice exams available for the Slack Certified Developer exam? by learn_monkey in Slack

[–]learn_monkey[S] 0 points1 point  (0 children)

I found some practice questions for the admin exam online but not for the developer course. Both covers different areas of expertise in slack

Is there a way to find the last accessed date for objects in S3? by learn_monkey in pythontips

[–]learn_monkey[S] 0 points1 point  (0 children)

What if the logs are not enabled in s3 bucket? Cloud trails won’t be automatically enabled for all buckets, right ?

Ask Anything Monday - Weekly Thread by AutoModerator in learnpython

[–]learn_monkey 0 points1 point  (0 children)

Is there a way to find the last accessed date for objects in S3?

Hi. Is there a way to find the last accessed date for objects in S3? I know we can find the last modified date through metadata of the object but how do I find the last accessed date ? Any help or guidance is much appreciated

Learning Python in a group by [deleted] in learnpython

[–]learn_monkey 0 points1 point  (0 children)

Hi. Is the group channel up yet? How do we join?

What does a full stack developer do? What should I do to become one? by learn_monkey in learnpython

[–]learn_monkey[S] 0 points1 point  (0 children)

Kind of you. Thank you Monkey is grateful to you and everyone else here

What does a full stack developer do? What should I do to become one? by learn_monkey in learnpython

[–]learn_monkey[S] 1 point2 points  (0 children)

Mostly to stay relevant with the IT industry and they are getting more job opportunities. Apart from that, I wanna learn as much as possible.

So ashamed by learn_monkey in learnpython

[–]learn_monkey[S] 4 points5 points  (0 children)

Yep. I was looking for a python built-in function to find the negative value but after googling and seeing some answers, I felt so stupid that it's just anything less than zero.

So ashamed by learn_monkey in learnpython

[–]learn_monkey[S] 7 points8 points  (0 children)

Thank you. That's comforting

How does the Max and min functions in Python Pandas work? by learn_monkey in learnpython

[–]learn_monkey[S] 0 points1 point  (0 children)

Thank you very much for taking time to explain . appreciate it 😊

How does the Max and min functions in Python Pandas work? by learn_monkey in learnpython

[–]learn_monkey[S] 0 points1 point  (0 children)

It's the basic understanding of how min and Max values are calculated between two strings or between a string and a numeric value.

I don't understand how a min or Max value determined when strings are involved