Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!

Use Finder's Paste Item Exactly to maintain permissions Apps
You may already be aware that the Finder allows you to copy and paste files and folders to move them around on your Mac: Select a file, choose Edit -> Copy, navigate elsewhere, and then choose Paste Item. Now you've copied the file, and it exists in two places.

If you hold down the Option key, that Paste Item command changes to Move Item Here instead. Now instead of duplicating the file in question, you've changed its location on your Mac. Great!

But here's the hint: Hold down Shift and Option together, and the command becomes Paste Item Exactly. (You can use the keyboard shortcut Shift-Option-Command-V if you're dextrous.) When you select that option, the Finder prompts you for an administrator password. This option ensures that the file's original ownership and permission settings (that you'd set via the Get Info panel, or via the chmod and chown commands, for example) are maintained exactly.

  Post a comment  •  Comments (3)  
  • Currently 3.00 / 5
  You rated: 4 / 5 (9 votes cast)
 
[10,142 views]  View Printable Version
Hide TextEdit's ruler by default Apps

If, like me, you wish that TextEdit did not show its ruler by default, this hint is for you.

TextEdit displays the ruler by default when creating or opening rich text documents. I find the ruler visually cluttering and distracting, and I rarely ever need it.

Unfortunately, TextEdit does not offer a way to turn off the ruler by default in its Preferences window. But it can be done using the following simple steps:

  1. Quit TextEdit if it is running.
  2. Enter the following command into a Terminal window: defaults write com.apple.TextEdit ShowRuler 0
  3. Open TextEdit.
  4. Enjoy increased visual and mental tranquility.

You can always show the ruler if you need it for something by pressing ⌘R or choosing Format > Text > Show Ruler from TextEdit's menus.

To revert TextEdit to its default setting, repeat steps 1 to 3 above, but use this command in Terminal instead: defaults delete com.apple.TextEdit ShowRuler

  Post a comment  •  Comments (13)  
  • Currently 2.11 / 5
  You rated: 2 / 5 (9 votes cast)
 
[5,629 views]  View Printable Version
Access dozens of awesome high-res screen saver images on your Mac for desktop backgrounds Apps
As first pointed out by OS X Daily, Mountain Lion's built-in screen savers cycle through a couple dozen awesome photos, across several categories, with images of space, nature, and more. The images are huge—and thus make great desktop backgrounds.

To find the images, use the Go To Folder command in the Finder (from the Go menu) and navigate here:

/System/Library/Frameworks/ScreenSaver.Framework/Versions/A/Resources/Default Collections/

There, you'll find four folders full of high-resolution imagery. You can copy them elsewhere, or even access the images from right where they are. Simply fire up the Desktop & Screen Saver preference pane, click the Plus (+) icon at the left, and add the folders—or individual images—as desired.
  Post a comment  •  Comments (3)  
  • Currently 4.18 / 5
  You rated: 4 / 5 (11 votes cast)
 
[6,929 views]  View Printable Version
Do more with Siri and navigation Apps

You already know that you can use Siri to ask for directions. You might say, “Give me directions to 1 Infinite Loop in Cupertino, California,” or you might say “Take me home” when you’re out and about.

But there are a few other things you can say to Siri whilst your iOS device is helping you navigate, and you might not know about these options.

Ask Siri, “Are we there yet?”—or similar, less obnoxious incarnations of that query—and you’ll get an update on your estimated time of arrival. You can get more specific, too. Ask, “When is my next turn,” and Siri will give you the number of minutes until you should encounter it.

Tank running low? Ask Siri where the nearest gas station is, and you’ll get suggestions for fill-up spots along your current route. If you tap one, though, you’ll cancel your current navigation in lieu of the new destination instead.

  Post a comment  •  Comments (1)  
  • Currently 3.14 / 5
  You rated: 2 / 5 (7 votes cast)
 
