|
| 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 |