Search This Blog

Loading...

Comcast DVR (Motorola DCT6412) 30-second skip ahead


Here are the 6 simple steps to program 30 second skip to the remote.

  1. Press the “Cable” button at the top of the remote to put it into Cable Box control mode.

  2. ress and hold the “Setup” button until the “Cable” button blinks twice.

  3. Type in the code 994. The “Cable” button will blink twice

  4. Press (do not hold) the “Setup” button

  5. Type in the code 00173 (for 30 second Skip)

  6. Press whatever button you want to map the skip (I use HD Zoom)

Enjoy

Java 1.5 JavaDoc bug MissingResourceException

So trying to do a build today and there were some strange javadoc gen errors like below

java.util.MissingResourceException: Can't find resource for bundle com.sun.tools.doclets.formats.html.resources.standard, key doclet.malformed_html_link_tag
at java.util.ResourceBundle.getObject(ResourceBundle.java:325)
at java.util.ResourceBundle.getString(ResourceBundle.java:285)
So this is a bad bug in javadoc for Java 1.5

We had a class where the javadoc looked like

/**
* This javadoc had U2
**/

the in the java doc make it think that it is a bad tag

Sun has bug open
http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=5082928

The fix is using


/**
* This javadoc had <artist>U2
**/


hope this helps someone

Tabla In Vancouver


MVI_4183
Originally uploaded by George & Christina Dawoud
Here is a great clip of Amir playing some dude's tabla beledi in vancouver, bc

Recursively Remove .DS_Store files in OS X

OK so OS X creates these goofy .DS_Store files that i need to delete from everywhere once a while... and just found a way to do them all for a dir and what is in it..

  1. open a terminal window
  2. cd to the dir where you want to remove files from
  3. type the following command
    find . -name *.DS_Store -type f -exec rm {} \;

and your done...