Some screencasts about MongoDB

Hi,

MongoDB is a document-oriented database, opensource. Check out the videos.

Introduction to MongoDB – Part I from Eric Berry on Vimeo.

Introduction to MongoDB – Part II, Ruby from Eric Berry on Vimeo.

Introduction to MongoDB – Part III, MongoMapper & Rails from Eric Berry on Vimeo.

Some other video links:
http://www.leadit.us/hands-on-tech/MongoDB-High-Performance-SQL-Free-Database

http://ia301535.us.archive.org/2/items/dc_vie_09/dcvie09_mungo_db.ogg

MongoDB website

Google birdthday dedication to Norman Rockwell

Google homepage dedication Norman Rockwell

Google homepage dedication Norman Rockwell

Today while googleing, i’ve looked at the google.com homepage and saw their birdtday present to Norman Rockwell. Really cool image :D

testting google-code-prettify

import javax.ejb.Stateful;
import javax.interceptor.AroundInvoke;
import javax.interceptor.InvocationContext;

@Stateful
public class EmployeeBean implements EmployeeServiceLocal, EmployeeServiceRemote {

  public EmployeeBean() {
  }

  public void doAction() {
    System.out.println("Processing...");
  }

  @AroundInvoke
  public Object TimerLog(InvocationContext ctx) throws Exception {
    String beanClassName = ctx.getClass().getName();
    String businessMethodName = ctx.getMethod().getName();
    String target = beanClassName + "." + businessMethodName;
    long startTime = System.currentTimeMillis();
    System.out.println("Invoking " + target);
    try {
      return ctx.proceed();
    } finally {
      System.out.println("Exiting " + target);
      long totalTime = System.currentTimeMillis() - startTime;
      System.out.println("Business method " + businessMethodName + "in " + beanClassName + "takes "
          + totalTime + "ms to execute");
    }
  }
}

Dawn of the Augmented Reality Industry

Video from Bruce Sterling about the Dawn of the Augmented Reality.

Video: Bruce Sterling’s Keynote – At the Dawn of the Augmented Reality Industry from Maarten Lens-FitzGerald on Vimeo.

wpToGo test

Testing wpToGo from HTC Hero :P

Create a hyperlink in SproutCore

How can u put a hyperlink in a SproutCore?

Is not that hard :D something like this:

labelAuthorHomepage: SC.LabelView.design({
layout: {centerY: 0, height: 18, left: 20, right: 20},
textAlign: SC.ALIGN_RIGHT,
value: 'www.narvenblog.com',
escapeHTML: NO
})

just use a sc.labelview and pass the value as an html hyperlink tag :) More >

Hello world!

Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!

Get Adobe Flash playerPlugin by wpburn.com wordpress themes