by H.Thirukkumaran | Aug 8, 2017 | tip of the day
Before publishing the application or creating setup files remove the unused NUGET packages from the solutions and do a rebuild.
by H.Thirukkumaran | Aug 8, 2017 | tip of the day
Google BigQuery does not have distinct clause. The work around is to use Group by clause and get the distinct values with record count.
by H.Thirukkumaran | Aug 8, 2017 | tip of the day
To enable multiple desktop for Ubuntu Unity, lauch Appearance window and enable workspaces. It will dock the workspace to launcher and you can use multiple desktops from then on.
by H.Thirukkumaran | Aug 8, 2017 | tip of the day
You can use Chrome browser on Linux. Chromium is an open source version of Google Chrome and it does not have Google’s proprietary features. May be more privacy. To install it run the command sudo apt-get install chromium-browser.
by H.Thirukkumaran | Aug 8, 2017 | tip of the day
You can use array_reverse function to reverse the elements in an array in PHP. This saves you from writing a loop and copy it to another array.
by H.Thirukkumaran | Aug 8, 2017 | tip of the day
You can use asort function to sort an array by value in a key value pair array. To sort the array by value in descending order use arsort.
Recent Comments