Since were not speaking
I will say this
A little effort is as good as none
and now that were strangers
there’s nothing to miss
the prize I waited for I won
Going back to school
and I find you sitting
miles in front of me
Driving on the road
the cars streak by me gladly
in time with the melody
Since were not speaking
I will say this
A little effort is as good as none
and now that were strangers
there’s nothing to miss
the prize I waited for I won
Back to my roots
and there your growing
at the highest point of the tree
Rising up, I’m near,
and now you’re flying
dressed the color of that sun you seek
Since were not speaking
I will say this
A little effort is as good as none
and now that were strangers
there’s nothing to miss
the prize I waited for I won
Car projects that I have undertaken, simple ones mostly, are often fraught with difficulty. The perils of car maintenance parallel the perils of living life:
http://www.obviex.com/samples/Encryption.aspx
<?xml version=”1.0” encoding=”utf-8” ?>
<CodeSnippets xmlns=”http://schemas.microsoft.com/VisualStudio/CodeSnippet”>
<CodeSnippet Format=”1.0.0”>
<Header>
<Title>NotifyPropertyChanged Code Snippet</Title>
<Shortcut>propnc</Shortcut>
<Author>David Salt</Author>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
</SnippetTypes>
</Header>
<Snippet>
<!— Add additional Snippet information here —>
<Declarations>
<Literal>
<ID>propertytype</ID>
<ToolTip>Replace the property type</ToolTip>
<Default>string</Default>
</Literal>
<Literal>
<ID>propertyname</ID>
<ToolTip>Replace with a name of the property.</ToolTip>
<Default>PropertyName</Default>
</Literal>
</Declarations>
<Code Language=”CSharp”>
<![CDATA[
private $propertytype$ _$propertyname$;
public $propertytype$ $propertyname$
{
get
{
return _$propertyname$;
}
set
{
if(_$propertyname$ != value)
{
_$propertyname$ = value;
OnNotifyPropertyChanged(“$propertyname$”);
}
}
}
$end$]]>
</Code>
</Snippet>
</CodeSnippet>
</CodeSnippets>
I had a particularly bad user experience with my nook eReader. Where to begin…
I like the idea of having my library digitally available with notes and highlights in a searchable format that is highly available. eReaders are not there yet, at least not the nook touch. The technology isn’t mindblowing, and the most interesting thing about the device is the display technology. I expect to be able to do a few things well.
I like going to a bookstore and browsing the titles. The limited space and availability of the physical shelf means the most popular books will be there. There are many books in a small space. You can pick it up and get a feel for it. Having browsed some pages and decided to make a purchase, I turn to my eReader for the purchase and to read the book. And this was my experience yesterday.
Strike 1: I was frustrated when searching for the book returned the wrong results. Similar titles and authors were returned, but not the book I was looking for. Do I need to type the full title? Did I make a mispelling? Click click click tap tap tap. Argh. A search by ISBN yields the book in question. Terriffic
Strike 2: I click the prominently displayed “Buy It” button.
Unable To Purchase
We are unable to process your order. Please verify your payment information is correct or check out Wi-Fi connectivity and try again later.
You can’t tell if the problem is with WIFI or my account information? You are the device…could you submit the request? Did you receive a response that indicated failure?
Strike 3: Oh, my credit card must be expired. Terriffic, I will update it. Tap tap tap…um, that isn’t the expiration date I entered. Tap tap tap….I know I entered it in correctly this time….what gives? Search the internet and learn that you really should use the website to update your billing information. Great, but why set me up for failure…don’t give me the option to screw up my settings.
Strike 4: Still getting the same error message. Huh, time to call tech support, proceed through the basic steps that I already tried (cycling the power, reentering billing information from the website). Next step…”Do you mind resetting your device sir?”. Um, of course I do. Won’t that reset my bookmarks? Aren’t you going to inform me of that instead getting consent from an uninformed person who of course is going to be upset when my settings are all gone and my problem hasn’t been fixed. I bought this device to use it. Its a personal digital library meant to store craploads of books and notes and highlights and bookmarks. Should we reset my device because you don’t seem to have a handle on the issue and would rather that it go away then figure out what is wrong? Should I lose my data because its a nice shortcut to try for you? What are you thinking?
Strike 5: I spend more time on the problem, purchase another book to determine that there is no billing issue, get support to remove the book and the charge, and inquire about how someone with my needs should operate a nook. How can I tell if the digital copy is available on my device? I get an answer that doesn’t fit my needs: “go to the website”. My eReader doesn’t have a web browser. I don’t want to have to whip out a 2nd piece of technology to see if I can use the first piece of technology. I figure that if there is no preview button and no download size then theres no eBook available. A simple message on the screen in place of the purchase button would do.
There are so many design issues and B&N must be aware of. Why did they let them out the door? Why havn’t they addressed them in the first update? Most of this was rookie design issues and not even bugs.
Should I invest in a digital library for this device? Would I do better to switch to a Kindle? Maybe the best thing is paper for now…
Unbelievably, I didn’t realize that today was a day off until I rolled into the office. With the day free it gave me some time to take a look at the xkcd poster that is newly hanging on the wall.
At the dollar level it shows the relative cost of goods and services for different kinds of technology, pets, and food. There is a side-by-side comparison between average worker hourly compensation and average CEO wages.
The thousands level perspective contains bigger ticket items like cars and vacations as well as the cost of bigger personal projects such as college and raising children. Household income and investments are relevant here.
The millions turns more political. It contains campaign fundraising for individuals. it outlines the Net Worth of famous politicians, artists, and common rich folk.
The billions gets into the super rich classes of wealthy such as the Waltons and the Tech leaders like Eric Schmidt and Bill Gates, and also investors like Warren Buffet. This area is the largest and breaks down where the money is…and is aptly named the economic vortex. Corporate revenues, federal spending, household income, US GDP, huge projects, wars…its all here. Smack in the middle is the breakdown of people as income earners into classes: the bottom 50%, the Upper middle incomes, the Upper incomes, the high incomes, and the 1%. The amount of tax on each class that feeds into the federal and state budget is set apart. The effect on each classes “money pit” of hypothetical redistributions aimed at raising every family’s income to various levels of wealth…showing just how much money the most wealthy have left over.
The trillions level provides a view of countries on a global level and across time. It has the US contribution to global GDP over time. The interesting items here are the size of the derivatives market and value of resources that exist on the planet.
I do love infographics. There’s a lot to explore, plenty of information to overload my brain with.
The poster image is available here: http://xkcd.com/980/huge/
Stranded on Git without a branch -
Flying by the seat of your pants on Git, I find myself without a branch for my just-committed changes. Getting back on was basically this:
git commit -a -m “commit merge with svn to head”
git checkout -b merged_with_svn
git checkout original_branch
git merge merged_with_svn