Mar 16

ComcasTiVo

TiVo 2 Comments »

It was good to read about Comcast and TiVo getting together.

I think TiVo needs this. If you look at their numbers for new subscriptions, a LOT come from DirecTiVo. Getting Comcast in on this will take TiVo subscriptions to the next level. People will be getting it without even knowing they are getting TiVo.

I am pleasantly surprised, as I thought Comcast was doing their own DVR, and if it was “OK”, it could still have really hurt TiVo.

Mar 16

Sleep number? Shower number.

Personal No Comments »

At the Willows Lodge hotel they have a nice feature, that I remember from a friends house back in the UK.

The shower has a digital readout showing you the water temperature. So,

What’s your shower number?

How much nicer is this than the pain of playing the ‘new shower game’. This game involved you trying to work out how to get the right temperature, and making sure that temp is stable.

Mar 16

Coyote: Dynamic language support in NetBeans

Groovy, IDE, Java, Tech 1 Comment »

It was great to hear about Coyote:

The goal of this project is to develop a set of NetBeans modules to help developers write code in dynamic languages using the NetBeans IDE. Initially, we are targeting the the Groovy and Jython languages, but we anticipate a common framework allowing support for more languages.

The coyote is a quiet, efficient animal that thrives in urban and rural settings without any particular encouragement, and once established in an ecosystem, is virtually impossible to eradicate.

Getting completion and the like for Groovy is a god-send. This will have me installing NetBeans just for that development, although coyote doesn’t support 4.1 beta (which is actually VERY slick).

I wish this was in IDEA and Eclipse ;)

Mar 16

AdBlock in IE 7?

Tech 26 Comments »

I was sitting on the plane, on a flight to Seattle for this Microsoft Summit.

I was wearing a Firefox t-shirt (a subtle jab) and the guy next to me on the plane started asking me why I like Firefox. One of the reasons was:

AdBlock. I never see an online ad in my browser anymore. And we all know how painful damn online ads/popups are! Amen!

Then he replied:

Oh. I work for an online ad company

Woops!

He also said that he was on the way to “the microsoft summit”. I started to wonder who was going to be at this thing? That was, until I realised that Microsoft is big enough to have another summit ;) They are having one based on advertising down the road.

This had me wondering:

  • Will IE 7 have adblocking built-in? Or do they have too much pressure not too.
  • Will they allow simple plugin development? If they don’t then Firefox will always have an advantage

I found out that tomorrow we will have a chance to talk to some of the IE team, so it will be good to find out what is going on there.

Some first impressions of the summit:

  • The car service took over an hour to show up: -1
  • The room at this lodge is amazing: +5
  • The people here: +1
Mar 15

Java is boring

Groovy, Java, Ruby, Tech 24 Comments »

Tim Bray has taken a look back at his first year at Sun, and claims that Java is boring.

He isn’t trying to start a flame war.

Java isn’t boring for many people, and that is fine. It is also a good choice, as he claims, for many tasks.

However, I have to agree with him. PERSONALLY I find Java a little boring. Sorry. Coding in it is boring (I know, I know, if the problem is interesting then who cares about the environment? I do).

I can’t state how many guys who use Java for most of their day job say to me:

“Man, I wish I could get a paying job with Ruby”

These people are playing with Ruby in their spare time. Then they get to do a prototype in it, and then it spreads from there.

Although Java the LANGUAGE is boring, that doesn’t mean the platform is.

I hope that 2005 is the year of more expression in many languages on the JVM. Come on Sun, get in the game. Get more people hacking away on languages like Groovy to see where it takes us. Where is the Sun version of Comega?

Boring Isn

Mar 15

Using Maven to modularize JavaScript development

Ajax, Builds, JavaScript 1 Comment »

A lot of developers ‘poo poo’ any code that is written in JavaScript.

  • “JavaScript isn’t a real programming language”
  • “JavaScript is just about browser hacker scripts”
  • “You can use it to focus(). Big deal.”
  • “JavaScript is for the HTML designers, not for REAL coders”

Giving thought to your JavaScript code

As such, any JavaScript code in a project, doesn’t get the thought that it deserves. Why would you be anal about unit testing your Java code, and ignoring your JavaScript code?

You no longer need too, as we have JsUnit, and other tools.

Dependencies are dependencies

As soon as you stop thinking of your JavaScript code as a bastard step-child, you can apply the same practices that we have in our other worlds (e.g. Java).

One of the problems with Java web applications, is that you can often do a search for files on a developers hard drive, and see MANY of the same files.

For example, you search for struts.jar, and there are 23 instances of it on the file system. Of course, they are not all the same size, since they are various versions (but you don’t know).

We get around that problem by using a tool such as Maven, or Ivy.

Now, we can define our project dependencies, and the correct versions are tracked, and downloaded automatically. Very nice.

WEB-INF/lib == /scripts

Why don’t we do this with JavaScript code? We have the same problem with commonscript.js as we do with struts.jar. So why not manage it?

Maven JS type

