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
{ | |
"@context": [{ | |
"@version": 1.1 | |
},"https://www.w3.org/ns/odrl.jsonld", { | |
"ex": "https://example.org/examples#", | |
"schema": "http://schema.org/", | |
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", | |
"DrivingLicenceCredential": "ex:DrivingLicenceCredential", | |
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
{ | |
"@context": { | |
"@version": 1.1, | |
"@protected": true, | |
"key1": "xsd:string", | |
"key2": "xsd:string", | |
"key3": "xsd:string" | |
} | |
} |
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
{ | |
"@context": { | |
"@version": 1.1, | |
"@protected": true, | |
"identity": { | |
"@id": "https://lol.com/todo", | |
"@context": { | |
"@version": 1.1, | |
"@protected": true, | |
"id": "@id", |
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
{ | |
"schema": "opencerts/v2.0", | |
"data": { | |
"id": "ec27486d-8438-4acb-bc6b-2bd74c1cc67c:string:2850fd39-47d0-4fce-9a00-c29db4d932df", | |
"name": "ef1435cc-2566-47ee-a039-6521f28e43ae:string:Mixed Reality Developer Course", | |
"issuedOn": "5c260d0f-4cac-451f-9427-7bbe8601429f:string:2019-12-20T00:00:00+08:00", | |
"issuers": [ | |
{ | |
"network": "84717354-0e18-4ec6-ab5e-7ad9d8c64283:string:ETHEREUM", | |
"name": "f3665535-0caf-44c6-8818-999e509bc508:string:HelloHolo", |
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
<div onclick="start()" style="width: 100%; height:100%;background-color:#d3d3d3;" id="text"> | |
<div style="padding-top:280px;font-size: 18pt;padding-left:15px; padding-right:15px"> | |
Tap here to allow AR camera view. | |
<div style="font-size: 8pt;">Does not work on Chrome for iOS and embedded browsers on iOS.</div> | |
</div> | |
</div> | |
<video id="placeholder" src="placeholder.mp4" loop autoplay preload="auto" playsinline width="480" controls="false" hidden muted></video> | |
<video id="v" autoplay playsinline controls="false"></video> |
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
<button onclick="start()">Start!</button><br /> | |
<video id="v" autoplay playsinline></video> | |
<script type="text/javascript"> | |
var config = { | |
video: { | |
width: 1280, | |
facingMode: { | |
exact: "environment" | |
} |
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
<?php | |
header("Content-Type: text/plain"); | |
//echo "sales_id,customer_id,product_id,product_type,unit_cost,quantity,unit_cost\r\n"; | |
echo "PONumber,SupplierID,ProductID,Quantity,OrderDate,ReceivedDate,ReceivedQuantity\r\n"; | |
$start = "1 January 2018"; | |
$end = "31 December 2018"; |
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
CASE [Metric 1] | |
WHEN "Day 1" THEN SUM([Day 1 Attendance]) | |
WHEN "Day 2" THEN SUM([Day 2 Attendance]) | |
WHEN "Day 3" THEN SUM([Day 3 Attendance]) | |
END |
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
(function (window) { | |
'use strict'; | |
/*global define, module, exports, require */ | |
var c3 = { version: "0.4.8" }; | |
var c3_chart_fn, c3_chart_internal_fn; | |
function Chart(config) { |
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
<form action="https://lms.tp.edu.sg/webapps/login/" method="post" name="login"> | |
<input type="hidden" name="user_id" id="user_id" value="{%username}" /> | |
<input type="hidden" name="password" id="password" autocomplete="off" value="{%plaintext_password}" /> | |
<input type="hidden" value="Login" name="login" /> | |
<input type="hidden" name="action" value="login" /> | |
</form> | |
<script type="text/javascript"> | |
document.login.submit(); | |
</script> |