Skip to main content

General Tips for people having computer

Sometimes there might be a situation for you when you needed a shortcut but you might have not known it at that moment. So here are my few tips for doing better with PC.


You can open your PDF files in your browser. There might a situation when you want to open a PDF file in a virtual machine and it doesn't have a PDF reader. Almost all operating systems will have a built-in browser or a browser of your choice, you can simply rely on it.

Editing a word document is easy online. When your virtual machine or host machine itself doesn't have a word editor or any spreadsheet editor, you can simply edit it online using Microsoft Word 2013 or Google docs. You have to login for that to happen and an active internet connection.You have to upload a word document to OneDrive for editing using Microsoft Word online.

In order to have better startup time when starting the PC, you should have a check on the startup programs. To get better understanding of this, check How to disable startup programs in windows 7?

Crying over the lost data is useless when you best back-up utilities and recovery software in the market for free and freemium. Data back up software reviews for 2014Data recovery software.

Installed sticky notes? If your answer is NO, then install it immediately. It is a light weight and better utility compared to notepad. Windows sticky notes.

Bothering about the Antivirus as which is best and where can I get original or cracked antivirus? If you are using original windows operating system and you fear about internet virus and virus apart from trojan, you can simply rely on Microsoft Security Essentials. It is easy to download and update is automatic. Finally it is free.

It is easy to turn your PC into a access point.No hassle with softwares. Just a bat file. Refer to Make PC into access point.
Follow up posts:

Comments

Popular posts from this blog

Trip to narsipura Sri Vaidya Narayana murthy - Shimago for cancer treatment

Hi friends. I would like to share my experience about my trip to Shimago and meet Guru Narayana murthy who would treat for cancer, diabetics, kidney diseases. My brother was diagnosed with rectal cancer on October 2014. The news of cancer to a young boy of 26 years shook our whole family. But we are strong as he was getting treatment from world class care clinic in Cleveland - Cleveland clinic, Ohio, USA. As fate had other plans, his cancer came in January, 2017 back after an extensive surgery, chemotherapy and radiotherapy. The doctors made a decision to keep him in hospice care: support for advanced illness. They said that there is no more treatment and only to keep him comfortable as long as he lives, we lost our hopes and that is when we thought of giving a try to Ayurvedic medicine. We found Guruji narasipura narayana murthy. His medicine gave us hopes and I recently went to narsipura to get the medicine. I thought it would be best to give my share of experience in reaching the

Solution to "child margin affects parent" in CSS

The browser implementation is that when the parent has no content and the child requests for margin, the parent is brought down instead of child going down. The solution for these are listed below with their side effects. floats , You  have  to float elements border-top , This pushes the parent at least 1px downwards which should then be adjusted with introducing  -1px  margin to the parent element itself. This can create problems when parent already has  margin-top  in relative units. padding-top , same effect as using  border-top overflow: hidden , Can't be used when parent should display overflowing content, like a drop down menu overflow: auto , Introduces scrollbars for parent element that has (intentionally) overflowing content (like shadows or tool tip's triangle) See the Pen Relative with Margin by Manikanta ( @immnk ) on CodePen .

Redirection in javascript

How Page Re-direction works ? Example 1: This is very simple to do a page redirect using JavaScript at client side. To redirect your site visitors to a new page, you just need to add a line in your head section as follows: <head> <script type="text/javascript"> <!-- window.location="http://www.newlocation.com"; --> </script> </head> To understand it in better way you can  Try it yourself . Example 2: You can show an appropriate message to your site visitors before redirecting them to a new page. This would need a bit time delay to load a new page. Following is the simple example to implement the same: <head> <script type="text/javascript"> <!-- function Redirect() { window.location="http://www.newlocation.com"; } document.write("You will be redirected to main page in 10 sec."); setTimeout('Redirect()', 10000); //--> </script> </head> Here