Recently changed documents

What is volatile in Java?

More documents like this are at:  CS-Java

5-Jul-14

What is volatile in Java?

How to backup and restore android installation

Emulator issues in Android 4.0

More documents like this are at:  Android Avds, Install, Emulator

3-Jul-14

Emulator issues in Android 4.0

7 things you should do when you buy a new windows computer

windows 8 survival guide

More documents like this are at:  Computer Hardware

28-Jun-14

windows 8 survival guide

windows defender and antivirus

More documents like this are at:  Computer Hardware

27-Jun-14

windows defender

Consider this


function Pair(inMin, inMax)
{
    this.min = inMin;
    this.max = inMax;
}

Which would let me use


var somepair = new Pair(5,10);
somepair.min => 5
somepair.max => 10

See this function now


function getTotalScaledScorePair()
{
    var rpair = getReadingScaledScorePair();
    var wpair = getWritingScaledScorePair();
    var mpair = getMathScaledScorePair();
    
    var tmin = rpair.min + wpair.min + mpair.min;
    var tmax = rpair.max + wpair.max + mpair.max;
    return new Pair(tmin, tmax);
}

Working with radio buttons

More documents like this are at:  CS-JavaScript

25-Jun-14

Working with radio buttons

Notes on Tweaking Aspire

More documents like this are at:  Aspire Notes

24-Jun-14

Notes on Tweaking Aspire

04.05 Java Programming NOtes

More documents like this are at:  CS-Java

23-Jun-14

You can use this reference page as a cheatsheet while programming in java

self documenting apis

More documents like this are at:  Enterprise Integration

20-Jun-14

self documenting apis

What is 3Scale?

More documents like this are at:  Enterprise Integration

20-Jun-14

What is 3Scale?

Aspire Release 39

More documents like this are at:  Aspire Notes

14-Jun-14

Aspire Release 39

Define the architecture for Apps in AKC

More documents like this are at:  Aspire Knowledge Center (akc)

14-Jun-14

Define the architecture for Apps in AKC

Implement a list of lists editor

More documents like this are at:  Aspire Knowledge Center (akc)

14-Jun-14

Implement a list of lists editor

Example data definition for a sample html page

More documents like this are at:  Aspire Notes

12-Jun-14

Example data definition for a sample html page

Web Security Constraints

More documents like this are at:  CS-JavaScript

11-Jun-14

Web Security Constraints

General research

More documents like this are at:  Enterprise Integration

11-Jun-14

General research

General survey of data format standards

More documents like this are at:  Enterprise Integration

11-Jun-14

General survey of data format standards

Java enums

More documents like this are at:  CS-Java

6-Jun-14

Java enums

Data format standards

More documents like this are at:  Enterprise Integration

4-Jun-14

Data format standards

js: Regulare expressions in java script

More documents like this are at:  CS-JavaScript

2-Jun-14

A sample akc html page

More documents like this are at:  Aspire Notes

1-Jun-14

A sample akc html page

How do I define a column to be a primary key in tsql?

More documents like this are at:  CS-SQLServer

28-May-14

How do I define a column to be a primary key in tsql?

CSS Samples, Cheat sheet, Quick Guide

More documents like this are at:  CSS

27-May-14

CSS Samples, Cheat sheet, Quick Guide

Goals and Characteristics

More documents like this are at:  Enterprise Integration

26-May-14

Goals and Characteristics

Adeptia

More documents like this are at:  Enterprise Integration

24-May-14

Adeptia

1. How to trim a string
2. How to use arrays
3. How to split a string
4. Uses an aspire function called getSelectedCheckBoxValues

Extracted jquery samples

More documents like this are at:  jquery

23-May-14

Extracted jquery samples

Sample code snippet for a SqlServer View

More documents like this are at:  CS-SQLServer

21-May-14

Sample code snippet for a SqlServer View