Posts

Scala

Blog on Scala , which is a functional programming language that runs on the JVM

R Programming Language

The R Programming Language is used for Statistics. See Introduction to R for programmers coming for other languages

Good tutorial on Oracle SQL Model

The Oracle SQL Model allows you to do a lot more things in SQL that you would normally have done in PL/SQL. You can find a good tutorial here

Richard Feynman lecture on Physics video

Bill Gates has posted lecture on Physics by Richard Feynman at the Microsoft Research website. You need IE to view these lectures

10 Promsing Web Platforms

10 Promising Web Platforms , this is a list off platforms outside of the popular ones like Facebook and Myspace that could become popular.

Linus Trovalds approach to Software Management

Interesting post on how Linus Trovalds manages the Linux Kernel development process . Some of his opinions would also apply to large closed source development where the team members are geographically distributed.

Poor usability in open source software

Going through the list of 15 suggessions to improving usability in open source software the main problem is that too many cooks spoil the broth, A good user interface requires as much thought as does the software architecture. There have been cases where a requirement for a better user interface has required significant changes in the code across the stack because usability was not thought about upfront.

25 Internet Startups that bombed!

Having survived a badly run startup, which raised a huge amount of money and then went under because they spent the money they raised as if there was no tomorrow. There are many ways to fail, running a startup but few ways to succeed. 25 Internet startups that bombed

Google Web Crawling

The web has grown in 10 years from 26 million unique URLs to 1 trillion unique URLs. This makes it a very challenging task for Google to crawl all the pages. The amazing part is that they do this a couple of times a day to keep their search engine uptodate. See the blog posting for more details http://googleblog.blogspot.com/2008/07/we-knew-web-was-big.html

SQL Developer User Defined Extensions

SQL Developer 1.5 allows you to create user defined extensions using XML and SQL to add a tab for an existing object e.g the Table Node and add context menu to the navigator. See the OBE for details on how to do this.

How to design an API by Joshua Bloch

How to design an API by Joshua Bloch

Syntax Editor in Swing

JSyntaxPane for Creating Syntax Speicific Editors in Swing

Wikipedia Computer Science Links

Computer Science Degree using Wikipedia

Great Programming quotes

21 laws of Computer Programming . 101 great Programming quotes 101 more greate Programming quotes

Logitech MX Revloution wireless mouse

I was experiencing some discomfort while using the standard wired optical mouse that shipped with my PC, so I recently purchased the Logitech MX Revolution wireless mouse. The mouse includes a Li-on battery so that you don't have to change batteries every 6 months. The mouse felt very comfortable in my hand since it is a little wider than a standard mouse. One interesting feature that anybody who multi-tasks a lot of software on their PC would appreciate is a scroll button on the left hand of the mouse that can be used to quickly switch between applications. I highly recommend this mouse!

HP Touchsmart

HP has release a new Touchsmart computer that is an all in one like the iMac, one of the interesting feature is that it ships with 64 bit version of Windows Vista. With 4GB memory becoming quite cheap we may start seeing more PCs ship as 64 bit with more than 4GB memory.

Developer Productivity

The fact that some developers can be 10x more productive is not a myth. Very few organizations understand this and know how to hire and manage the best. The successfull organizations like Google, Microsoft and Oracle understand this and their success is partly based on this. 10x Developer Productivity

Domain Driven Design

An excellent article on Domain Driven Design with a Java example, it emphasizes capturing your domain into POJO and not creating fat objects that mix implementation specific features such as caching with the domain code.

Oracle Job Scheduler example

Recently I helped somebody setup a Job to update some tables from a remote database. So I thought I would give some example here on how to create and track jobs using the Oracle Job Scheduler begin drop table test2; create table test2 (f1 varchar2(10)); dbms_scheduler.drop_job('JJ'); dbms_scheduler.create_job( job_name => 'JJ' ,job_type => 'PLSQL_BLOCK' ,job_action => 'begin insert into test2 values(''abc''); end; ' --,job_action => 'null;' ,start_date => systimestamp ,repeat_interval => 'FREQ=MINUTELY; INTERVAL=1' ,enabled => TRUE ,comments => 'Job.'); dbms_scheduler.set_attribute('JJ', 'logging_level', dbms_scheduler.logging_full); dbms_scheduler.set_attribute('JJ', 'job_priority', 1); end; -- Run Job nowbegin dbms_scheduler.run_job('JJ'); end; select * from user_scheduler_job_log where job_name = 'JJ'; -- Job History select * from user_sched...

Managing Open Source Projects

This is a very good artcile about how to manage a small open source project . A lof of the information also applies to a closed source project, such as documenting the features. In our division we have an internal wiki that I use extensively in documenting all the cool features of our software so that when I am asked about a feature I can just point them to the Wiki.