RSS
 

Archive for the ‘Uncategorized’ Category

Jawbone UP and Android

25 Mar

jwboneJawbone announced last week that their Jawbone UP was now available forAndroid, which was great news – I had been looking into getting the Fitbit Flex but with their overly long lead time to market (coming in Spring since back in January), I was more than ready to try the Jawbone instead.

Jawbone had some problems with their first generation device, but they seem to have overcome them for this second generation at least according to the iPad crowd.

The Jawbone hardware, so far appears to work very well, exactly as they described and I’m glad that I bought it. However, it appears from my interaction  with them that Jawbone doesn’t quite ‘get’ the Android market. The Jawbone UP app is only available on the Google Play store and is only available apparently to the dozen or so devices listed on the Jawbone  device compatibility list. Google Play will not let you download the app because the Jawbone App manifest is apparently very restrictive as to what devices it will allow. Of course I only  found this out after Amazon delivered my Jawbone in one day and I couldn’t use it.

I called support at Jawbone and emailed them and even though I explained via email and over the phone that  my phone was running 4.0 and my Xoom was fully JellyBean at 4.1.2 there was no joy in getting the  app. They seemed surprised to know that  they could actually put a  link to their own app on their own web site and we Android owners could download for ourselves they didn’t actually need to be in the  Play store and unlike Apple they could allow the app to be obtained directly from them. In fact I received a follow-up email today from Jawbone support explaining  that my Xoom was released with 3.0 and so would not be supported. I’m sending them a link to this blog post so that they get that Android devices just like Apple devices do get updates to newer versions they are not stuck with what was installed at the factory.

Bottom-line if you are not on the list of their supported devices, and even if you  are. Download and install the app before you even think of buying the Jawbone UP. If you can’t  get the app installed before you buy it – the experience will not  get any better when you actually have the Jawbone in hand.

I ended up trying out 4 tablets and 3 Android phones (hoping to get the .APK that I could email to myself) and none of them  worked including a supposedly compatible Samsung LG phone. I did eventually manage to get the app from a kind android user who mailed it  to me and if you want  to risk it, you can try the torrent route (so not recommended). Of course Jawbone may listen and provide a download link but who knows. I’m using the Jawbone with my Xoom and I like it – more about that in my next post after I have more  than 1 day  experience.

 
Comments Off

Posted in Android, News, Review, Technology, Uncategorized

 

Ruby: Installing GIT and Heroku (Part 1)

01 Feb

GIT is a widely used version control system in the Ruby community. Version Control Systems in general or Source Code Management (SCM) systems like GIT are pretty much standard these days for any software development. Subversion has been widely used in the past especially for Java development but the Ruby, particularly Rails, community has been moving heavily towards GIT.  I needed the GIT client at least to be installed, as a base for some other projects (more on that later).

  • Downloaded: http://sourceforge.net/projects/mingw/files/Automated%20MinGW%20Installer/ and installed Mingw.
  • Downloaded the  devkit (ruby addons) from rubyinstaller.org /addons.html  this version displayed a cygwin (the unix environment emulator under windows) heap problem, the solution for which was to use a rebased msys DLL (or if you have the Microsoft Visual C++ compiler then you could download the source code version and compile which would eliminate the problem. If you don’t have the VC commpiler (like me) then download the  msys-rebased.zip from http://www.madwizard.org/electronics/articles/winavrvistaand overwrite the existing msys-1.0.dll.
  • Generate the public and private key pairs: c:ApplicationsDevelopmentGITbin>ssh-keygen -t rsa -C “winstonlawrence@gmail.com”
Generating public/private rsa key pair.

Enter file in which to save the key (//.ssh/id_rsa): userswinston.sshid_rsa

Enter passphrase (empty for no passphrase):

Enter same passphrase again:

Your identification has been saved in userswinston.sshid_rsa.

Your public key has been saved in userswinston.sshid_rsa.pub.

The key fingerprint is:

76:6e:69:f3:1c:dd:b0:ef:1c:95:bd:05:43:2f:71:94 winston.lawrence@gmail.com

 
Comments Off

Posted in Developer, Ruby Notes, Uncategorized, Web Services