Playground

Slides.com is a web-based presentation package that allows for the quick creation of slide decks.

Slides.com is based upon some excellent JacaScript libraries thus making the presentations web-first.

Tables Area Usage
Dining Dining room Eating
Sewing Bedroom Making clothes
// --- Used to sort an Object (Array) by any of the fields in it 
//     Reference: https://stackoverflow.com/questions/1129216/sort-array-of-objects-by-string-property-value-in-javascript?utm_medium=organic&utm_source=google_rich_qa&utm_campaign=google_rich_qa
//     usage in the app is adoc.sort(dynamicSort("order"))
function dynamicSort(property) {
    var sortOrder = 1;
    if(property[0] === "-") {
        sortOrder = -1;
        property = property.substr(1);
    }
    return function (a,b) {
        var result = (a[property] < b[property]) ? -1 : (a[property] > b[property]) ? 1 : 0;
        return result * sortOrder;
    }

}
1/2 sqrt(2)
1/2sqrt(2)1/2 sqrt(2)
e^{ix} = \cos x + i\sin x
eix=cosx+isinxe^{ix} = \cos x + i\sin x

Title

P

By John H Schuster

P

  • 595