This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Profession | |
Professors | |
Teachers | |
Actors | |
Clergy | |
Musicians | |
Philosophers | |
Visual Artists | |
Writers | |
Audiologists |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Industry | ||
---|---|---|
Accounting | ||
Airlines/Aviation | ||
Alternative Dispute Resolution | ||
Alternative Medicine | ||
Animation | ||
Apparel/Fashion | ||
Architecture/Planning | ||
Arts/Crafts | ||
Automotive |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<Product xmlns="http://admin.privatehealth.gov.au/ws/Schemas" ProductID="cbccc173-486f-413d-b01f-2aa14e17da34" FundID="669a2e89-165a-4419-b1a8-f1e01db76178" ProductCode="J20/N0500S" Iteration="9" Status="Approved" StatusDate="2014-02-13T11:19:00" DateModified="2014-02-04T12:06:00" DateCreated="2014-02-04T12:06:00" PublishDate="01-Apr-14 00:00" DateApproved="2014-02-13T11:19:44"> | |
<FundCode>NIB</FundCode> | |
<TableCode>J20</TableCode> | |
<Name>Basic Saver $250 Excess</Name> | |
<ProductStatus>Open</ProductStatus> | |
<DateValidFrom>2014-04-01</DateValidFrom> | |
<DateIssued>2014-04-01</DateIssued> | |
<State>NSW</State> | |
<Category>Single</Category> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var canvas = $('<canvas />', { width: '1', height: '1' }).appendTo('body'); | |
var webglVersion = window.location.search.indexOf('v=2') > 0 ? 2 : 1; | |
var gl; | |
var possibleNames = (webglVersion === 2) ? ['webgl2', 'experimental-webgl2'] : ['webgl', 'experimental-webgl']; | |
var contextName; | |
possibleNames.forEach(function (name) { | |
gl = canvas[0].getContext(name, { stencil : true }); | |
contextName = !!gl; | |
}); |