- Home Page
- Single Page
- Blog Page
- Single Blog Post
- Archive Page
- Privacy Policy Page
- 404 Page
- Search Page
Disable Chrome New Tab Hover Pop-ups/Box
1. Open Google Chrome web browser and type chrome://flags/ in addressbar and press Enter. It’ll open the advanced configuration page.
2. Now type tab hover card in the “Search flags” box.
3. Select Disabled for Tab Hover Cards option from the drop-down box.
4. Google Chrome will ask you to restart the browser. Click on “Relaunch now” button to restart Google Chrome.
That’s it. Now hover mouse cursor over any tab and you’ll get the classic tab tooltip showing only the website title.
বাহুডোরে…
এলোমেলো ইচ্ছে যত ভালোবেসেছি তারই মতো
ডুবে আছি আজো তোরই প্রেমে জীবন সপেছি তোরই নামে,
একই সাথে পথ চলা কত কথা ছিল বলা
সবই যেন আজ শুধু স্মৃতি হলো জানিনা এতো ভাবতে এলো
জ্বলছে হৃদয় উড়ছে সময় তুই কেন থাকিস বল তবু দূরে
সবই ভুলে আয় না চলে বাধবো প্রেমেরই বাহুডোরে…
একা একা বেঁচে থাকা তোকে ছাড়া চলেনা জীবন
লাগে যেন সবই ফাকা বুকের ভিতর একি দহন,
চেনা চেনা একই পথে তোরই আশায় এখনো বসে
পাশাপাশি হাটবো সাথে আবারো খুব ভালোবেসে।
জ্বলছে হৃদয় উড়ছে সময় তুই কেন থাকিস বল তবু দূরে
সবই ভুলে আয় না চলে বাধবো প্রেমেরই বাহুডোরে..
এলোমেলো ইচ্ছে যত ভালোবেসেছি তারই মতো ডুবে আছি আজো তোরই প্রেমে
জীবন সপেছি তোরই নামে!!
মনে মনে খুজে ফিরি ভালোবাসি তোকে যে ভীষণ
কত কথা দিলে পাড়ি বলনা হবো তোরই আপন
যত ভাবি ভুলে যাবো ততো বেশি যেন পড়ে মনে
ভালো কেমন বাসি আমি শুধু আমার এই প্রাণ জানে।
যারা তোমার বিপদের সময় তোমার পাশে থাকেনি, তারা তোমার আনন্দের অংশীদারী হওয়ার যোগ্যতাও রাখেনা।
এক লোক একটা আস্ত বড় পশু গ্রীল করে তার মেয়েকে বললেন– ‘আমাদের আত্মীয়স্বজন, পাড়াপ্রতিবেশী আর প্রিয়জনদের ভোজের জন্য ডেকে নিয়ে এসো’।
মেয়ে রাস্তায় গিয়ে চিৎকার করতে থাকলো– ‘আমাদের বাসায় আগুন লেগেছে। আপনারা আগুন নিভাতে সাহায্য করুন’।
কিছুক্ষণ পরে অল্প কিছু সংখ্যক মানুষ সাহায্যের জন্য এগিয়ে আসলো। বাকিরা এমন ভাব করলো যেনো তারা কিছু শুনতেই পায়নি! যারা আসলেন তারা পেট পুরে মজাদার সেই খাবার খেলেন।
মেয়েটির বাবা খুব আশ্চর্য্য হয়ে মেয়েকে জিজ্ঞেস করলেন– ‘এই যে অল্প সংখ্যক মানুষ যারা এসেছেন তাদেরকে প্রায় কাউকেই আমি চিনিনা এবং অনেককেই কখনোও দেখিনি। আমাদের আপনজনরা সব কোথায়?’।
মেয়েটি উত্তর দিলো– ‘এই যে যারা এসেছেন, তারা কিন্তু খাবার খেতে আসেননি। বরং এসেছেন আমাদের বাসায় আগুন নিভানোর কাজে সাহায্য করতে। তারাই আসলে আমাদের আতিথেয়তার যোগ্য’।
Go Together
If you want to go fast, go alone,
African Proverb
If you want to go far, go together.
Web Developer Skills
- HTML
- CSS
- JavaScripts
- jQuery
- Bootstrap
- PHP
- MySQL
- PHPMyAdmin
- Git
- Gulp
- API Intregation
Links
FB Share Issue with WordPress Cache Plugin
Solution A: create a different cache for Facebook
- Go to W3 Total Cache settings (Performance) > User Agent Groups page.
- While you are at it, tick Enabled for the predefined groups there. This solves the Mobile specific settings have no effect problem too.
- Click the Create a group button at the top.
- Enter Facebook as the group name.
- Add this to the User agents field:
facebookexternalhit
facebookexternalhit/1.1
facebookexternalhit/1.0
- Click the Save all settings button.
Solution B: reject caching for Facebook
- Find the W3 Total Cache settings (Performance) > Page cache > Advanced section > Rejected user agents setting.
- Add this as value:
facebookexternalhit
facebookexternalhit/1.1
facebookexternalhit/1.0
- Click the Save all settings button.
The Facebook Crawler
facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)
facebookexternalhit/1.1
MacOS Localhost Permissions for Apache
Are you receiving the dreaded “Connection Information” permission issue on your local Mac OS X environment? You’re not alone – and thankfully there is a simple solution to this issue.
You are receiving this error because the default webserver user which runs httpd is known as _www, which is not the user in your local account. If you’re the only person that uses your machine, you can change the user to fix the permission issue.
In the terminal, type the following and hit enter:
id
This will return a string of information, however the only information you need is the primary user uid and group gid names.
uid=501(admin) gid=20(staff)
Once you have this information, you will need to edit your httpd.conf file. Type the following:
sudo nano /etc/apache2/httpd.conf
You’ll likely need to type your admin password to edit his file.
Hit Ctrl+W to search the file for “User “. This will take you directly to the place in the file where you need to edit information.
You can see in this file that I commented out the existing user and group with the # sign. Below that I entered the User and Group from the information I found in step 2.
You need to restart apache for the change to take effect.
sudo apachectl restart
Congratulations, you are now running httpd as your local account.
Add Page Template from Plugin
/**
* Add page templates.
*
* @param array $templates The list of page templates
*
* @return array $templates The modified list of page templates
*/
function sf_add_page_template_to_dropdown( $templates ) {
$templates[ plugin_dir_path( __FILE__ ) . 'templates/page-template.php' ] = __( 'Page Template From Plugin', 'text-domain' );
return $templates;
}
add_filter( 'theme_page_templates', 'pt_add_page_template_to_dropdown' );