Whole the night I was struggling to build a safe house for my codes where my codes can live longer safely. Sounds funny? Yes, it is. So whenever you or I think about to build a safe place to host our codes then first priority we consider about Backup and Restoring files with less hassle. And today I figured our a very sophisticated way about to handle synchronizing or backup/restore your files between your Linux flavor computer and Rackspace Cloud …
Blog Posts
After lots of folk PHP5 has released [Zend OpCache] engine with core PHP5.5 and PHP internals will continue to develop PHP with this Zend OpCache in future releases of PHP. It’s great news for all the PHP lovers who used APC cache to boost their application performance. But keep in mind, APC is no more supported with PHP5.5 and may not be for future release also. So here you should love OpCache (original name: Zend OpCache) for tweaking your application …
mCrypt is one of the best and most popular Cryptography Extensions in PHP5. To install it with your PHP5 in your NGinx server for Ubuntu 14.04 please install it with following command sudo apt-get install php5-mcrypt and then restart your NGinx server with sudo service nginx restart. But sometimes it may fails to load your mCrypt extension with your PHP5. If you face those types of problem just execute the following command in your Ubuntu 14.04 command line and restart …
Let me say at first to the reader of this post that I am not talking about Phonetic bengali writing. I am talking about write with original Unijoy keyboard layout. Last year I wrote another blog post on Install Bengali font in Linux/Ubuntu – Write Bengali in Linux. But that was for older Ubuntu version. Right now the latest Long Term Support (LTS) release of Ubuntu is 14.04. So to write bengali in Ubuntu 14.04 we have to change or …
It’s easy to track the user behavior from your web application or webpages like you can track where your user is clicking, what are they doing, etc…. with the help of Google analytics custom event tracking. <script> $(document).ready(function(){ $('a').on('click', function() { var anchorText = $(this).text(); var anchorUrl = $(this).attr('href'); ga('send', 'event', 'link', 'click', anchorText, anchorUrl); }); }) </script> In the above code I am just triggering ga() function (analytics function provided by Google analytics js script) when anyone will …