/dev/null

menulis, bekerja untuk keabadian :)

Neno Sulistiyawan

AWS S3 : Bucket Permissions for File/Folder Management

Here's a quick bucket configuration to allow file/folders or objects (in AWS S3 terms) when u're developing api for File/Folder Management features using AWS S3 as File Storage. { "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Principal": { "AWS": "arn:aws:iam::your-arn-number:user/your-arn-user" }, "Action": [ "s3:ListBucket", "s3:GetObject",…

Continue reading...
Neno Sulistiyawan

React-Native Navigation: Custom Middle Button

When toying with react-native dan react-navigation, i will need to implement the following bottom tab navigation design: Here's my documentation to implement the design into react native application: 1. Icons For the icons, i use the react-native-vector-icons. There are mutiple icon-sets available built into that…

Continue reading...