Changed Files In Subversion Repo

We have a client here who manages there own web server and website deployment, but they rely on us to develop and update their site as needed. For this reason, they prefer to receive updates to their site in patch-like zip files. On our end we mange this project with a combination of Unfuddle, SVN and a staging server that mimics their server environment. When it comes time to release code it can be a bit confusing for us which files the client will need for a particular update. We rely on SVN to help.

First, we determine at which revision in the repository the updates began. We do this by referencing associated changesets inside Unfuddle (Side note; Unfuddle is a fantastic project management and source control tool that we recommend checking out.) Then, it’s just a matter of grabbing a diff from this changeset to the HEAD. From the command line, do (Where “XX” is, of course, the revision our changes start at. In doubt, we err on the side of more files than necessary.):

$> svn diff -r XX:HEAD --summarize>~/Desktop/diff.txt

This dumps a summary of the affected files into a text file on the desktop. From there we go down the list and compile our patch for the client. Easy.

View Hidden Files On OS X

A quick tip today for those of you looking for a way to easily toggle hidden file visibility on OS X. I found myself toggling this setting frequently via Terminal.app when working with htaccess files, so I ended up putting together a little AppleScript to make life easier.

The script works as a toggle to turn the setting on or off. So, run it once to show hidden files, then run it a second time to hide them again.

Just paste this into ScriptEditor and you’re good to go. For added automation “Save as…” as an application and drop it in your Applications folder.

try
	set toggle to do shell script "defaults read com.apple.finder AppleShowAllFiles"

	if toggle = "True" then
		do shell script "defaults write com.apple.finder AppleShowAllFiles False"
	else
		do shell script "defaults write com.apple.finder AppleShowAllFiles True"
	end if

	do shell script "killall Finder"
end try

Alternatively, you can just download the script here.

Kill GMail text ads without using AdBlock

According to his personal blog (screenshots included), Joe McKay was able to prevent the appearance of sponsored ads on Gmail by referencing tragic or catastrophic events (words which Google bans from their ads), as well as words from the late, great, George Carlin’s list of seven words you can’t say on TV.

But, if you’re looking to send an email to someone of importance, and you’re not interested in throwing down some dirty words (but murder still passes through your moral filter), then Mr. McKay has come up with the perfect sentence to add onto the end of each email:
“I enjoy the massacre of ads. This sentence will slaughter ads without a messy bloodbath.”

Think your code source doesn’t matter?

The Japanese principle of ‘form over function’ holds true in the Fujitsu binoculars website.

1. View Source: http://www.fujinonbinos.com/
2. Google Earth screenshots: http://b3ta.com/links/355881
3. ????
4. Profit

blown = mind ? true : false;

Older Posts »