Monthly Archives: December 2009

You are browsing the site archives by month.

Government:origin,growth& form in the United States

I received a very thoughtful Christmas gift from Kamila this year. It was a book titled “Government : its origin, growth, and form in the United States, Ohio Edition“. The book showed an amazing amount of perspective into who I am. Books are very valuable to me — particularly books of this age (printed in 1902) with regards to government.

Governement: Its origin, growth and form in the United States - Ohio EditionFirst, the book is a historical view of government in the United States. Anyone that knows me well knows this is important to me. I love history , and more specifically United States history.

Second, it was entertaining that it was an Ohio edition since that is where I grew up.

Third, I love the book’s perspective. The book still describes our founders as men with character and conviction — men who put country first. While I’m interested in truthful historical perspective, I don’t like the concentration placed solely on the negative information we can find about our founders.

For instance, I’m well aware that Ben Franklin was womanizer. I don’t overlook it. I take in Ballot insertperspective, however, with my admiration for the man. He was one of America’s biggest life-hackers in history. He was an inventor. While today LifeHacker.com might point to iPhone apps developed to improve your life, others were and still are pointing to Franklin’s inventions as aides in every day life. I also consider the fact that to the day he died many ridiculed Franklin (in spite of his obvious contribution to the country) for being an abolitionist (after owning slaves earlier in life). I admire a man who can examine his own beliefs and take difficult positions after careful introspection.

All of that points out that while I am aware of how Mr. Franklin behaved in the presence of women, I am more prone to talk about the positive. I would want me kids to emulate the positive, not the negative.

Lastly, I love this book because it demonstrates her understanding that I don’t need expensive gifts — thoughtfulness was key here. I only wish I could return that sentiment – I’m a horrible gift giver. I’ll endeavor to do better next year!

This book was the perfect gift for me. Thanks Kami!

Setting up iPhone WordPress app

I am writing my first blog post from my iPhone using the WordPress App I downloaded yesterday. It is an interesting idea to want to blog from your phone. It seems it would be good for those posts that are too big for Twitter but demand immediate blogging so you (and the rest of the world) don’t lose the thought.

I downloaded this app with low expectations. I expected to be able to view some basic settings and do some basic management from the app with an occasional blog post to boot. This appdoes all of this rather flawlessly– that is, flawlessly after you manage to get it set up properly. When I set up the WordPress app, I used “http://” in the URL field for the setup wizard. This allowed me to log in but then gave me errors after that when retrieving data. I removed the prefix an all was well.

While typing this last paragraph I also note that typing in “http://” a message pops up asking I you need help making a link. This is a bit annoying but not too bad.

This app ha a lot of potential. The fact that it is free prevents me from providing too much in the way of criticism. I’m happy to have found the app — an to have found it suitable for my needs. You can find it at http://iphone.wordpress.org.

UPDATE: Now that the post was completed, I decided to come back here and update the site with a few missing details that I’d like to see added.

Photos:
When I blogged this, I was able to add photographs of the app to the post, but I wasn’t able to insert them where I wanted. This was a bit of a disappointment.

HTML only:
Blogging in the WordPress app requires that you code every bit of HTML out with the exception of a few helper methods such as adding links, etc. I would like to see more helpers added that allow me to pick photos that I’ve already uploaded.

Voice Blogging:
It only seems natural that if you are using an iPhone, you might want to incorporate voice dictation. It would be nice to have the clarity of voice-to-text that Dragon Dictation has but without having to switch apps — particularly if you have helper methods. Imagine blogging by simply speaking. When you say “atch tee tee pee” the app nows to pop up the link helper. WHen you say “image source” it knows to pop up the picture selection dialog.  You could blog so quickly using your iPhone if a little effort went into this feature.

That’s all I have for now.

Indexers as Extension Methods?

So I’ve had this nagging issue for a little while. It’s not necessarily a huge issue because I have a workaround, but that said, it still nags at me now and again. That issue is that I cannot create an indexer as an extension method. This isn’t possible for a number of reasons that make sense, but I thought I’d blog about it anyway and solicit thoughts on the idea.

First, let’s talk about what we can do. I can create an extension method for any existing class. Let’s say I have the following class already created:

