TechieTushersuvro

TechieTushersuvro My Name is Md. Mahfoozur Rahman. I live in Dhaka. I have been working as web developer for the last 5 years. So, it is been oxygen support for my life.

I mainly develop sites with php,mysql,html,css and javascript. I have experience working with php frameworks like Wordpress, Joomla and Cakephp. I have also worked with jQuery and Angular. Being a web developer, it is a requirement to study frequently as customer needs are changing rapidly with time. I am proud of myself that I am experiencing such dynamic customer behaviors and being a part of this system as a developer.

বর্তমানে চারদিকে এত এত AI মডেলের ছড়াছড়ি যে, কোনটি কখন ব্যবহার করতে হয় তা নিয়ে বিভ্রান্ত হওয়াটা স্বাভাবিক। তাই এই বিভ্রান...
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 ( অথেন্টিক সোর্সগুলো খুঁজে বের করতে আপনাকে সাহায্য করে )

সবশেষে, প্রতিদিন নতুন নতুন মডেল আসছে দেখে ঘাবড়ানোর কিছু নেই। শুধু মাথায় রাখা দরকার আমার কাজের ধরণটা কেমন। তখন সেই অনুযায়ী মডেল বাছাই করে নেয়া সহজ হয়ে যায় ।

Really mind boggling to see google Antigravity is replying in my native language with easy to follow instructions.
03/05/2026

Really mind boggling to see google Antigravity is replying in my native language with easy to follow instructions.

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

Notepad++ although not very advanced editor but pretty lighting fast for almost advanced like editor. If you need to cha...
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-

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]

Address

Dhaka

Alerts

Be the first to know and let us send you an email when TechieTushersuvro posts news and promotions. Your email address will not be used for any other purpose, and you can unsubscribe at any time.

Contact The Business

Send a message to TechieTushersuvro:

Share