Where is FileMerge on Lion?
Thursday, April 26, 2012 at 3:49PM /Applications/Xcode.app/Contents/Applications
mac By day, I am a mild-mannered web developer. These are related notes.
Thursday, April 26, 2012 at 3:49PM /Applications/Xcode.app/Contents/Applications
Friday, April 20, 2012 at 1:51PM You need to send someone (or do anything with) a list of URLs you have open (in Safari or Chrome on Mac).
Use this Automator workflow script:
on run {input, parameters}
set _urls to {}
tell application "Safari"
repeat with _tab in tabs of window 1
set end of _urls to URL of _tab
end repeat
end tell
set {_tid, AppleScript's text item delimiters} to {AppleScript's text item delimiters, return}
set the clipboard to _urls as string
set AppleScript's text item delimiters to _tid
return input
end run
Then, just paste wherever you like!
Sunday, March 18, 2012 at 11:40AM Is it silly to suppose that a future iPad might simply be called Pad? Think about it. If a company can redefine a common verb like "like," isn't it possible to redefine a proper and much less commonly used noun?
humor
Wednesday, March 14, 2012 at 10:14AM Like most developers with a Mac I presume, I love TextMate! One of the things I have often wanted to do is to select text in an application and paste it into TextMate. Thanks to Aaron at 9thport.net, here is a dead-simple solution!
Saturday, February 11, 2012 at 3:07PM To find and replace in phpMyAdmin, use this:
UPDATE tablename SET fieldname = REPLACE(fieldname, "old", "new");