Categories
Laravel PHP

Laravel Tablar Admin Dashboard

It’s been 2 weeks that I have been working on a New Laravel Admin Dashboard Template. jeroennoten/laravel-adminlte is a well-known admin dashboard laravel package. I used it in different projects. It’s highly customizable & feature-rich. The dynamic menu generator with auth guard is the most fantastic feature of this laravel package. Tabler is one of […]

Categories
PHP Programming

Mastering Modern PHP: Top 18 Features to Elevate Your Code in 2023

These features aim to improve your PHP development by providing better performance, enhanced type safety, and more expressive syntax.

Categories
PHP Windows

How to fix moodle Installation error of Nginx in windows

Moodle (Modular Object-Oriented Dynamic Learning Environment) is a free and open-source LMS (learning management system) written in PHP and distributed under the GPL License. As a Windows user, I prefer to use Laragon as a powerful universal development environment for PHP. And for the server, I always go for Nginx. Do you ever face any […]

Categories
About Me

রিভার্স ইঞ্জিনিয়ারিং এবং আমার পথচলা – ১

আজ থেকে ১২/১৫ বছর আগের কথা। তখন মোবাইল ইন্টারনেট সহজলভ্য ছিল না। ইন্টারনেট মানে এক আশ্চর্যের বিষয়। বন্ধুদের মধ্যে যার মোবাইলে ইন্টারনেট সংযোগ থাকতো বিকেলে সবাই মিলে খেলা বাদ দিয়ে তাকে ঘিরে ধরতাম ইন্টারনেট ব্রাউজিং দেখার জন্য। ৯০ এর দশকে যাদের জন্ম তারা জানবেন মিগ৩৩(Mig33) নামে একটি মোবাইল চ্যাট অ্যাপ ছিল। ২০০৫ সালে এর যাত্রা […]

Categories
Programming Design Pattern

DI (Dependency Injection) in PHP

There are a few similar terms in the programming world like HTML injection, SQL injection, etc. What does DI mean? Dependency Injection is a design pattern that helps avoid hard-coded dependencies for classes. Let’s try to make it clear using a simple Shopping Cart Example Suppose, You have an online shop and there are 2 […]

Categories
Windows

How to disable password prompts during git push/pull

Firstly, Generate an SSH key into your server/localhost You will Get your .ssh/id_rsa.pub. Copy the Key and Add a Aew SSH Key like the above image. Now register the key with your Github Username You are Good to go now. Copy the SSH link and Run it into your server app directory terminal

Categories
Windows

How to resize thousands of images in multiple folders?

I have been working to migrate an Osclass classified website to Custom made Laravel ad listing E-commerce solution for 2 weeks. It has more than 1,20,000 uncompressed preview and thumbline images that cause the slow page load issue. I was desperately seeking a minimal solution to resize thousands of images in multiple folders. My OS […]

Categories
Windows

Change/Modify environment variables without rebooting windows

Search environment in the search bar Click Edit the System Environment variables & edit as required 2. Open Command Prompt as Administrator 3. Type set PATH=C & Press Enter (This will refresh the environment variables) 4. Close and restart command prompt window 5. Finally, type echo %PATH% & press Enter This will automatically Refresh your […]

Categories
Reverse engineering

এন্ড্রয়েড অ্যাপ এর ইনকামিং এবং আউটগোয়িং ডাটা পরিক্ষা করার সহজ পদ্ধতি।

আমার প্রোগ্রামিং এর পথ চলা শুরু রিভার্স ইঞ্জিনিয়ারিং দিয়ে। কিন্তু মজার বিষয় হচ্ছে আমি শুরুর দিকে নিজেও জানতাম না এটা রিভার্স ইঞ্জিনিয়ারিং। যাইহোক কথা বাড়িয়ে লাভ নেই আসুন দেখি কিভাবে এন্ড্রয়েড অ্যাপ এর ডাটা পরিক্ষা করা যায়। যা যা দরকার হবে এন্ড্রয়েড ৫.0/৬.0 (ললিপপ/ মার্সমেলো)। বি দ্রঃ এন্ড্রয়েড এর পরবর্তী ভার্সন গুলতে গুগল ইন্ডিভিজুয়াল এস […]