public class SomeClass{
   public int SomeProperty { get; set; }
}

 

I can then extend a List of SomeClass pretty easily like this:

public static class Extensions{
   public static string SomeListExtensionProperty(this List<SomeClass> classes)   {
      //… provide implementation here …
   }
}

 

Notice that I’ve scoped my extension to only extend a generic List of SomeClass. For instance I can do this:

var sc = new List<SomeClass>();string s = sc.SomeListExtensionProperty();

 

but I cannot do this:

var soc = new List<SomeOtherClass>();
string s = soc.SomeListExtensionProperty();

 

So what would happen if I tried to extend the List of SomeClass with an indexer like this:

public static string this[int index](this List<SomeClass> classes){
 return classes[i].SomeProperty;
}

 

We wouldn’t get past compilation. First of all, the word “this” and “static” don’t mix or tend to make sense together in most cases. That is because “this” refers to an instance of a class while “static” refers to type itself. In general, mixing these two wouldn’t make sense. That said, we already mix these two keywords when we create extension methods. So that isn’t the only reason this wouldn’t work. The next reason is that the generic List class already provides an indexer. Since you can’t override existing members with extensions, you are left without the ability to create an indexer with an extension.

Our only recourse would be to provide extension methods that provide the same functionality as a method.

public static string GetSomeProperty(this List<SomeClass> classes, int index){
   return classes[index].SomeProperty;
}

 

We can then call something like this:

var sc = new List<SomeClass>();
string s = sc.GetSomeProperty(index);

 

This isn’t quite as abbreviated as an indexer and in fact doesn’t save me anything over what I would get with the out-of-the-box generic List indexer:

var sc = new List<SomeClass>();
string s = sc[index].SomeProperty;

 

That said, the “nagging issue” is more of a request for a solution looking for a problem. Obviously indexers are great shorthand that ‘can’ provide a ‘default property’ so-to-speak. However, it is very easy to get what you want without much work.

Life Hack: Working around ADHD-like Symptoms

For years, it has become more and more difficult for me to concentrate when I am trying to study. I try repeatedly to block everything out and just concentrate on reading a book/article/webcast, follow along with the examples, and get through the material. Each attempt fails miserably with my frustration that I got absolutely nothing done. I’ve attempted to integrate methodologies like Getting Things Done to my routine. However, all of this means nothing if I can’t even concentrate on the task GTD lays before me. I didn’t always have this problem. I stayed very focused and on task as a child. While I could easily get distracted from a task, I also had the ability to block everything out and focus like a laser on anything I wanted to. Things have changed. I’ve gotten older. My career has taken a different path. I’m in a different place. My personal life has changed drastically. I’m constantly worried about and distracted by politics. I need to make a change.

I’ve tried everything to correct my problem. People have given me recommendations41SSqGcuXbL._SL160_[1]. However there are so many issues at hand. When I’m studying, I need internet access to look up an occasional tidbit. However, internet is a huge distraction. If I open a browser, you can bet 30 minutes from the time I open it I’ll have about 10 browser sessions open with multiple tabs reading about topics I have no business reading about during my study time. I need my phone as I’m in constant contact with people I rely upon and who rely upon me. Silence is killer and the mere idea of realizing I’ve been in the same spot for an hour sends me into severe displeasure and I feel like I’m wasting the day. However, if I’m amongst people I know, I tend to want to talk to them. It’s all a disaster. I realized I needed to solve these problems so I attacked them one by one.

Desired Outcome

  1. I need internet access, but I don’t want the distraction of browsing.
  2. I need to stay in touch with people without having constant non-critical conversations interrupt me.
  3. I need to be around activity to prevent me from being stir crazy but I can’t sit around chatting with people I know all day.