[7,356 views]  View Printable Version
How to pull a password from Keychain to use in a script Apps
Quite some time ago, I needed to create a script which would mount a network volume. I did not want to hardcode username and password into the script, so I kept looking for ways to accomplish this using OS X’s built-in Keychain. The following example uses a script to mount a network volume, using variables for the currently logged-in user, and fetches its password from the Keychain. Of course, you can do other things with this approach, so I figured it might be of use to someone out there.

The following is a combination of these 2 links:
http://hintsforums.macworld.com/showthread.php?t=163359
http://blog.macromates.com/2006/keychain-access-from-shell/

This script gets the password for the currently logged in user and pulls its password from the Keychain. It then mounts a share using the variables without hardcoded username/password. The mount point is not in /Volumes on purpose, because mounting the volume would not work for User B when Fast User Switching is in use and User A remains logged in without having unmounted the volume. echo $USER gets the username of the currently logged in user.
$(get_pw) contains the password retrieved from the user’s keychain.

In this case I am mounting an AFP volume, but it could be any other protocol, as well as something completely different which has nothing to do with mounting volumes.

get_pw () {
  security 2>&1 >/dev/null find-generic-password -ga $USER 
  |ruby -e 'print $1 if STDIN.gets =~ /^password: "(.*)"$/'
}
mkdir ~/Data
mount -t afp afp://$USER:$(get_pw)@10.0.77.3/Data ~/Data
Before running this script you have to create a new entry using Keychain Access with the username and its (server) password.

The steps are as follows:

Manually create a Keychain entry for the AFP user account. To do so open Keychain Access.app and hit cmd+n. Keychain Item Name does not matter, but Account and Password have to be filled out with the user’s username+password. That is the login info of the AFP account on the server!

Then create a shell script the way you prefer. I usually use pico, but there’s also a "run shell script" workflow in Automator if you want to use it. The script is shown above. Here’s a short explanation of what’s happening in the script:

We issue the security command which itself is able to read info from the keychain. It fills the variable $get_pw with the password it retrieved from the keychain. That’s why you need to create the keychain entry mentioned above. Instead of hardcoding which user’s password to get we use another variable called $USER. This always represents the currently logged in user (try echo $USER in Terminal as an example). In the next step we create the mount point, but instead of the default location (/Volumes) we use ~/ to ensure the mount point is inside the user home. This prevents the mount point from being already in use when using Fast User Switching. The last step then mounts the desired share using both variables. In my case that is the share Data on the server 10.0.77.3 which will be mounted at ~/Data.

In order for this to work you need to use network user accounts (Open Directory, LDAP, Active Directory, etc.) OR have to use the exact same username (password does not matter) for the local account and the account on the afp server. That is because $USER will always return the currently logged in user’s name which will be the local account if you are not using network accounts. In my case it was perfect that way, because I use network accounts anyway. You could always replace $USER in the script with jon.doe while losing the flexibility of the solution. I wanted a script without hardcoded usernames or passwords which could get the needed information dynamically from the keychain, which is exactly what this does.
  Post a comment  •  Comments (4)  
  • Currently 3.17 / 5
  You rated: 5 / 5 (6 votes cast)
 
