LATEST POSTS

ব্যাস্ত ডেভেলপারদের ডকার

ডকার শেখা দরকার কিন্তু সময় পাচ্ছি না! অথবা ইন্ট্রোডাকশন ভিডিও বা আর্টিকেল পড়ে সময় নষ্ট হয়ে যাচ্ছে কিন্তু আসল জিনিস শেখা হচ্ছে না তাদের জন্য এই লেখা। বহুল ব্যাবহৃত কমান্ড-সমূহ docker run…

OPTIMIZE WORDPRESS SITE AND SCORE 100 IN GOOGLE PAGE SPEED OR GT MATRIX

Optimizing WordPress site I'd read lots of articles about optimizing WordPress website but none of them provides a complete solution. Most of the posts are trying to sell their premium plugins or services which is annoying! So, I've decided to write…

CONFIGURE ORACLE DATABASE IN PHP DEVELOPMENT ENVIRONMENT

Three things needed for connecting with oracle database with PHP. OCI8 PHP Instant Client Those three option should be the same version, same configuration with with each one. Suppose, if our machine has 64bit , then PHP, OCI and instant client…

PHP AND JS CODE REFACTORING

What is refactoring? The way we restructure our existing code without changing its behaviour. We all need to restructure our ‘bad’ code better without changing underlying the functionality. JS Code: Suppose I am making a game where there is two…

$THIS IN PHP PROGRAMMING

$this is a special variable, Its reffers to current object. To access a private or protected property we need this keyword for accessing them. So, means current object. Example: This function is reffering the ‘type’ property of the current object…

লিনাক্স শেল স্ক্রিপ্টিং ২ – ভেরিয়েবলস

SIMPLE EXPLAINATION OF LARAVEL ROUTING

What is route? Route is used for receive URL pattern and handler information. Sounds chunky! Well, A route is a URL that contains information from Controller or A function. A route is used for handling HTTP requests. In MVC framework we called HTTP…

লিনাক্স শেল স্ক্রিপ্টিং ১ – Hello World