Posts tagged ‘Software’

2010
09
Mar
Category: Mac, Self

I guess I never noticed it, but I have a lot of menu icons! In order from left to right is:

Adium
Waveboard
Tweetie
BetterTouchTool
Alfred
Dropbox
Google Notifier – Calendar
Google Notifier – GMail
Caffeine
MobileMe Sync
Time Machine
Bluetooth
Wireless
Audio/Volume
Time
Spotlight

Check out a screenshot of all of them on my desktop:

2010
01
Jan
Category: Mac

When I first updated to Snow Leopard I was using a Logitech mouse. But I kept having problems with it. Some of the time it would read my single clicks as double clicks. So if I was selecting a bunch of files to be deleted, it would then open them all up. It became very annoying. So I started using the Mighty Mouse until the Magic Mouse came out. I use the Magic Mouse exclusively now.

I have to say the Magic Mouse is almost the best mouse I have ever had. I say almost because with both the Logitech mouse and Mighty Mouse, I had a way to do application Exposé without touching the keyboard. For most people, this isn’t a big deal. But I spend a lot of time on the computer. Shortcuts like that really help.

I’m pretty sure Apple is working on updating the Magic Muse driver to do it now, but in the mean time, you can use BetterTouchTool. I have it set right now to three finger click opens up Exposé. I can easily change it to a two, three, four, or five finger click, or tap, or swipe. It’s a pretty nice little program. If you gave a Magic Mouse, I recommend you try it out.

Even if you don’t have a Magic Mouse, you can still use it on multitouch touchpads on the Macbook and Macbook Pro.

[Update Jan. 11th, 2009] There is also MagicPrefs which looks like it does the same thing. I haven’t tried it because BTT is working great for me.

2009
15
Oct
Category: Mac
Tags: ,

When I upgraded my Mac from Leopard to Snow Leopard, the only thing that really changed for me was I had to updated a couple pieces of software or wait about a week for the software to be updated. There were two things that could not be updated. The first was a plugin called NuFile that I used to create new files and SCPlugin that I used for subversion. Both used the context (right click) menu. Unfortunately, Snow Leopard changed the way that context menus are done. Apple now wants software developer to use the services menu instead. So for now, both are dead in Snow Leopard.

To get around the NuFile problem of creating a new file, I am using QuickSilver to open the application and then save the file wherever I want it. Or saving the file to the desktop and dragging it into the folder where I want it. Not as quick as the context menu but it gets the job done.

As far as SCPlugin is concerned, I needed a subversion app right away. So I started downloading a bunch of them to see which one I liked the best. A lot of them didn’t run on Snow Leopard. The ones that did, they were too complicated and it annoyed me or they didn’t notify me if there was an update. Which is important to me. I don’t want to check for an update manually. I wanted the app to check for an update and then left me update it if and when I wanted. I liked svnX up until I wanted to add a folder with 4 levels of subfolders in it and one file inside of the last folder. I ended up having to add the folders one by one. So I dropped that right after that experience. Plus it was difficult to get to work with repositories that required a username and password. You would have to go to Terminal to accept the certificate.

Then I landed on Versions which everyone thinks is the greatest subversion app for the Mac. I tried it out. It was good. Much better than all of the other subversion applications I had tried previously.

CornerstoneThen I found Cornersone. It did everything Versions did, but it did it better and quicker. It has a very nice inline content viewer as well. It also felt smoother and more stable to me. It also plays nice with repositories that require you to log in with a username and password and also saves the information in the keychain. Both are about the same price (Cornerstone is only $1 cheaper). Now that I have Cornerstone and see its power, I don’t even see myself going back to SCPlugin even if/when they update to work with Snow Leopard.

2009
13
Oct
Category: Mac, PHP

I am using MAMP for local PHP development. It’s alright. It has a tendency to not want to cooperate sometimes. Like this morning. I loaded up MAMP and Apache started just fine but MySQL didn’t want to do anything.

If you are getting an error similar to “Error: Could not connect to MySQL server!”, rather than having to reinstall MAMP (which sometimes doesn’t work), here’s a fix:

  1. Quit MAMP
  2. Open Terminal (Applications/Utilities/Terminal.app)
  3. Type “killall -9 mysqld” (without the quotes)
  4. Start MAMP

It should be working now. If not, you may have to sudo the command (“sudo killall -9 mysqld”)

Another option is to go to Appliacations/MAMP/db/mysql/ and delete anything is is NOT a folder. I didn’t have to use this option so I can’t vouch for it myself. According to forum postings it works though.

2009
26
Sep
Category: Misc, PHP

I have been playing with Codeigniter a lot lately. I was in the middle of working on something when MAMP gave me a 403 error.

The error was “403 Forbidden You don’t have permission to access / on this server” Navigating to any folder would give me the 403 error as well, even http://localhost:8888/MAMP/?language=English.

This was a pretty simple issue to correct. Not simple enough at the time though

  1. Stop all MAMP servers (Apache and MySQL Server)
  2. Navigate to Applications/MAMP/conf/apache
  3. Open httpd.conf
  4. You can probably open it with TextEdit. I opened it with Dreamweaver. Just make sure TextEdit is editing it in plain text format and not rich text format.
  5. Find the following section of code (on mine it was on line 378):
    <Directory />
    Options Indexes FollowSymLinks
    AllowOverride All
    </Directory>
  6. Change “AllowOverride All” to “AllowOverride None
  7. Save the file
  8. Start MAMP and test the pages.

If that doesn’t work for you, you can always Google it. The MAMP forums have a lot of posts about it.

2009
05
May
Category: Mac
Tags: , ,

I was wondering what other subversion tools were used. For the PC I use TortoiseSVN. I know Flex comes with a plugin for Eclipse called Subclipse. I’ve tried it and I’m not a fan of that one. To me it seems likes it says it updates but it doesn’t fully complete. For the Mac I use SCPlugin. I’ve been pretty happy with it so far. There are a couple quarks but for the most part it’s pretty good. What else is out there?