Maven has the base framework that we need to make this quite trivial. First, we can just agree on the ‘type’ of dependency. I am using js. Then you can just add dependencies as per normal:

<dependency>
<groupId>adigio</groupId>
<artifactId>xhr-test</artifactId>
<version>0.1</version>
<type>js</type>
</dependency>

This means that maven will try to grab:

/[groupId]/[type]s/[artifactId]-[version].[type]

or in the example above:

/adigio/jss/xhr-text-0.1.js

from the various repositories that you have setup in your project.properties:

maven.repo.remote=http://adigio.com/maven,http://www.ibiblio.org/maven,http://www.codeczar.com/maven,http://xdoclet.sourceforge.net/repository,http://dist.codehaus.org

NOTE: ‘[type]s’ is hard-coded. There is no way to map “when you see type ‘js’ look in directory ’scripts’, or something like that. This means that ‘jss’ looks a lil’ silly :).

maven-war-javascript

So, we didn’t have to do anything to get Maven to start grabbing dependencies for us. But, in our projects we don’t just want to grab some JavaScript modules and put them in your local repository. We want to use them :)

Rather than writing some manual goals to handle this, I wrote a Maven plugin which piggy-backs on the war plugin.

The maven-war-javascript-plugin offers a war:js / war:js:copy-scripts goal. This manually looks through your dependencies, and copies any JavaScript modules to your web app (in the scripts directory by default. To change, use the maven.war.javascript.dir property).

However, although you have a goal in which you can kick off this task, in practice you don’t need to use it. The plugin registers itself with the war module, and whenever it is invoked, it sneaks in and does the copy. So, it is a seemless introduction!

Installation

To download and install the plugin, you can simply:

  • Add: http://www.adigio.com/maven to maven.repo.remote
  • Run the commmand: % maven -DartifactId=maven-war-javascript-plugin -DgroupId=adigio -Dversion=0.1 plugin:download

Conclusion

So, now I can take JavaScript more seriously, and can start managing my JS dependencies with the care and loving touch that I do with the immense amount of open source library bloat :)

From Ajaxian.com

Mar 14

XMLterm: The marriage of the command line and rich ui

Ajax, HTML, JavaScript, Tech, UI / UX 200 Comments »

A friend pointed me to a (seemingly old) project called XMLTerm. XMLTerm is a mozilla based “A graphical command line interface”.

At first you may laugh, and ignore some of the security implications for now, but this could actually be quite cool.

Ajax could also come in to really help this out.

Some thoughts:

  • % du: When you do a ‘du’, wouldn’t it be cool to show a pie chart usage as well as the numbers?
  • % ssh [TAB]: tcsh came up with the ‘complete’ command, which lets you get smart with your tabbing. We can take that to a new level with a bit of UI integration. If you hit TAB after typing a command that needs a host (e.g. ssh, scp) then a select list can appear with your list of hosts
  • % history: Since we can place cool widgets in places, we could have a history bar which would allow you to click on an item to rerun it. Command Line Suggest could also get pulled up if you TAB at the beginning of a command, showing a drop down on history.

The XMLTerm site itself has ideas on graphical ls which shows thumbnails, and a special cat which groks HTML, images, etc.

In theory, this could be an interesting marriage of the command line interface (power), and richer functionality (not just text).

Mar 14

Announcing Ajaxian.com

Ajax, JavaScript, Tech, UI / UX 1 Comment »

Ben and I have had great feedback from the presentations that we have given on Ajax, so we created Ajaxian.com, as a place to talk about all things Ajax.

For instance, today we wrote about Handling usability concerns, such as the back/forward buttons, and bookmarking in the browser.

The entry talks about the opensource Dojo Toolkit, and its new bind() mechanism.

Mar 13

Giving the green or red card to management :)

Tech 4 Comments »

Have you been to a Brazillian buffet house? At these restaurants, waiters come around constantly with some meat, and will slice it off for you if you are showing the green YES:

Green Card: Yes Please

If you need some time to relax and digest you show red:

Red Card: No Thanks

Sometimes it would be nice to show this card to management. For example, when you get into the programming zone, wouldn’t it be nice to say “please don’t come around with small talk right now?”

Back in the day, I put in a policy which meant that management couldn’t bug my dev team during certain hours (unless they planned a meeting in advance etc). It was amazing to see the productivity gains from this simple measure.

Don’t be scared to show the red card! :)

Mar 13

Pseudocode becomes real code

Java, Ruby, Tech 19 Comments »

Brian McCallister wrote an interesting post (as per) explaining web containers.

One interesting point, is that although the topic is aimed at the Java spectrum, Brian uses Ruby as pseudocode in his tale.

The mix of Ruby/YAML is pretty clear, and does the job at getting the message across. This is because of the conciseness of the language. There is no extra crud that you have to put in there (static types, verbose APIs, etc).

So, if we want to write pseudocode in “language X”, I think that says a lot. Don’t we want our pseudocode to be as close to the metal as possible? Wouldn’t it be nice to take that pseudocode and just RUN it? We can :)

_why wrote about this too in Ruby as Coderspeak

Loading...