Nest not only takes inspiration from Apple, they take lawyers

Nest not only takes inspiration from Apple, they take lawyers:

Nest describes Honeywell’s patents as “hopelessly invalid” “retreads already invented by others years before,” and as The Verge reports in their story, Nest CEO Tony Fadell describes Honeywell as “worse than a patent troll”:

Nest’s full answer to Honeywell’s lawsuit reveals the same arguments in greater detail. (It also contains amazing legal zingers like “Nest denies that Honeywell is an innovator in the area of thermostat technology.”) According to the filing, “Honeywell has a track record of responding to innovation with lawsuits and overextended claims of intellectual property violations,” and the patents in question should all be invalidated by prior art — even, in some cases, by previous Honeywell patents Nest claims the company hid from the Patent Office.

Man, I’d never have thought thermostats could get so interesting.

[Me either. Plus I’m hoping that some combination of success and desire cause them or others to create similar improvements for other household controls. Goodness knows they need it.]

Source: Coyote Tracks

Photo check deposits

Photo check deposits:

It’s much faster and simpler than a photo deposit. (I can also get cash while I’m there. Can’t do that with the iPhone app.)

And then it’s done. The check is out of sight and out of mind. I know that if anything goes wrong, the bank will mail me something about it, although I’ve never had an ATM-deposited check get rejected by the bank later.

Sometimes, new technology is not progress.

[I hope the folks at Simple are listening. (Hey, where’s my invite anyway? :) The thing is, simply using cool technology is never enough. It has to provide a better experience. If it doesn’t it’s a failure. Certainly you don’t want a process that’s worse than old way, or less flexible.]

Source: Marco.org

(Part of) Why Instapaper and Similar Are So Useful

(Part of) Why Instapaper and Similar Are So Useful:

ReadWriteWeb, Jon Mitchell: Websites Have to Get Better:

Read-later apps are competition for noisy, ad-ridden websites. They represent a simple fact: Users hate our sites.

Sure do.

Dave Winer suggests:

Generate a community of template designers who create readable templates that we can use in content management systems… Make it easy for people to make readable sites. And beautiful and have advertising. Help solve the problem.

[It’s like the golden age of designers. I don’t think the impact of design has ever been given more play. And the same open source tools that work for developers probably work well fr designers (I’m thinking Github here). I wonder if there is a too much ‘individuality’ still bred into the designer space.]

Source: inessential.com

eBooks as Tools

eBooks as Tools:

Books May Be Better Objects, but E-Books Are Better Tools: I have some significant concerns about Amazon’s increasing dominance over the publishing world, and the company may not keep my loyalty forever; but the transferability they have enabled is a huge boon to me in my work. Years ago, when I was a young book collector, I decided that I had to spend my money on books for use rather than display — I didn’t have the resources to be a collector and a scholar. Similar thoughts have prompted my recent move towards electronic texts. Like Nick Carr, I love the fixities of the book as a designed object; but the resources offered by digital versions of texts make my life as a scholar far easier than it has ever been. I can’t resist that. 

Jacobs makes a very important point that ebooks are often far better tools for daily use. When Apple introduced Multi-touch books in iBooks 2, they made a big point about the ease of fast navigation in the textbook – something that is crushingly awful on a hardware Kindle.

At the same time, iBooks doesn’t have a “back” button so navigating around a book via hyperlinks is fraught with the danger of losing your place.

[I wish I had tie to dig into the process of creating something via iBook Author. I thin I’d learn a lot about how my son will be reading in a few years.]

Source: Fraser Speirs

Project Glass

Project Glass:

Google’s transition into the new Microsoft is now complete: fancy-pants sci-fi concept video to promote stunningly awkward augmented reality glasses.

[This one is understated. So you want Google wants to hear all your ideas about how this is going to work? Cool Let’s start with “Google will not collect any information based on my theoretical use of this theoretical device… one day.]

Source: Daring Fireball

d: statsd, metrics, and measuring what you do

A long time ago in web years was written a blog post “Measure Anything, Measure Everything” by the devs at Etsy. It got me thinking about this issue, and it’s been really critical to me ever since. Years ago Seth Godin advised me that you have to measure in order to understand your effectiveness. And I’ve since found that whether that’s big or small, measuring removes anxiety. You know. You don’t have to guess. It’s either working or it’s not. And… it’s amazing how often people guess wrong. Also, people don’t believe that it is possible to measure a lot of things. But I’ve seen some great examples of making it possible to measure even really difficult things (like how you’re feeling) and reflect that data in a way that makes it clear.

A stat example

In this specific case… I loved that fact that UDP keeps things loosely coupled, and that statsd rolls up measurements so that the raw data isn’t overwhelmingly large.

And last, I liked the fact that the folks at Metrics were friendly and helpful, even though they’re running pretty fast to get Metrics where they want it to be.

