All rights reserved © 2025 | Full Stack Army
All rights reserved © 2025 | Full Stack Army
একটা বিগ টেক কোম্পানির HR বললেন - "আপনার টেকনিক্যাল স্কিল ভালো, কিন্তু সফট স্কিলস দুর্বল।"
শেয়ার করছি কীভাবে সফট স্কিলস ডেভেলপ করলাম:
1️⃣ কমিউনিকেশন স্কিলস
- টিম মিটিং এ রেগুলার আইডিয়া শেয়ার করুন
- ইমে...
IpsumaliquaQuasa
একটা বিগ টেক কোম্পানির HR বললেন - "আপনার টেকনিক্যাল স্কিল ভালো, কিন্তু সফট স্কিলস দুর্বল।"
শেয়ার করছি কীভাবে সফট স্কিলস ডেভেলপ করলাম:
1️⃣ কমিউনিকেশন স্কিলস
- টিম মিটিং এ রেগুলার আইডিয়া শেয়ার করুন
- ইমে...
Solutaloremlibero
৩ বছর আগে আমাদের মনোলিথিক সিস্টেম মাইক্রোসার্ভিসে মাইগ্রেট করার প্রজেক্ট লিড করেছিলাম। শুরুতে অনেক কমপ্লেক্সিটি মনে হলেও, এখন ডেলিভারি টাইম ৬০% কমেছে এবং সিস্টেম রেজিলিয়েন্স অনেক বেড়েছে।
🏗️ ১. মাইক্রোসার্ভিসে ট্রানজিশন প্ল্যান
- বিজনেস ডোম...
microservice,saasproject
XSS (Cross-Site Scripting) একটি ওয়েব সিকিউরিটি ভালনারেবিলিটি। এর মাধ্যমে অ্যাটাকাররা ভিকটিমের ব্রাউজারে ক্ষতিকর স্ক্রিপ্ট প্রবেশ করিয়ে কুকি, সেশন টোকেন এবং অন্যান্য সংবেদনশীল তথ্য চুরি করতে পারে।
<...hack,shield,protect
Year 1: "I know everything"
Year 5: "I know nothing"
The journey of every developer 😅
🌟 1. হিউমিলিটি ইজ পাওয়ার
যত শিখবেন, তত বুঝবেন কত কিছু জানা বাকি। Stay hungry, stay foolish - Steve Jobs ...
devknow
Database indexing is a technique used to improve the speed of data retrieval operations on a database table. An index is a data structure that helps databases find and retrieve specific rows much faster than scanning the entire table.
indexing,dbindexing
Sure! Below are SQL examples demonstrating each type of index.
A Primary Index is created automatically when you define a Primary Key. It uniquely identifies each row in a ta...
sql
A closure is a function that remembers the variables from its outer scope, even after the outer function has finished executing. This allows functions to maintain private state closure,js
Memory management in JavaScript is primarily handled by the Garbage Collector (GC), which automatically frees up memory that is no longer in use. However, understanding how memory is allocated and released can help optimize performance and prevent memory leaks. Here’s a breakdown...
js,memorymanagement
A Promise in JavaScript is an object that represents the eventual completion or failure of an asynchronous operation. It allows handling asynchronous code in a cleaner and more readable wa...
promise