06/05/2026
বর্তমানে চারদিকে এত এত AI মডেলের ছড়াছড়ি যে, কোনটি কখন ব্যবহার করতে হয় তা নিয়ে বিভ্রান্ত হওয়াটা স্বাভাবিক। তাই এই বিভ্রান্তি থেকে মুক্ত থাকার জন্য আমরা এই মডেলগুলোকে তাদের সক্ষমতা, গতি এবং খরচ অনুযায়ী ৪টি মূল ক্যাটাগরিতে ভাগ করতে পারি।
১. ফ্ল্যাগশিপ মডেল (The Powerhouses)
২. লাইট মডেল (The Speedsters)
৩. মিড-টিয়ার মডেল (The Versatile Workhorses)
৪. স্পেশালাইজড এবং ওপেন সোর্স মডেল (Privacy & Niche Tasks)
এখন একটু করে এই ক্যাটাগরির মডেলগুলোকে বুঝে নেই।
১. ফ্ল্যাগশিপ মডেল (The Powerhouses)
এগুলো হলো সবচেয়ে শক্তিশালী এবং বুদ্ধিমান মডেল। যখন আপনার খুব জটিল লজিক, মাল্টি-স্টেপ প্ল্যানিং বা হাই-লেভেল ক্রিয়েটিভিটির প্রয়োজন হয়, তখন এই মডেলগুলোই সেরা। যেমনঃ OpenAI GPT 5.5, Claude Opus 4.7, Gemini 3 Pro।
২. লাইট মডেল (The Speedsters)
আপনার যদি এমন কোনো কাজ থাকে যেখানে বুদ্ধিমত্তার চেয়ে গতি এবং কম খরচ বেশি গুরুত্বপূর্ণ, তবে লাইট মডেলগুলোই আপনার সমাধান। যেমনঃ Gemini 3 Flash
৩. মিড-টিয়ার মডেল (The Versatile Workhorses)
অধিকাংশ মানুষ এবং ডেভেলপারদের জন্য এটিই সবচেয়ে পছন্দের ক্যাটাগরি। কারণ এখানে পারফরম্যান্স এবং খরচের মধ্যে একটি চমৎকার ভারসাম্য থাকে। যেমনঃ Claude Sonnet 4.5
৪. স্পেশালাইজড এবং ওপেন সোর্স মডেল (Privacy & Niche Tasks)
সব কাজ সাধারণ AI দিয়ে হয় না, কিছু ক্ষেত্রে প্রয়োজন বিশেষ দক্ষতা বা গোপনীয়তা ( আপনার প্রাইভেট ইমেইল বা কোম্পানির ইন্টারনাল ফিন্যান্সিয়াল ডকুমেন্ট নিয়ে কাজ করা ) । যেমনঃ Kimi K2.5 (Open Source), Sonar by perplexity ( অথেন্টিক সোর্সগুলো খুঁজে বের করতে আপনাকে সাহায্য করে )
সবশেষে, প্রতিদিন নতুন নতুন মডেল আসছে দেখে ঘাবড়ানোর কিছু নেই। শুধু মাথায় রাখা দরকার আমার কাজের ধরণটা কেমন। তখন সেই অনুযায়ী মডেল বাছাই করে নেয়া সহজ হয়ে যায় ।
03/05/2026
Really mind boggling to see google Antigravity is replying in my native language with easy to follow instructions.
28/06/2022
Implemented a feature into Laravel. Here from the top right modal link “Customize header” user can add/remove fields as well as order those fields. Link:
http://laravel-features.mahfoozurrahman.com/customize-headers
28/06/2022
2. Scalar and return type declaration
It basically enforces type on function parameter or return type value of a function. So, if proper type is not used in those cases than fatal error will show up. Ex.
class MyCalculator {
public function addTwoInts(int $x, int $y): int {
return $x + $y;
}
}
$calObj = new MyCalculator();
echo $calObj->addTwoInts(5,10);
In above, both for function parameter and return type value of function, “int” type is used as scalar and return type declaration respectively.
28/06/2022
1. Better performance
PHP 7 brings a significant improvement over earlier versions which proves itself twice as fast with lot less memory consumption. It means a single server can handle twice of users with twice as fast web pages in one request. That means half number of servers can be used to serve same amount customers with same speed than the number of servers were used to before. So, it saves a lot of server utilization costs.
28/06/2022
So some of the new features of PHP 7 are as follows
1. Better performance
2. Scalar type declarations
3. Return type declarations
4. Combined comparison operator
5. Null coalescing operator
6. Anonymous classes
7. Arrays as constants
8. Unicode codepoint escape syntax
9. Uniform variable syntax
10. Catchable exceptions
11. Integer division
12. Filtered unserialize
13. Grouped imports
28/06/2022
Anybody ( not all ) who uses PHP frameworks such as Laravel, CakePHP, Yii or Symphony might not know all the latest core features that PHP 7 introduced back in Dec, 2015. Although PHP also has its next major release 8, understanding all the new features of PHP 7 is very important. In the following posts I will be listing those features both for my own references as well as for readers who comes to read the posts of this page.
12/04/2021
Git commonly used commands
git init
git config user.name "XYZ"
git config user.email "[email protected]"
git remote add origin
git add .
git commit -m 'some msg'
git push origin
27/12/2019
Notepad++ although not very advanced editor but pretty lighting fast for almost advanced like editor. If you need to change font size you can use short key ctrl + numpad+ or ctrl+numpad-
27/12/2019
Very Helpful post for removing office 16 click-to-run extensibility component
https://www.youtube.com/watch?v=03-_rp0qT8E
28/02/2019
In htaccess Force site redirect to non-www:
RewriteCond %{HTTP_HOST} ^www\.exmple\.com [NC]
RewriteRule ^(.*)$ https://exmple.com/$1 [L,R=301]
In htaccess Force site redirect to www:
RewriteCond %{HTTP_HOST} ^example.com [NC]
RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301,NC]