Skip to content

Instantly share code, notes, and snippets.

View TheZorkij's full-sized avatar

Mike Pravilenko TheZorkij

View GitHub Profile
<!doctype html>
<html>
<head>
<title>Zoner</title>
<meta charset="utf-8" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
</head>
<body>
<style>
@TheZorkij
TheZorkij / conditional.js
Last active May 7, 2019 16:46
FHIR Conditional operations
var client = Fhir({
baseUrl: process.env.SERVER_URL || 'http://localhost:8888',
debug: process.env.DEBUG || false,
auth: {user: '[email protected]', pass: 'secret'}
});
//CONDITIONAL OPERATIONS
//conditionalUpdate
@TheZorkij
TheZorkij / searchParams.js
Last active April 30, 2019 09:57
FHIR client revision
var client = Fhir({
baseUrl: process.env.SERVER_URL || 'http://localhost:8888',
debug: process.env.DEBUG || false,
auth: {user: '[email protected]', pass: 'secret'}
});
//SEARCH PARAMS
//*** implemented ***