Skip to main content

Posts

How to set python 3 as default interpreter instead of python 2 in Linux (Kali Linux, Ubuntu)

  How to set Python 3 as default interpreter in Linux Open terminal and write "alias python=python3" and hit enter. You are done! alias python=python3 Now check your default interpreter version by simply run "python -V" command in the terminal. python -V
Recent posts

How to install google chrome in Ubuntu using command line

Step 01: Add Key Open terminal and add this key simply by just copy & paste this command to command line. Give your password and hit enter. wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -     Step 02: Add Repository  Copy and paste this command to the command line to add this repository echo 'deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main' | sudo tee /etc/apt/sources.list.d/google-chrome.list Step 03: Update the Repository  Now run this command to update the repository. sudo apt-get update Step 04: Install Google Chrome After completing repository update, run this command to install  Google Chrome! sudo apt-get install google-chrome-stable You are done!   Now simply search for Google Chrome in your applications and enjoy it. Feel free to comment. Connect with me on facebook:  https://www.facebook.com/mdashequzzaman.real  Happy browsing :)  

উবুন্টুতে (Ubuntu) ভিএলসি (VLC) মিডিয়া প্লেয়ার ইন্সটল (কমান্ড লাইন) | Insatll VLC Media Player in Ubuntu (Command Line)

Step 01: Add Repository Open terminal and add this repository simply by just copy & past this commands to command line.  Give your password and hit enter.   sudo add-apt-repository ppa:videolan/stable-daily If ask for any permission simply press Enter on your keyboard!    Step 02: Update the Repository  Now run this command to update the repository. sudo apt-get update Step 03: Install VLC After completing repository update, run this command to install VLC media player sudo apt-get install vlc You are done!   Now simply search for VLC in your applications and enjoy it.   Facebook:  https://www.facebook.com/mdashequzzaman.real  

How to install atom in Ubuntu

Step 01: Add Repository Open terminal and add this repository simply by just copy & paste this commands to command line. Give your password and hit enter. sudo add-apt-repository ppa:webupd8team/atom     If ask for any permission simply press Enter on your keyboard!   Step 02: Update the Repository  Now run this command to update the repository. sudo apt-get update Step 03: Install Atom After completing repository update, run this command to install Atom sudo apt-get install atom You are done!   Now simply search for Atom in your applications and enjoy it. Feel free to comment. Connect with me on facebook: https://www.facebook.com/mdashequzzaman.real  Happy coding :)  

লিনাক্স মিন্টে WoeUSB বা WinUSB ইন্সটল | Install WoeUSB / WinUSB On Linux Mint

নিচের কমান্ডগুলো টার্মিনাল এ রান করুন । ১।  sudo add-apt-repository ppa:nilarimogard/webupd8 ২।  sudo apt update ৩।  sudo apt install woeusb  ধন্যবাদ ।

Why Python ?

Why Python? কেন শিখবেন পাইথন?  বর্তমান সময়ে যে প্রোগ্রামিং ল্যাগুয়েজটার ব্যাপারে সবচেয়ে বেশি আলোচনা হচ্ছে সেটি হল পাইথন ! প্রো ডেভেলপার থেকে শুরু করে সদ্য প্রোগ্রামিং শুরু করা স্টুডেন্ট সবার মাঝেই পাইথন ঘিরে একটা ভাইব কাজ করছে ! কি এই পাইথন ? কেনই বা এত ভাইব এটা নিয়ে আর কেনই বা শিখবো এই পাইথন?  পাইথন কি? পাইথন হল একটি উচ্চ লেভেলের অবজেক্ট অরিয়েন্টেড প্রোগ্রামিং ল্যাংগুয়েজ । অর্থাৎ এটি মানুষের জন্য সহজ বোধগম্য ও প্রোগ্রামাররা যেন আরো বেশি ইফেক্টিভ ভাবে প্রোগ্রামিং করতে পারে এবং বাস্তব জগতে এক্সিস্ট (exists) করে এমন ডেটা বা তথ্য (objects) নিয়ে প্রোগ্রামিং করতে পারে তেমই একটি প্রোগ্রামিং ল্যাংগুয়েজ । ১৯৯১ সালে গুইডো ভ্যান রস্যিউম এটি প্রথম প্রকাশ করেন এবং এটির নামকরণ করা হয় ব্রিটিশ রম্য অনুষ্ঠান "মন্টি পাইথন ফ্লাইংসারকাসের" নামে হতে । কেন পাইথন নিয়ে এত ভাইব? পাইথন নিয়ে ভাইব হওয়ার কারন অনেক , তার মধ্য থেকে কিছু কারন যেনে নেওয়া যাক চলুন ! ডেভেলপারদের সবচেয়ে বড় কমিউনিটি বেসড ওয়েব সাইট স্টাক-ওভারফ্লো (https://stackoverflow.com/) এর একটি পরিসংখ্যানে সম্প্রতি

CSS ক্লাস (Class) Vs আইডি (ID)

CSS এর ক্লাস (Class) এবং আইডি (Id) এর মধ্যে পার্থক্য কোথায় ? ১। আইডি (Id) হল ইউনিক , একটা এলিমেন্টে কেবল মাত্র একটা আইডি (Id) ব্যাবহার করা যাবে, এবং পুরো কোড জুরে যেকোন আইডি (Id) শুধুমাত্র একবারের জন্যই ব্যাবহার করা যাবে ! ২ । কিন্তু  ক্লাস (Class) একটা এলিমেন্টে যত খুশি ক্লাস (Class) ব্যাবহার করা যাবে , এবং একই ক্লাস (Class) যেকোন এলিমেন্টে ব্যাবহার করা যাবে !