Showing posts with label Geeky Tips. Show all posts
Showing posts with label Geeky Tips. Show all posts

Sunday, October 9, 2016

Split Pages from Big PDF File

Have you ever been into situation that you have a big PDF file. But you want to have only some pages of that. For example you have PDF file with 40 pages and you want to have only 10 to 15 pages or so you want first page only or last page only. How will you do that without any Acrobat software like Adobe Acrobat or Acrobat reader. In this blog I am going to explain that.

First of all open that PDF file on Google Chrome Browser. If you don not have Google Chrome, download it as it's required. If you have file stored in your computer, right click on it and open it with Google Chrome. If there is a remote file. Open it in new tab of Google Chrome. It should look something like this.




Do you see print icon on top right side, Check the above screenshot. That's the print icon. Click on that. It should bring following print popup.


If you have printer installed it will be selected by default as destination in left hand side. We don't want to print file. Click on Change button under destination and select "Save as PDF" option.


No in pages by default all will be selected. Instead of all pages, select other option bottom of it and give page range. 

For example if you want first page only. it should be.

1-1

If you want 5 to 10 pages, it should be.

5-10 etc.


Click on save and it will only save the pages you have mentioned. That's it and with this trick you can split PDF files with only required pages. Hope this helps you.

Tuesday, April 26, 2016

iMac, Macbook, Mac Mini - Can Not Shutdown Because Some Apps Are Not Closing

If you are Mac users you may have encountered that some times some applications refused to close and because of that you can not shut down your machine.

This is because these are called zombie processes stuck in some kind of dead lock and no matter what you do, it will not close. If you try quitting it or fore close it, it will not close. So how to over come this situation.

There is only one way to kill these application, and that is through command line. Here are the steps you have to follow.

1) Open Spotlight, Hit Command + Space

2) Type Terminal in it and hit enter.


3) This will open terminal window. Now type following command.

kill $(ps aux | grep 'Application' | awk '{print $2}')

Replace Application with name of application in above command. For example if OpenOffice is stuck then your command should be

kill $(ps aux | grep 'OpenOffice' | awk '{print $2}')

Replace Application with name of application in above command. For example if Xcode is stuck then your command should be

kill $(ps aux | grep 'Xcode' | awk '{print $2}')

This will kill that application and then you can easily shutdown your machine. Hope this helps you.

Monday, April 25, 2016

Not Sure What is Next In Your Schedule? Use This Hidden Feature of Google Calendar

In this blog I am going to explain one of the hidden and cool feature of Google Calendar. We all know Google Calendar is one of the best tool for your time management. You can schedule your appointments, meetings etc. in there and even it is integrated with gmail. How ever there is one cool feature of it and most of the users don't know about it. So in this blog I am going to explain this.

I have following meetings and tasks scheduled in Google Calendar for today.



After finishing some work I wanted to know what is next. So I have to go to google calendar and see my schedule. But then why to go to Google Calendar if you can get details directly in your Google Home page.

Go to Google Home page https://www.google.co.in/ Please note,  You must be logged into your google account. And type following in search box.

what am I supposed to do next?

and it will show your next meeting details from Google calendar from current time on words.


So, very simple, schedule everything in Google Calendar and ask Google to what you have to next and you will get all your answers. 

Sunday, April 24, 2016

Copy Paste Content Without Styling from Webpage to Word Document or Email

Hello,

In this blog I am going to explain the trick to copy paste content from webpage without styling.

All of you may have faced this issue at one point of time in your life. Say you are drafting an email and you want to copy paste some content from webpage. When you copy and paste, the content will be pasted with all the styling. For example,  you are trying to copy following content from some web page.


When you copy and paste this in email or in word document, following happens.




So, as you can see the content is copied with all the styling colors and font etc. This will be painful for you sometime as you have to change font color and size and everything again in your email and word document. So how to overcome this. Very simple, first you copy and paste this content in Notepad if you are using windows machine or copy and paste it in TextEdit or TextWrangler if you are using Mac Machine. This type of applications does not support any formatting so all the styles and formatting will be lost. See example below.



Now copy paste this content from Text application to your email and word and see you will see it will be in plain text format.


Hope this helps you.