Categories
Linux Open Source Solutions

Fixing Open Office Issue – User Installation could not be completed

Encountered this issue while trying to run Open Office from a newly installed Ubuntu box: This application could not be started. User installation could not be completed. To fix this issue you need to basically reset the config of LibreOffice. This can be done using the following command (Warning: This deletes all your settings and […]

Categories
Android Device Hardware Nexus 5 Open Source Solutions

How To Disable Keyboard Touch Vibration in Android 6 Marsh Mallow (Nexus 5x & 6p)

Google Keyboard is the default keyboard in the Android 6(Marsh Mallow). By default, its configured to enable vibration on key press. If you are someone who dislikes this feature and wants to disable it, here is a simple way of disabling it: {adinserter 3} Go to Home -> Settings -> Language & input Locate “Google […]

Categories
JavaScript jQuery Solutions Web

JavaScript Loop Through Select Options – Example

Update (2026): This guide has been updated with modern ES6+ methods and troubleshooting FAQs to ensure it works with the latest web standards and frameworks. Iterating through dropdown (select) options is a fundamental task in web development. Whether you are validating a form, dynamically filtering data, or syncing UI states, knowing how to efficiently loop […]

Categories
Android Apps FaceBook Solutions Web

How to Disable Facebook Links from opening in the Facebook App Browser

Facebook recently update added a new feature to its mobile app. The feature loads all links clicked on Facebook to open in the in-app browser as opposed to a browser installed on the phone. While this is faster, it seriously limits what you can do with the open page (for eg. sharing is limited). But […]

Categories
Internet Explorer Solutions Web

How to force Internet Explorer to view a page in a specific version mode.

Meta tags can be used to force Internet Explorer(IE) browser to use a specific standards mode. The X-UA-Compatible meta tag tells IE what view mode to use to render the current page. Here is how to emulate different browser modes using meta tags: Emulate IE 7: <meta http-equiv=”X-UA-Compatible” content=”IE=7″> Emulate IE 8: <meta http-equiv=”X-UA-Compatible” content=”IE=8″> […]