This is a brief guide to the steps I took to get a Rails 3 app sending notifications to statsd running on Ubuntu in the EC2 cloud, and pointed it at Metrics. I borrowed knowledge from here for the first steps, but I didn’t want some of the stuff that follows, and the recipes have grown out of date a bit, so realize that you’ll have some digging to do to get it to run. Generally, I didn’t find all that much on the topic of how to set this up so, maybe this will save another busy developer some time.

Note that this fires up a small EC2 instance, so you’ll have to pay for it…

download and install the EC2 API tools (e.g., into ~/tools)
generate a X.509 certificate (both public cert-…pem and private pk-…pem files) on the AWS Security Credentials page
generate a keypair (statsd_setup.pem) in the AWS Management Console
I stored the key files in ~/.ec2/ locally.

$ sudo chmod 600 ~/.ec2/statsd_setup.pem # set appropriate permissions on private key file
The EC2 API tools require certain environment variables to be set. I put the following in a local file (e.g., ~/bash/statsd_setup.sh):

export EC2_HOME=~/tools/ec2-api-tools-1.5.2.5
export EC2_PRIVATE_KEY=~/.ec2/pk-statsd_setup.pem
export EC2_CERT=~/.ec2/cert-statsd_setup.pem
export JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Versions/CurrentJDK/Home
export PATH=$PATH:$EC2_HOME/bin

$ source ~/bash/statsd_setup.sh

Finally, start the instances and modify some basic security settings:

$ ec2-run-instances ami-06ad526f -k statsd_setup # start a new instance with a recent Ubuntu 11 image
$ ec2-authorize default -p 22 # permit SSH
$ ec2-authorize default -p 80 # permit HTTP
$ ec2-authorize default -p 8125 -P udp # statsd will listen here

Then I logged into the instance once it was running: ssh -i ~/.ec2/statsd_setup.pem ubuntu@your_instance_here.amazonaws.com

Next, node and npm.

Install the dependencies:

sudo apt-get install g++ curl libssl-dev apache2-utils
sudo apt-get install git-core
sudo apt-get install make

When all done running…

mkdir dev
cd dev
git clone git://github.com/ry/node.git
cd node
./configure
make
sudo make install

If all went well node is installed. I smoke tested by simply typing the command “node”, and sure enough I got the prompt.

Since this is a test box, I took over /usr/local

sudo chown -R `whoami` /usr/local

and then installed npm in classic fashion: curl http://npmjs.org/install.sh | sh

next I moved back out to dev (cd ../)

And cloned statsd. Since I’m using Librato’s fork: git clone git://github.com/librato/statsd.git

I made a copy of the config example, and copied the settings I wanted in there.

I ran (as usual) npm install to get the dependencies installed, and then I fired it up: node stats.js myconfig.js

Win!

Locally, I fire up irb, where the gem statsd-ruby is already installed. I require ‘statsd’ (be warned, there’s more than one, and the namespaces collide), and fire off a few stats statsd = Statsd.new(your_host_here), and then statsd.increment ‘test’.

I already had my Metrics account, so I logged in and voilà, stats.

Next step wiring this into a Rails app. I create an initializer called notifications.rb. Inside is the code below cribbed mostly from here:

Linked.

Which fires off all sorts of great info to statsd when you fire up the app and hit a few pages. Also, $statsd is available all over the place so you can measure pretty much anything going on in your app. I was surprised that there isn’t a simpler setup for this, but as I write this I tried Heroku, and Engineyard Cloud beta for node, and asked over at no.de and nodejitsu, and none of them support the standard port, or the UDP routing, or several of these requirements. It seems like this is an atypical scenario for now. Too bad, because it’s a great way to start measuring everything. A few months might change all of this, but for now that’s the state of things, so off to EC2 I went.

Rookies in the bike shed

Rookies in the bike shed:

The ability to spot this is one of the most valuable skills a software developer can possess. There are endless features we could build and debates in which we could engage, but only a small subset are worth the effort.

The best developers aren’t the ones who can write the most code in the shortest amount of time or out-reason anyone on the internets. They are the ones that only write the code that’s most valuable to execute and only enter the debates of high substance.

[And that is what makes anyone good at what they do. It is about editing things down to the most important things and concentrating on those.]

Why the new iPad screen is the future of display

ipad screen large

Why the new iPad screen is the future of display:

Well, I am sure Steve Jobs and friends looked at that situation several years ago and saw “stuck” instead of “settled.” The new iPad is the first clear clue that this was the case.

[I’m amazed at how well the whole idea of improved resolution holds up. Not everything needs it… the resolution of the thermostats I installed the other day seem just fine, and they don’t appear to be ‘retina’ level displays, but then, seriously, how often do I want to look at them? If they’re doing their job, I don’t. My phone however, I look at all the time, and it makes some other devices I own almost impossibly crude by comparison. Same with the monitor in the office vs. the one I have at home. Screen real estate matters, and so does resolution.]

Source: Doc Searls Weblog