Skip to content

Instantly share code, notes, and snippets.

@katp4
katp4 / professions.txt
Created December 24, 2018 12:28 — forked from mbejda/professions.txt
Compiled list of professions.
Profession
Professors
Teachers
Actors
Clergy
Musicians
Philosophers
Visual Artists
Writers
Audiologists
@katp4
katp4 / Industries.csv
Created December 24, 2018 12:27 — forked from mbejda/Industries.csv
Compiled list of industries.
Industry
Accounting
Airlines/Aviation
Alternative Dispute Resolution
Alternative Medicine
Animation
Apparel/Fashion
Architecture/Planning
Arts/Crafts
Automotive
@katp4
katp4 / NIB-J20-N0500S.xml
Created June 22, 2018 10:24 — forked from xlfe/NIB-J20-N0500S.xml
Private Health Insurance - Example XML File
<?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>
@katp4
katp4 / gpu.js
Created September 26, 2017 14:21 — forked from didasy/gpu.js
Finding GPU Info via JS
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;
});