[11,831 views]  View Printable Version
Send an RSS item from ReadKit to Safari's Reading List Apps
ReadKit (http://www.readkitapp.com) is an RSS reader that synchronizes with multiple RSS services. It supports sending articles to read-later services such as Instapaper, Readability and Pocket. However, out of the box there is no way to send an article to Safari's Reading List (aside from manually copy-and-pasting the URL into Safari).

Reading List (RL) is very handy if you have multiple iOS devices, since articles in RL are automatically synchronized and downloaded on each devices. Below, I will describe a simple service that import the currently selected article in ReadKit into RL.

  • Open Automator and create a new Service. Call the Service "Add to Reading List"
  • Select Service receives: "no input"
  • Click on the next drop-down box, select "Other..." and find ReadKit in the Applications folder
  • On the left-hand side sidebar, select "Utilities" and then double-click the action "Run AppleScript"
  • Copy and paste the content of this script into the window
  • Save the service and quit Automator.
  • To add a keyboard shortcut, go to System Preferences -> Keyboard -> Keyboard Shortcuts and select "Services"
  • Find the "Add to Reading List" service and add your preferred shortcut.
  Post a comment  •  Comments (1)  
  • Currently 2.57 / 5
  You rated: 2 / 5 (7 votes cast)
 
[6,981 views]  View Printable Version
Cache Google Maps for offline access on iOS Apps
Google's recent update for the Maps app introduced a variety of new features and improvements. One of those is the ability to save map data for offline access.

If you use Google Maps on a Wi-Fi only iPad, or if you'll be traveling somewhere where cellular data is spotty, knowing how to enable offline caching of map data is pretty important. CNet explained the trick recently.

First, you'll need to zoom in a bit; you can't cache a widely-zoomed-out map view. Then, when you're at the spot you'd like to cache, type OK maps into the search box, and then tap Search.

When you do that, a Google Maps icon will appear briefly, followed by a message indicating that your map data was saved. Now, even when you're offline, if you navigate to your cached areas, the map data will appear.
  Post a comment  •  Comments (6)  
  • Currently 3.57 / 5
  You rated: 2 / 5 (7 votes cast)
 
[16,274 views]  View Printable Version
Navigate directly to recently accessed files and apps Apps
Sometimes, an old hint is so good, it bears repeating. Years ago, we shared a hint involving the Recent Items section of the Apple menu.

Next time you're looking at that particular section, hold down the Command key. The names of your recent apps and files—which you could otherwise select to launch as desired—will change. For example, if your Recent Apps list included Acorn, that item would change to Show Acorn in Finder. And yes, this works with documents, too.

So if you very quickly want to find specific files in the Finder that you know you used recently, the Apple menu's Recent Items section, in tandem with the Command key, can help you out in a jiffy.
  Post a comment  •  Comments (9)  
  • Currently 2.56 / 5
  You rated: 2 / 5 (9 votes cast)
 
[5,917 views]  View Printable Version
Use Siri to find movies with two specific actors Apps

Sure, IMDb’s advanced search tools can you help find occasions when two disparate actors appeared in the same film. But navigating IMDb when you want to play offshoots of Six Degrees of Kevin Bacon is no fun. If you have a Siri-capable iOS device within reach, you can find movie star overlap using only your voice.

Give Siri an instruction like, “Show me movies with Jason Biggs and Woody Allen,” and the virtual assistant should suggest Anything Else a moment later. And in cases of overlap—“What movies have both Susan Sarandon and Tim Curry”—Siri provides a list of all the matching films. (In that case, it’s both Rugrats in Paris and The Rocky Horror Picture Show.)

Tap on a matching movie to see more information about the film.

  Post a comment  •  Comments (2)  
  • Currently 3.44 / 5
  You rated: 2 / 5 (9 votes cast)
 
[5,559 views]  View Printable Version
Adjust All My Files criteria from the Finder Apps

We’ve previously shared a Terminal-based approach for customizing the behavior of All My Files in the Finder. But in Mountain Lion, customizing All My Files’s search criteria—or the criteria of any other similar Finder sidebar entry, is deliciously simple:

Simply right-click (or Control-click, or two-finger click with a trackpad) on the sidebar entry, and choose Show Search Criteria. You’ll see the Smart Search characteristics that power the entry in question, and you can tweak and re-save the search factors you prefer.

Full disclosure: You can’t save over the existing All My Files saved search with this approach; you’re really just saving a new search instead. But it’s quick, painless, and non-destructive.

  Post a comment  •  Comments (4)  
  • Currently 2.67 / 5
  You rated: 2 / 5 (6 votes cast)
 
[11,945 views]  View Printable Version