Avatar
😎

Organizations

@Link @LinkedIn @rss
3 results for management
  • A simple javascript function to generate policy strings for AWS S3 Buckets that can run on your browser. You can customize it to your needs :D Lets start by saying you have A LOT of buckets var buckets = ['bucketName1', 'bucketName2'] Then you have to iterate/loop through them buckets.forEach((bucket) => { var policy = getPolicyString(bucket) console.log(policy) }) And finally the function, I named it getPolicyString XD function getPolicyString (bucketName) { return `{ "Statement": [ { "Effect": "Allow", "Action": "s3:ListAllMyBuckets", "Resource": "arn:aws:s3:::*" }, { "Effect": "Allow", "Action": "s3:*", "Resource": [ "arn:aws:s3:::${bucketName}", "arn:aws:s3:::${bucketName}/*" ] } ] }` }
    management Created Fri, 13 Aug 2021 00:00:00 +0000
  • Old but Gold. A visual storytelling of how Agile practices & culture are at Spotify (2014). References: Spotify Engineering Blog: Part 1 & Part 2 DISCLAIMER: This video is a historical account from 2014. It is not maintained or updated, so it is not a description of how Spotify works today. Part 1 Part 2 Scrum Australia (2014) Henrik Kniberg Full Presentation
    management Created Sat, 17 Jul 2021 00:00:00 +0000
  • OATS OUTCOMES: What is that you need done? ACTIVITIES: Make a list of outcomes TIMING: Figure out how long it will take SCHEDULE: Create a plan to carry out the process Preparation Notes Always start the meeting on time, regardless of people who are late. Reduce the length of meetings to one hour maximum, and preferably less—try 30 minutes, even try 15 or 10 minutes. End meetings early.
    management Created Sun, 07 Mar 2021 00:00:00 +0000