Solution Proposed

  1. Go somewhere without free internet access. Use my phone to access the internet. The slower connection and smaller screen keep my browsing targeted at solutions when I need them.
  2. Turns out the iPhone is perfect for this. Since the iPhone is single-application-centric, it prevents me from getting interrupted by email and twitter. So I keep my phone with me, but I just keep my non-critical communication tools closed. Better still, I have moved all of my task-oriented applications like “Remember the Milk”, “Shopper”, “Evernote” and “Bing” on my main page of my cell phone. When I look at the phone, all the red “todo” circles showing up on the page remind me every time I open the phone that I’m on task.
  3. I go to Starbucks to study. Sounds crazy, I know, but it works for me. I have the non-specific white noise of people I don’t know chatting in the background without the temptation to join in a conversation. I’m not going stir crazy as I’m out of the house. Working on my laptop rather than my multi-screen monitor helps me stay focused on the software studying task at hand. Starbucks/AT&T charge for internet access through my laptop so I’m not distracted easily.

Implementation

So far all of my proposals have worked. I find it very natural to stay focused. If I have to “think” about staying focused, that thought in and of itself will distract me. This method currently keeps me on task without having to think about what task it is I’m performing. Too much monitor real-estate leads me to distractions and a quickly responding system leaves me to run down multiple rabbit trails. I tend to think the large number of us who claim “ADD” or “ADHD” are not inflicted with anything other than reinforcing poor habits and living years of distracted lifestyles. That said, I think it should be possible to relearn to properly focus through some hard work.

Let me know what your life hack is. How do you stay on task?

Hacking jQuery Slider into WordPress Theme

I have just finished converting most (all?) of my posts from various blogs around the intertubes into WordPress. My previous blog on this domain was running Oxite. I created a theme called ‘Titus’ (yeah, I know) for Oxite that included a little jQuery ‘Slider’ plugin that I wrote. The control shows my last ‘n’ number of twitter posts, one at a time in a rotating fashion. I named it slider because I originally intended for the content to ‘slide’ up from the bottom continuously. Instead, I decided to fade them in/out. I was too lazy to rename it after I decided on my desired effect. After moving to wordpress, I was slightly upset that I was losing my hard work. However, this was a jQuery plugin so I didn’t see why this couldn’t just plug into my WordPress theme. I’m NOT a PHP developer, nor do I pretend to know how to do anything in WordPress. That said, I forged forward in my attempt to get this plugin working. You should see this plugin working right now on this site (unless you are reading this through RSS).

First let’s define the content of my plugin. I have a Javascript file containing my plugin, a CSS file containing the styling I’m using on the site, a little HTML markup to add my ‘placeholder’ for twitter feed, and of course the dependency on jQuery.

Installing jQuery into your Theme

First let’s tackle the jQuery item.  A current version of the WordPress distribution includes jQuery. The trick is to include jQuery in your site. After a little investigation I found that jQuery was already ‘registered’ in WordPress code, but does not, by default, render to the browser.  Somewhere in /wp-includes/script-loader.php you’ll find:

$scripts->add( 'jquery', '/wp-includes/js/jquery/jquery.js', false, '1.3.2');

This line registers the script we want in a dictionary with the key ‘jquery’. After digging further, I found a funcation called ‘wp_enqueue_script’ in /wp-includes/functions.wp-scripts.php.

/**
 * Enqueues script.
 *
 * Registers the script if src provided (does NOT overwrite) and enqueues.
 *
 * @since r16
 * @see WP_Script::add(), WP_Script::enqueue()
*/
function wp_enqueue_script( $handle, $src = false,
                            $deps = array(),
                            $ver = false,
                            $in_footer = false ) {
   global $wp_scripts;
   if ( !is_a($wp_scripts, 'WP_Scripts') )
      $wp_scripts = new WP_Scripts();
   if ( $src ) {
      $_handle = explode('?', $handle);
      $wp_scripts->add( $_handle[0], $src, $deps, $ver );
      if ( $in_footer )
         $wp_scripts->add_data( $_handle[0], 'group', 1 );
   }
   $wp_scripts->enqueue( $handle );
}

I put two-and-two together and with a little trial and error, I added the following line to /wp-content/themes/inove/header.php right before the call to wp_head():

<?php wp_enqueue_script('jquery'); ?>

This method gets the script location from the dictionary and renders a script tag with the location details.

Installing the slider jQuery Plugin

If the core did not register our script in the dictionary, we can provide the location details ourself with a second parameter. That is precisely what I needed to do to get the slider.js file added to the template. I added the following line just after the previous line I added in header.php.

