I'm a Full stack developer, Software engineer, Game development enthusiast.
- Website: davidejones.com
I'm a Full stack developer, Software engineer, Game development enthusiast.
Blender addon to import and export alternativa3d files. See http://alternativaplatform.com for more information on the file types and its uses.
netlify oauth github client sending token in form as netlify service itself, implementation in python
#!/bin/bash
instance_profile=`curl http://169.254.169.254/latest/meta-data/iam/security-credentials/`
aws_access_key_id=`curl http://169.254.169.254/latest/meta-data/iam/security-credentials/${instance_profile} | grep AccessKeyId | cut -d':' -f2 | sed 's/[^0-9A-Z]*//g'`
aws_secret_access_key=`curl http://169.254.169.254/latest/meta-data/iam/security-credentials/${instance_profile} | grep SecretAccessKey | cut -d':' -f2 | sed 's/[^0-9A-Za-z/+=]*//g'`