Have you ever tried to verify if your web application is Mobile friendly? Absolutely, Yes. You must have tried but how? Now a days it is very important for any web application to be mobile friendly because of following reasons: Mobile uses have different perspective for the website. They…
How to Rotate Text in Excel
Let’s see, how to rotate text in excel. Microsoft Excel has a very interesting formatting support that lets you change the way you want to show your data. You can align your data which is provided in cell(s) of excel file. It can be aligned in all possible directions in…
How to Write a best resume in Word with help of LinkedIn in Resume Assistant
Your resume is your image on the document which shows your shine to the hiring managers, who recognize you as a person, they’re looking for. But the problem is showing your skills and expertise in the correct way. Write a best resume in Word with help from LinkedIn in Resume…
ps1 cannot be loaded because the execution of scripts is disabled on this system Powershell Error
There are many cases, when we get an error “ps1 cannot be loaded because the execution of scripts is disabled on this system” while executing any script in Windows Powershell. It is well understood that the execution policy helps to protect you from scripts that you do not trust. Changing…
How to Submit Your Website to Google, Bing, and Yahoo Search
Hey, do you have a website or blog which is not appearing on Google or other search engines? Are you getting confused to know, which search engine is the best search engine? Do you want to know, how to Submit Your Website to Search Engines? Buy Now Buy Now …
How to Change Your Password via Remote Desktop
Change password via remote desktop becomes challenging, if you are not aware of handling it. Sometimes, you take the remote of desktop available in different domain. In that case, if you want to change your password of remote user, definitely you need to take RDP session of remote desktop. Then,…
Why You Should Start Blogging?
Have you ever wondered why so many branded personalities run blog? They are already producing their products or services still they start blogging. Although their products or services are running successfully, why are they wasting time in blogging? Do you know, their readers thirstily wait for upcoming blogs?…
Short Story – Change yourself before changing the world
Short Story, Once there was a saint. He was very popular for his spirituality and kindness. People around the world used to come and used to receive consultation. How to Write a best resume in Word One day, a mother along with her kid came with a problem. She was…
How to Count total number of objects in SQL Server instance
Below query will help you find the list of object counts in the database: SELECT type, total_count = COUNT(*), last_crdate = MAX(crdate), last_refdate = MAX(refdate) FROM ( SELECT type = CASE WHEN xtype = ‘U’ THEN ‘table’ WHEN xtype = ‘V’ THEN ‘view’ WHEN xtype = ‘P’ THEN ‘proc’ WHEN…