In this post, I will cover how easily you can publish your static website with HTTPS and Cloudflare caching (Despite its very limited in the free tier and Cloudflare is mostly used for security purposes). You don’t need to buy any extra server or SSL certificate. You can easily serve static HTML, CSS as well …
Tutorials
Finding something new n teaching it
Basic DevOps for deploying an application in Ubuntu VPS
As a senior dev guy in the office, I am always asked to help in setting up production environment ready for VPS based on Ubuntu or any other Linux distributions. Today I will cover some basic knowledge that help you deploying your application in any Linux VPS even you are not a DevOps Engineer in …
Upgrade to PHP 7

PHP 7 is released after 10 years of PHP 5 released. It’s a major release and it has a lot of improvements compares to PHP 6. Eventually, developer community did not accept PHP 6 that much. If you haven’t upgraded PHP environment, I would recommend upgrading its version as soon as possible to get better …
Write a View Helper in Laravel 5 with best practices

In my last blog post I talked about deploying Laravel 5 application in a shared hosting. Still I am working in the same project. This is pretty much a big project that I am working alone right now. Along with this project, I am also working long hours on upgrading my business, after I read …
Setting up development enviroment with Vagrant
Nowadays we have to work on different different web stacks at the same time. Even in same web stack our production environment and development environment are totally different. It became obvious to use visualization in order to solve this problem. There are a couple of solutions exist such as vagrants, docker (based on Linux container), …
Custom validations in Rails 3
Today, I am writing the blog post with my late apologization. Sorry to all of my readers and followers for not writing any good posts on the last couple of days. I am passing very busy time for the office project as well as my Grad school. By the way, I started my new career …
load, require, include and extend in Ruby with module and mix-ins concept
Nowadays, a lot of programmers are switching to Ruby language for its awesomeness. Most of them are having the problem of adopting some concepts of Ruby language. That’s why today I am writing on some basics of Ruby language. Basically, I will clear the concept among load, require, include and extend and how they are …