Showing posts with label tech. Show all posts
Showing posts with label tech. Show all posts

Saturday, November 17, 2012

Growl notification trigger not opening app or having no reaction on click

Growl is a great way of being politely notified of system events in OSX. I recently upgraded and bought Growl on the app store, and like many other users, I had problems like:
"Clicking notification doesnt open the app that triggered the notification"
or
"zero reaction on clicks when a new notification pops up"
I had this problem because I had a previous version of Growl before upgrading.

To restore this very handy functionality, install the Growl Version Detective (http://growl.info/downloads#generaldownloads currently 1.2.2) and upgrade the Framework version on your app like shown below.

After updating the Framework version for iTerm and Adium, I was able to click on the Growl notification and have that action restore the focus to the respective applications.




Select your app and click "Upgrade FW"







Tuesday, April 24, 2012

Change OSX volume keyboard shortcut

There isn't a way to customize the keyboard shortcut to increase or decrease (i.e. change) the volume in OSX. That's unfortunate, because it's difficult to hit the fn button in the far bottom left of the keyboard and the F12 button in the far upper right of the keyboard if you're holding a beautiful baby like Bronwyn Massey.

This article provides instructions on how to make your own keyboard shortcut to change the volume on your mac with Applescript and Quicksilver. Since Applescript comes with OSX, you'll only need to download Quicksilver (http://qsapp.com/). Quicksilver is a very handy app that helps you quickly launch programs and has a global hotkey feature for free (vs. Alfred that requires you to buy their powerpack).

1. Get the Applescript code here or in my GitHub repo (https://github.com/jwsy/ChangeVolumeApplescript) and paste it into the Applescript Editor. You'll have to repeat these steps for each individual script.     
 2. Test the code by hitting the Run button. You should see the syntax highlighting and a growl notification in the upper right. If you don't have growl, just delete lines 6-12.

3. Save the script with File Format: Application. You'll need to move the resulting DVolume.app into the /Applications/Utilities folder or somewhere that Quicksilver will index in its catalog. OSX might prevent you from saving directly to /Applications/Utilities, so you might have to save to your desktop first and then copy it to /Applications/Utilities.

4. Finally, open your Quicksilver preferences and create a new HotKey (i.e. keyboard shortcut) in the Triggers tab.

Creating a keyboard shortcut is easy in Quicksilver ^_^
 

I set the keyboard shortcut to option+F3. Note that I'm using my F keys as standard function keys as shown below in the Keyboard settings. If you don't have this checked below (no check is the default setting), you can set the shortcut to fn+F3.

Sunday, April 17, 2011

Blogger "naked domains" on goDaddy

I'm sure that this is a title that Bob Parsons would love.

If you want to host a Blogger blog on a naked domain i.e. "http://mystady.com" vs. "http://www.mystady.com", then mystady has the answer for you: (http://mystady.com/2011/01/solved-blogs-may-not-be-hosted-at-naked.html?showComment=1303072919290#c6469598480890494930).  It definitely works, and here's a screencap of what your goDaddy DNS Manager should look like.

Note that there is no "www" CNAME entry and I had to go to my Google Apps admin page to disable Sites.




Import Posterous to Blogger --fixing bX-q5k3d4

I just recently imported a Posterous blog to Blogger. I thought that Posterous was very convenient with its crosspost capability, iPhone app, and bookmarklet, but the load performance was slow and the site search was broken.

While Posterous also has a convenient import tool to go from Wordpress/Blogger/Tumblr/etc., there's no tool that lets you go from Posterous to Blogger and it required a little bit of a hack to do this due to a "Sorry, the import failed due to a server error. The error code is bX-q5k3d4"

1. Get a Wordpress account and use the Import tool with Posterous.  You'll need to enter your Posterous credentials.

2. Export your Wordpress blog that contains all of your Posterous posts.  Doing this will create an xml file that isn't compatible with the Blogger import tool and gives you that bX-q5k3d4 error code.

3. Use the wordpress2blogger (http://wordpress2blogger.appspot.com/) app to convert the Wordpress.  Note that this app restricts you to files smaller than 1MB.  What you can do is import small portions of your blog with the Wordpress exporter in step 2.

4. Import the fixed xml file via the Settings -> Blog Tools -> Import Blogs tool in Blogger

Tuesday, October 24, 2006

Turn off/stop/disable Final Showing Markup view in Word

This macro will make MS Word start up in "Final" as opposed to "Final
Showing Markup." It's quite annoying when Final Showing Markup is the
default view--this has to stop/be disabled; I hope that this is
addressed in the next version of Office. Back to the point, this macro
will take you back to the days of Word XP and stop the Final Showing
Markup view before it rears its ugly head.

Final Showing Markup *is* shown by default if changes are tracked on a
document. For example, edit a document of your own, track changes,
then send it to a friend. Even though your friend doesn't want to see
the markup, they *WILL* because it's there. This little VBA macro
makes it so that you won't see the markup by default anymore, and
instead will see the Final (without markup) view.

Just dump these lines into a module in your Normal template (hit
ALT+F11 to start up the Visual Basic Editor, right click Modules under
the -Normal- directory and add a Module). Since the name of this sub
is "AutoOpen," it will execute whenever you open a document.

''''''''' VB Start '''''''''
Sub AutoOpen()
With ActiveWindow.View
.ShowRevisionsAndComments = False
.RevisionsView = wdRevisionsViewFinal
End With
CommandBars("Reviewing").Visible = False
'''OPTIONAL: previous line turns off Reviewing toolbar
End Sub
''''''''' VB End '''''''''

Hope this helps!
jyeee