asking for vote

ক্যানভাস

কই গেলে গো মুরগী বুবু মোরগ ভায়া কই? আমি শেয়াল আর কতক্ষণ বাইরে বসে রই? আমায় কি গো ভয় পেয়েছো? ভয় ক’রোনা কোন, দরজা খুলে বাইরে এসে একটি কথা শোন। — হঠাৎ কেন এতো উদার হলো তোমার প্রাণ! ওখান থেকেই বলো শেয়াল খোলাই আছে কান। — শোন তবে, ক’দিন বাদে ভোট হবে এই দেশে আমায়…

mother baby

জননী আমার

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

winter

শীত তুমি এলে

শীত তুমি এলে নাগর দোলায় চড়ে চির চেনা সেই শীতল শাড়ীটা পরে তুমি এলে শীত নগ্ন শ্যামল বুকে আঁচল বিছিয়ে শিশির ঝরালে সুখে তুমিতো জানোনা ও বুক স্বপনে আঁকা পাওয়া না পাওয়ার উষ্ণ পরশে মাখা তুমি এলে শীত হিমালয় হতে নেমে ভাবলেনা কিছু রইলেনা পথে থেমে বস্ত্রহীনার দেহে কম্পন তুলে তুমি এলে শীত দ্বিধা সংকোচ…

a girl holdin the sun on her head

মিঠা রোদ (Mitha Rod)

শীতের সকালে রোদ মিঠাকালে বসে থাকি। রোদে বসলে পাবো আমরা ভিটামিন ডি। রোদ চলে যাবে! তাড়াতাড়ি বসে পরি। মিঠা রোদ হয় না বেশি গরম বা বেশি হালকা, মিঠা রোদ ভালোবাসি আমি ও আমরা। ভাবি যেন চিরদিন রোদটি যায় থেকে। মিঠা রোদে বসতে মোদের ভালো লাগে। চলো! সবাই বসে থাকি মিঠা রোদে। ✍ জারা হোসাইন

Setup screen resolution on deepin 15.11 – The method works on login screen and all user accounts too

1. Open terminal and enter the following command:sudo nano /etc/my-resolution.sh2. Write all the following lines and save the file: #!/bin/bash# My Resolution Settings – 1920×1080 60Hz for Dell monitorxrandr –newmode “Dell” 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsyncxrandr –addmode VGA1 Dellxrandr –output VGA1 –primary –mode Dellexit 03. Make the file executable:…

Git to Bluehost: Uploads web files to the Bluehost shared hosting server from local repository using Git

First of all you need to enable SSH service for your hosting. You can contact bluehost customer service for that. Now let’s go to the main point. Suppose you’ve a website project on your PC named coderoffice and you use git to manage the project. Now you can take the advantage. You can easily update your website…

Add vHost at XAMPP on Linux Mint 19.2

sudo nano +488 /opt/lampp/etc/httpd.conf Uncomment: Include etc/extra/httpd-vhosts.conf sudo nano /opt/lampp/etc/extra/httpd-vhosts.confInsert the following lines: <VirtualHost *:80>     DocumentRoot “/home/user/Documents/myweb”     ServerName myweb     ErrorLog “logs/myweb-error.log”     CustomLog “logs/myweb-access.log” combined     <Directory “/home/user/Documents/myweb”>         Require all granted        AllowOverride All     </Directory> </VirtualHost> sudo nano /etc/hostsInsert: 127.0.0.1 …

Setup custom screen resolution on Linux Mint 19.2 and save

cvt 1920 1080 Copy the modeline from “1920×1080 to +vsync xrandr –newmode “1920x1080_60.00”  173.00  1920 2048 2248 2576  1080 1083 1088 1120 -hsync +vsync xrandr –addmode VGA-1 1920x1080_60.00 Save settings: sudo nano ~/.profile Paste above xrandr –newmode and xrandr –addmode full command lines at the bottom of the .profile file and save it.

Installing Laravel Composer at XAMPP on Linux Mint 19.2 Cinnamon

Follow these steps after completing XAMPP installation:sudo nano /etc/environment Write :/opt/lampp/bin/php before ending the ” double quotation mark and save. sudo ln -s /opt/lampp/bin/php /usr/local/bin/php Now run xampp, sudo /opt/lampp/lampp start Now installing Composer: curl https://getcomposer.org/installer | php sudo mv composer.phar /usr/local/bin/composer Now create a new project: composer create-project –prefer-dist laravel/laravel myapp “5.8.*” cd myapp php artisan serveNow…