row1.info

...the saga continues

  • Increase font size
  • Default font size
  • Decrease font size
News

Motorola S10-HD Wireless Headset

I decided to replace my dead Jaybird Bluetooth headset with the Motorola S10-HD. Not only is this headset incredibly uncomfortable and borderline painful, but the sound quality is ridiculously bad, in fact I can't believe how poor the sound quality is on these otherwise stylish looking things. Avoid.

Last Updated on Sunday, 15 January 2012 22:16
 

Android Headset Blocker

I had an annoying problem with my Desire HD where it kept skipping music tracks while running. I thought that the shake to shuffle feature was turned on, but it turns out that my decaying headphones were creating some unwanted noise and Android was picking this up as a music control signal. Thankfully you can install an application called Headset Blocker which will turn off headset controls.

Problem solved.

Last Updated on Tuesday, 10 January 2012 21:09
 

Another Mercurial GUI for Mac

I have started trialling the Mercurial GUI SourceTree for Mac over MacHG. I still think MacHG is great, but SourceTree seems to have some more functionality and the interface seems to have a better workflow and views. SourceTree seems to offer free registration for a limited time only, so check it out while it is still available.

 

Jaybird Sportsband SB1 Battery Almost Exploded

I got my Jaybird SB1s just over a year and a half ago and sadly tonight they died. I was charging them and as you can see in the above picture the battery has swollen and caused the casing to pop open. This is very disappointing since I have seldom used them and the battery is not replaceable, I guess I was lucky that I spotted problem before the battery exploded.

So I guess I am in the market for some more wireless headphones, this time I will be avoiding Jaybird and looking for something with better performance and replaceable batteries.

 

NBA Jam: On Fire Edition Online Broken

Gah, bought NBA Jam: On Fire Edition for Xbox 360 the other day and I cannot play online. Thought I might just be unlucky since it is a new game, but it seems like a lot of people outside of the USA are having the same issue. Oh course EA just gives the standard we have your money, we don't care, there is no problem answer of reboot your modem and delete all your files, an answer which obviously doesn't work.

 

MacHg Script to Export Mercurial Changes

Here is an adapted script that I use to create my upgrade packages for Simple Review. I like to create a zip file containing all changes between my last tagged version and the latest committed changes. The script has a variable rev which is set to the last tagged version (this could easily be made into a command line parameter). I am using the bundled version of Mercurial that comes with MacHg, so if you are using something else or already have hg in your path you can change or remove the hg variable. You will also need to change the repository and export variables.

#!/bin/bash
#Adapted from http://stackoverflow.com/questions/1871522/mercurial-how-do-i-create-a-zip-of-files-changed-between-two-revisions/2645765#2645765
hg=/Applications/MacHg.app/Contents/Resources/localhg
repository="/Users/row1/Documents/Mercurial/MyProject"
projectName=$(basename "$repository")
export="/Users/row1/Documents/Mercurial"
#Change this to the last tagged version.
rev="3.0.10:tip"

cd "$repository"
cd ..

FILES=$($hg status --rev $rev --cwd "$repository" | cut -c3-)

IFS=$'\n'
FILENAMES=""
for line in ${FILES}
do
    FILENAMES=$FILENAMES" \""$projectName"/"$line"\""
done

zipFileName="$export/$projectName"".zip"
zipCommand="zip -r \"$zipFileName\" $FILENAMES --exclude *.hg*"
eval $zipCommand 

mv "$zipFileName" "export/MyProject-Changes.zip"
exit
Last Updated on Monday, 26 September 2011 22:18
   
  • «
  •  Start 
  •  Prev 
  •  1 
  •  2 
  •  3 
  •  4 
  •  5 
  •  6 
  •  7 
  •  8 
  •  9 
  •  10 
  •  Next 
  •  End 
  • »


Page 1 of 30

External Links