Some screencasts about MongoDB
Feb 19th
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
Google birdthday dedication to Norman Rockwell
Feb 3rd
testting google-code-prettify
Jan 27th
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
Jan 27th
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.
Create a hyperlink in SproutCore
Aug 30th
How can u put a hyperlink in a SproutCore?
Is not that hard
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!
Aug 30th
Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!

