[TUTORIAL] HOW TO PAUSE AN AWS ELASTIC BEANSTALK ENVIRONMENT USING THE DASHBOARD
So you have set up a test elastic beanstalk environment because you don’t want to put at risk your production elastic bean. You don’t want to pay for the time you’re not using it, and there’s no...
View Article[VLOG] S01E19 SNOW WONDERLAND & PARIS FLASHBACKS
Sorry for the parts with silence, apparently the music created by Bach is not public domain, and had to have it removed, otherwise the video wouldn’t be available in the US and other countries.
View Article[ANDROID] How to create a background shape with a double border / rounded...
Usually we use <shape> objects in our .xml drawables meant for the backgrounds of buttons or other View objects. I came across a situation where such object should appear as if it had been...
View ArticleUpgrading your wordpress blog to PHP 7.0 on Ubuntu Xenial
If you’re about to upgrade your Ubuntu server to 16.04 (Xenial) you might want to take advantage of the new PHP 7.0 which is as fast or more than Facebook’s HHVM, or perhaps during the upgrade process...
View ArticleHOW TO ENABLE PHP FPM LOG OUTPUT
This one had me for the longest time. If you happen to be running a web server with php-fpm, sometimes you will run across an HTTP 500 error and all you will get will be a blank screen. You will look...
View Article[CODE/JAVA] ARGB_8888 Pixel Abstraction
This is one of the ways you can decode Pixel colors out of the integers you get from Android Pixels. ARGB_8888, stands for Alpha, Reg, Green, Blue. The 8’s stand for the number of bits per channel. In...
View Article[GIT] How to replace the master branch with another branch.
TL;DR; git checkout master git reset --hard fixed-master-branch git push origin master -f Sometimes someone may pollute the ‘master’ branch and you may have noticed this only after you’ve fetched,...
View Article