<?php wp_enqueue_script('slider',
                      (get_bloginfo('template_url') . '/js/slider.js') ); ?>

The contents of this file are:

function($) {
   $.fn.twitterClient = $.fn.twitterClient = function(params) {
      var t = $.extend({}, $.fn.twitterClient.defaults, params);
      $(this).append('<ul id="twitter_update_list"><li></li></ul>');
      $.getScript("http://twitter.com/javascripts/blogger.js");
      $.getScript("http://twitter.com/statuses/user_timeline/"
                   + t.userName
                   + ".json?callback=twitterCallback2&count="
                   + t.tweetCount,
                   function() {
                      var list = $("ul#twitter_update_list");
                      stopTick(list);
                      list.items = $("li", list);
                      list.items.not(":eq(0)").hide().end();
                      list.currentitem = 0;
                      startTick(list);
                  }
      );
      startTick = function(list) {
         list.tick = setInterval(
            function() { tickFunction(list) },
            (t.delaySeconds * 1000)
         )};
      stopTick = function(list) {
         clearInterval(list.tick);
         };
      tickFunction = function(list) {
         if (list.pause) return;
         list.pause = true;
         $(list.items[list.currentitem]).fadeOut("slow",
            function() {
               $(this).hide();
               list.currentitem = ++list.currentitem % (list.items.size());
               $(list.items[list.currentitem]).fadeIn( "slow",
                  function() {
                     list.pause = false;
                  });
        });
     };
     this.each( function() {
                 if (this.nodeName.toLowerCase() != "ul") return;
                }).addClass(t.cssClass)
             return $("ul#twitter_update_list");
     };
     $.fn.twitterClient.defaults = {
         userName: null,
         tweetCount: 10,
         delaySeconds: 5,
         cssClass: "twitterClient"
     };
})(jQuery);

Next, I needed to add my styles for the twitter stream into my template. A method intuitively similar to that for scripts was found called ‘wp_enqueue_style’ that allowed me to register my CSS for rendering:

<?php wp_enqueue_style('slider',
                     (get_bloginfo('template_url') . '/js/slider.css') ); ?>

The contents of this file were:

/*ID:   slider  Elements: slider UL, slider LI, slider LI A */
#slider {
      position: relative; top: 5px;  width: 470px;  color: #bbbbbb;
}
#slider ul, #slider li{
   margin:0;  padding:0;  list-style:none;
}
#slider li {
   width:470px;  height:70px;  overflow:hidden;
}
#slider li a {
   text-decoration: none;
}

I saved the header file and closed it.

Add the jQuery plug-in Placeholder

All of our infrastructure is in place. Now I need to add a placeholder, and tell jQuery to call my plugin against the placeholder. Luckily, this style already has the ability to add content to the header region of the template. I simply went into WordPress addmen, and went to “Current Theme Options” under ‘Appearance’ and added the following to the “Banner” section:

<!-- Slider -->
 <div id="slider"><div id="twitterClient"></div></div>
 <script type="text/javascript">
  jQuery(document).ready(function($) {
    $("#twitterClient").twitterClient({
                        userName: "tobint",
                        tweetCount: 10,
                        delaySeconds: 5
                        });
    });
 </script>
<!-- /Slider -->

I also checked the boxes above to display this content for registered users, commenters, and visitors. I saved the file header options and viewed my site. Much to my glee, everything worked just great. My next steps are to turn this into a widget so others can just add this to any registered sidebar for a given theme.

Let me know if you have any questions.

Review: Bose Wave music system with SoundLink

My parents sent me a Bose® Wave® music system with SoundLink for Christmas. It arrived a bit early so I took it into my office and set it up. I listen to music while writing software into the early hours of the morning. This isn’t something I would have bought for myself, but it was a well-appreciated gift as I’m listening through some small Altec Lansing speakers currently.

