Search
-
Recent Posts
Tags
adwords amazon analytics api apple aws blog chrome chromium cloud Design dropbox ec2 email error facebook firefox google google-apps homebrew ipad javascript jQuery linux lion mac microsoft mysql osx os x paypal php plugin quicksilver raspberry pi scam social spam twitter ubuntu unix video windows woo wordpress
Tag Archives: os x
Typinator has a funny icon with two dots and is not working
On Mac OS X I use Typinator (Text Expander alternative) and lately it has been showing a weird icon in the menu bar (pictured below) and it is not working. The expansion is not paused, and I don’t see any options which would prevent it from working, but it is not working. Quitting and restarting the application does not help, but restarting the computer does fix the issue until it goes into this mode again. Solution for Typinator in Secure Keyboard Mode What does this mean? Typinator has detected “secure keyboard mode”. The icon with two black dots appears when Typinator cannot see what you are typing because your computer is operating in “secure keyboard mode”. Typinator uses an “event monitor” to watch you typing. For security reasons, Mac OS X disables the monitor when you are typing in a password field. However, there are a few programs that turn secure keyboard mode on and do not turn it back off when there no longer is any security risk. In this particular situation, secure keyboard mode was turned on by Typinator. If you do not know which application is causing the problem, try quitting applications one by one and watch Typinator’s icon in the menu bar. When the icon goes back to normal, you know that you have found the culprit. If you have further questions, please see our FAQ page for more information.
App Store: Force Reinstall of App
If you have an app that the App Store thinks is still installed but is really not installed, you can run this command to rebuild the database and fix the app from showing up as purchased, so that you can restart the App Store and then download / install the application a second time. /System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Support/lsregister -kill -r -domain local -domain system -domain user
Apple Introduces Developer ID and Gatekeeper
The Mac App Store is the safest place for users to get software for their Mac, but we also want to protect users when they get applications from other places. Gatekeeper is a new feature in OS X Mountain Lion that helps protect users from downloading and installing malicious software. Signing your applications, plug-ins, and installer packages with a Developer ID certificate lets Gatekeeper verify that they are not known malware and have not been tampered with. Mac Developer Program members can sign applications with their Developer ID now to get ready for Gatekeeper. If you’re not already a member, join the Mac Developer Program today.
Mac OS X: Minimize Hangs or Freezes
If you’re using Mac OS X Leopard, Snow Leopard of Lion, your Mac OS may hang when you to to minimize a window, be it from the yellow circle icon in the titlebar, the window menu, or the command+m key combination. After searching for many tips and trying to close running programs (like the ones near the clock), I realized that I needed to adjust the Dock Preferences to allow minimizing to function correctly: The main keys for me were changing from Genie to Scale effect, and then back to Genie, and unchecking the box that said “minimize into application icon” Hopefully this will help you. Leave a comment if it works.
Disable Dock OS X Mavericks
I use Quicksilver for almost everything and really hate that the dock always seems to be getting in my way. I was looking for a way to remove it, and found the following lines of code. There are some apps, like DockKiller, which can be a little buggy, but what I’ve found is that using the following commands will (for me) make the Dock small enough and move it into a place where it doesn’t pop up, and so this solution was the one that worked best for me. To implement this solution, open a terminal and run the following commands: // makes the dock icon size really really small defaults write com.apple.dock tilesize -int 1 // puts the dock on the bottom of the screen // other values are left and right defaults write com.apple.dock orientation -string bottom // puts the dock on the left side // other values are center and end defaults write com.apple.dock pinning -string start // restarts the dock so the changes take effect killall Dock Here is a screenshot of the dock – this is actual size, a crop from the bottom left corner of my screen :) If you’re looking for general dock preferences you can also check out the Deeper which exposes a lot of these options in a GUI manner: How do I get to the Trash can now? I’ve written a little applescript which helps me pull up the trash: on run tell application “Finder” open trash activate end tell … Continue reading
Mac OS X Dock Preference Settings (secrets)
###Animate launch### defaults write com.apple.dock launchanim -boolean Expose minimizes desktop defaults write com.apple.dock wvous-olddesktop -boolean Prevent changes to position defaults write com.apple.dock position-immutable -boolean Magnification defaults write com.apple.dock magnification -boolean Show Expose corners defaults write com.apple.dock wvous-showcorners -boolean Prevent changes to min-effect preference defaults write com.apple.dock min-effect-immutable -boolean Ripple when placing widgets defaults write com.apple.dock disable-ripple -boolean-neg Screen Edge Position defaults write com.apple.dock orientation -string left defaults write com.apple.dock orientation -string bottom defaults write com.apple.dock orientation -string right Dock Appearance defaults write com.apple.dock no-glass -float Prevent changes to min-in-place preference defaults write com.apple.dock min-in-place-immutable -boolean Arrow key wraps defaults write com.apple.dock workspaces-wrap-arrows -boolean Dock pinning defaults write com.apple.dock pinning -string Bounce Applications defaults write com.apple.dock no-bouncing -boolean-neg Show “Quit” menu item defaults write com.apple.dock QuitFinder -boolean Switch spaces when using Command-Tab defaults write com.apple.dock workspaces-auto-swoosh -boolean Highlight the arrow of the foremost application defaults write com.apple.dock showforeground – wvous-float-style defaults write com.apple.dock wvous-float-style – Dim hidden apps defaults write com.apple.dock showhidden -boolean Prevent changes to Dock contents defaults write com.apple.dock contents-immutable -boolean Show only running applications defaults write com.apple.dock static-only -boolean Hot Corner: Top left defaults write com.apple.dock wvous-tl-corner -string Show shadow defaults write com.apple.dock showshadow -boolean Always show trash as empty defaults write com.apple.dock trash-full -boolean Prevent changes to Dock size defaults write com.apple.dock size-immutable -boolean Enable single application mode defaults write com.apple.dock single-app -boolean Hot Corner: Top right defaults write com.apple.dock wvous-tr-corner -string Autohide defaults write com.apple.dock autohide -boolean Show floating Expose button defaults write com.apple.dock wvous-floater -boolean … Continue reading
Adobe Illustrator Could Not Find The Linked File [Solved]
I’ve written an app for OS X that will take an Adobe Illustrator file with broken links / liked files, and run through those trying to relink them automatically. Instructions Open the Adobe Illustrator (.ai) file with Illustrator. This application has been confirmed to work with Illustrator versions CS3, CS4, CS5, and CS6, and Adobe Creative Cloud Choose “Ignore” or “Ignore / Apply to All” to the messages about the missing files when the document is opening. Those are typically something like “Could not find the linked file / Choose Replace to select another file or Ignore to leave the link unchanged.” Run the Fix Linked Files App that you downloaded / installed. You will be prompted for a directory to search (recursively) for the missing linked files. By default this is set to three levels up from where the Adobe Illustrator file with the missing linked files is located. Please note: If you choose the root folder ( / ) or a folder with many files in it, it may take some time for the system to search for the linked files. I would suggest choosing the most restrictive path possible to start with. After the app has completed, any linked files found will be updated (and will show up normally) in Adobe Illustrator. Save the AI file and the linked files will continue your workflow with all the linked resources now fixed! Next time you open this file all of the resources will remain fixed and you will … Continue reading
Posted in Mac, Software, Tech Tips
Tagged adobe, adobe illustrator, broken links, could not find linked file, illustrator, illustrator cs5, linked-files, lion, microsoft, network, os x, relink, server, snow leopard
31 Comments
Where Linux Mail files are stored on OS X
“1 new message” – a common notification when you start the terminal, especially if you have cron jobs set up and an error occurs. You can use the built-in “mail” function to check and erase messages, or you can manually edit / delete the files located in the directory: /var/mail