Categories
Android Apps Device Open Source Solutions

Swift Key – Turn Off Keyboard Touch Vibration

Swift Key is one of the best keyboards for Android and IOs. By default, its configured to enable vibration on key press (usually it takes the system defaults). If you are someone who dislikes this feature, here is a simple way to turn off keyboard touch vibration in it: Steps to Disable Keyboard Touch Vibration […]

Categories
Laptop OsX Solutions

Open Apps From Unidentified Developers in Mac OS Sierra

Here is How to open applications that can’t be opened as they are from an ‘unidentified developer’ in Mac OS Sierra How to Open Applications From Unidentified Developers in Mac OS Sierra Opening a Specific App: If you would like to allow just one specific application to run, use the following steps: Hold down the […]

Categories
Linux MySql Open Source Solutions

How to Rename Column in Mysql

Modifying database schemas is a routine task, but the exact syntax to alter structural properties varies heavily across database versions. If you are trying to rename a column in MySQL, using the wrong command can lead to syntax errors or accidental data loss. How you rename a column depends entirely on whether your environment runs […]

Categories
JavaScript Open Source Solutions Web

JavaScript Date Format YYYY-MM-DD

Here is a simple function that takes the input of JS Date and returns a string of format YYYY-MM-DD: var getDateFromDateTime = function(date) { date = new Date(date); //Using this we can convert any date format to JS Date var mm = date.getMonth() + 1; // getMonth() is zero-based var dd = date.getDate(); if(mm

Categories
JavaScript Open Source Solutions Web

Convert JavaScript Date format YYYYMMDD

Here is a simple function that takes the input of JS Date and returns a string of format YYYYMMDD: var getDateFromDateTime = function(date) { date = new Date(date); //Using this we can convert any date format to JS Date var mm = date.getMonth() + 1; // getMonth() is zero-based var dd = date.getDate(); if(mm