GalenaBlog myBloggie 0.0.1 © 2005   
23 Dec 2011   06:21:44 pm
Ok new catagory for the Politicos!
This catagory is intended to just be a rant site.
Category : Galena Intro | By : galena | Comments [0] | Trackbacks [0]
04 Dec 2011   06:00:07 pm
Object Oriented JavaScript
I think most folks don't understand how truely OO JavaScript is. While it is a bit, 'take it or leave it', taking it is really good idea.

For example, consider the JavaScript "class";

function MyClass(){
this.sample1 = function(invalue) {
alert("Sample one Function Called with value:"+invalue);
};
this.sample2 = function(invalue) {
alert("Sample two Function Called with value:"+invalue);
};
}

By constructing a function such as the above, we are creating a 'class' with methods (two in this case). To use the new class, you would simply do the following.

var test = new MyClass();
test.sample1("MyValue");

You now have a reusable class! Yes you can have many parameters, and even return values.
Category : Jeneral Java | By : galena | Comments [3] | Trackbacks [0]
04 Dec 2011   05:35:45 pm
Oracle 11g support is coming to Galena
The first Beta is on the site, it seems rather stable. One major pain was the migration from MySQL to Oracle, using the Oracle SQL Developer - this was far from clean. Most of the primary keys were lost and the field name 'size' was automaticly renamed to 'size_' - UHG!.
Category : Galena Intro | By : galena | Comments [0] | Trackbacks [0]
04 Dec 2011   05:31:05 pm
Servlets or JSP?
Ok I am a servlet bigot. I Love XSL/T and the dynamic potential it offers (See Galena Framework). Can anyone tell me why I would ever consider something like JSP? I have tried to use it, but the jumbled up Java/JavaScript/HTML seems to be a maintenance nightmare - Where am I going wrong?
Category : Galena Intro | By : galena | Comments [0] | Trackbacks [0]
04 Dec 2011   05:22:53 pm
Welcome
Welcome the the Galena Blog!
Category : Galena Intro | By : galena | Comments [1] | Trackbacks [0]
 
1 2 Next
Jan 2012 February 2012 Mar 2012
S M T W T F S
      1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29    
Categories
Galena Intro[5]
Jeneral Java[1]
Recent
Ok new catagory for the Politicos!
Object Oriented JavaScript
Oracle 11g support is coming to Galena
Servlets or JSP?
Welcome
Testing Message for myBloggie
Archives
December 2011[5]
October 2011[1]
User List
galena[5]
Search
Syndication
Template theme : aura
Powered by myBloggie Copyright © 2004 2006
-- myWebland --