One OS-X Tip and One MySQL Dev Tip

I’ve downloaded and installed MySQL recently. I was doing a few things to make it easier to work with and thought, “I ought to document this, it isn’t real intuitive without pages of documentation being read.” So here’s some tips.

1. Make sure you can view all of your files in OS-X, especially if you intend to do development. What I’ve found to be the easiest way to do this, is to setup a script application on the desktop. Open up the AppleScript Editor, quickest way is to press the ⌘ + Space Bar and type in applescript and hit enter. In the editor enter the following code:

[sourcecode language=”bash”]
set dotVisible to do shell script "defaults read com.apple.Finder AppleShowAllFiles"
if dotVisible = "0" then
do shell script "defaults write com.apple.Finder AppleShowAllFiles 1"
else
do shell script "defaults write com.apple.Finder AppleShowAllFiles 0"
end if
tell application "Finder" to quit
delay 1
tell application "Finder" to activate
[/sourcecode]

Then save the file with the following options in the save as dialog selected.

AppleScript Editor Save As Dialog w/ Appropriate Settings
AppleScript Editor Save As Dialog w/ Appropriate Settings

The only thing you really need to set is the File Format to “Application” and be sure nothing is checked. Now whenever you double click the file on the desktop, the finder will automatically be restarted with all the files visible, and double clicking again will hide all of the files from view.

2. Setup MySQL and when done, make sure to add the appropriate aliases to the .bash_rc file for the bash shell. These include setting these two aliases:

[sourcecode language=”bash”]
alias mysql=/usr/local/mysql/bin/mysql
alias mysqladmin=/usr/local/mysql/bin/mysqladmin
[/sourcecode]

That’s it for now, more tidbits to come and a write up of my extended weekend PDX hacking sessions with Geoloqi.

Chrome OS-X Shortcuts for Developers/Coders

I’d been procrastinating finding most of these, just clicking with the mouse/pointer which is slow. When I’m developing code however, using the mouse/pointer just adds up more and more over time. So here’s the shortcut keys to git’r done!  🙂
  • ⌘-Option-I Opens Developer Tools.
  • ⌘-Option-J Opens the JavaScript Console.
  • ⌘-Option-U Opens the source of your current page.
  • ⌘-0 Sets the zoom back to the default
  • ⌘-+ Zooms in the page.
  • ⌘– Zooms out the page.
  • ⌘-W Closes the current tab.
  • ⌘-R Reloads the current page.
  • ⌘-F Search for content within the current page.
Check out my other pages for even more OS-X Screen Capture Shortcuts and Chrome Shortcuts.