Category: Web
-
Prettifying AWS S3 Bucket public index list
Sometimes it’s useful to have a index listing on a AWS S3 bucket. Here are some solutions to configure it with nice template. If having a public index list on a S3 Bucket is a good idea or not I’m not saying yay or nay.
First set the correct Bucket Policy
{ "Version": "2012-10-17", "Statement": [ { "Sid": "PublicReadGetObject", "Effect": "Allow", "Principal": "*", "Action": "s3:GetObject", "Resource": "arn:aws:s3:::tmfg-tiesaahistoria/*" } ] }
Next set Permissions
Everyone, List objects Yes
Create a
index.html
… Jatka lukemista -
Notes from React Helsinki August 2018 meetup
React Helsinki August 2018 meetup was hosted by Smartly.io at their office in Postitalo next to the Central Railway Station. Here’s my short notes from the event. To follow the community, React Helsinki has also a Facebook group.
The meetup started with Splitting React codebases for increased development speed by Hugo Kiiski from Smartly.io.… Jatka lukemista
-
WordPress theme development with Vagrant on OS X
Developing WordPress themes requires you to have either remote machine with the needed software or installing e.g. PHP and MySQL to your local machine. Although setting up the development environment (LAMP stack) in OS X is quite easy there’s also better option, to separate it from your machine and make it more like it’s on some hosting provider.… Jatka lukemista