I took a couple of notes about the product below:

  • Aesthetics – The system looks like an oversided alarm clock. If I were frozen in the 80’s to be thawed out today, I would have reason to believe that nothing had changed as far as alarm clocks go. That said, this is more than just an alarm clock so this is slightly forgiven. I was surprised to see that the SoundLink device was an external device. It seems to me that a SoundLink receiver could easily be internalized into the main radio appliance. While the Wave music system is more than an alarm clock, you wouldn’t know that much by the clock interface on the front. The big LED numbers with an AM/PM indicator and accompanying LED indicator of the source seem out of touch with the realitiy of a device this costly in this modern era. Compare the aesthetics of this device vs the elegance of other devices costing the same. I think you’ll agree that ‘looks’ were likely the last thing on the Bose technicians’ minds.
  • Setup – This was likely one of the easiest devices I’ve set up in ages. I expected there to be, at the minimum, some software to install and some cumbersome UI to work through to get sound pumping from my computer to the appliance. This wasn’t the case. I literally plugged the power and the SoundLink device into the appliance, plugged the USB transmitter into my computer and I was off to the races! That said, I was confused why the SoundLink device had a DC power input, but no DC power cord. Perhaps there is something I’m missing in why the input is needed but it wasn’t a big deal since the system works without one.
  • Use – The appliance itself has no buttons on it which bothers me a bit. Perhaps Bose was trying to avoid the complete appearance that this was just an alarm-clock radio. That said, the concern is that if I lose my remote control, I’m screwed till I find a replacement. Since this device is sitting on my side desk (literally right beside me) the effect of using my remote control to use the device seems absurd. This wouldn’t be so bad if Bose had thought to make the remote control dockable to the system and allow you to use the remote as a front or top panel control when docked as such. Setting the time and alarms on the system is also very archaic. This uses that same tired ‘rewind/fast forward’ type alarm setting that your clock radio does — again reinforcing that this is just an expensive version of the same. Apart from that, I was happy with how easily my music just seemlessly streams from my computer to the appliance. I don’t need to configure my software. I just run my normal apps (Zune Software, iTunes, etc) and it just works!
  • Sound Quality – When I first plugged this in, I was quite happy with the sound. However, shortly into my first song, I started hearing frequent cracking and popping. I didn’t have the device cranked. I’m at work so I couldn’t possibly put it above 50% output on my computer with 30-50 on the device itself without the music starting to waft out of my office and into the hallways. That said, the cracking and popping was actually louder than the music which makes the device output more annoying than soothing. I tried listening to a variety of music from classical to heavy metal. I tried adjusting the volumn. I even tried cranking it a bit higher at other times of the night when no one else is here. No matter the volumn levels on the computer or the radio, the crackling and popping persists making this device practically useless for my purposes. Looking at the website, this appears to be a regularly enough occuring event that they included it in the FAQ. Their solution was to ‘reset’ the device by recycling the power. I tried this and the popping persisted. Lest you think this is was just a bad unit, start searching the internet for other unhappy users and you won’t have to look far. On top of the cracking and popping there appears to be an occasional ‘skip’ in sound. I haven’t yet determined if this is caused by the SoundLink transmission or the radio itself.
  • Summary – The Bose Wave radio is, in my opinion overpriced for what it provides. The aesthetics are behind the times. Their is no ‘wow’ feature to the device and that unfortunately includes the sound which is the primary purpose of the system. The remote-only controll of the device is scary. There is a lot of wasted potential here.

My recommendation to you :

Buy a regular clock radio. At least if it crackles and pops, you won’t be out so much money.

My recommendations for Bose: 

  1. Integrate the SoundLink receiver into the main appliance or make it work over Bluetooth or WiFi. No reason to have a proprietary extra device just for transmission — particularly since it doesn’t appear to be doing your sound quality any good.
  2. Make the remote control dockable/lockable into the top of the system so it can be used as a front/top panel input on the device itself .
  3. Bring the front-instrumentation of the device into the modern era with some music visualization options and a less static LCD-centric display.
  4. Fix the primary purpose of the system. There is absolutely no reason why I should spend several hundred dollars to hear this when there are many other lower-cost music-listening options at my disposal.
  5. Allow me to set alarms a bit more reasonably than scrolling through a 60-minute-times-24-hour-rolling interface. Perhaps put Bluetooth (again) in the device and let me set it through my phone or computer. Or just give me an easy hour-then-minute-then-am/pm interface.

Experiencing Orchard

A new post has been added to Learning in Public:

Off-topic: Experiencing Orchard