This file contains hidden or 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
{ | |
"icu_vital_signs/language|code": "en", | |
"icu_vital_signs/language|terminology": "ISO_639-1", | |
"icu_vital_signs/category|code": "433", | |
"icu_vital_signs/category|value": "event", | |
"icu_vital_signs/category|terminology": "openehr", | |
"icu_vital_signs/territory|code": "US", | |
"icu_vital_signs/territory|terminology": "ISO_3166-1", | |
"icu_vital_signs/composer|name": "Shinji Kobayashi", | |
"icu_vital_signs/body_temperature/language|code": "en", |
This file contains hidden or 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" encoding="UTF-8" standalone="yes"?> | |
<template xmlns="http://schemas.openehr.org/v1"> | |
<language> | |
<terminology_id> | |
<value>ISO_639-1</value> | |
</terminology_id> | |
<code_string>en</code_string> | |
</language> | |
<description> | |
<original_author id="date">2021-02-01</original_author> |
This file contains hidden or 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
{ | |
"info": { | |
"_postman_id": "22155ee2-6383-45e8-a2d6-4362b11cdfb7", | |
"name": "EHRbase", | |
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json" | |
}, | |
"item": [ | |
{ | |
"name": "Get templates list", | |
"request": { |
This file contains hidden or 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
{ | |
"name": { | |
"_type": "DV_TEXT", | |
"value": "Health summary" | |
}, | |
"archetype_details": { | |
"_type": "ARCHETYPED", | |
"archetype_id": { | |
"_type": "ARCHETYPE_ID", | |
"value": "openEHR-EHR-COMPOSITION.health_summary.v1" |
This file contains hidden or 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
<template xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.openehr.org/v1"> | |
<language> | |
<terminology_id> | |
<value>ISO_639-1</value> | |
</terminology_id> | |
<code_string>ja</code_string> | |
</language> | |
<description> | |
<original_author id="Original Author">Not Specified</original_author> | |
<lifecycle_state>Initial</lifecycle_state> |
This file contains hidden or 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
# The preprints is available from https://www.preprints.org/manuscript/202002.0179/v1 | |
# S Susceptible | |
# E Exposed | |
# I Infected | |
# R Recovery | |
%matplotlib inline | |
import numpy as np | |
import matplotlib.pyplot as plt | |
r0 = 3. # basic reproduction number |
This file contains hidden or 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
#! /usr/bin/env ruby | |
# coding: utf-8 | |
require 'csv' | |
csvfile = ARGV[0] || "paper.csv" | |
bibfile = ARGV[1] || "paper.bib" | |
csv = CSV.read(csvfile, headers: true, encoding: 'Shift_JIS:UTF-8') | |
bib = File.open(bibfile, "w", encoding: "UTF-8") | |
csv.each do |line| | |
label = line['タイトル(英語)'][0..8].gsub(' ','_') + line['出版年月'] |
This file contains hidden or 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
class Husband | |
attre_reader :wife | |
def initialize(wife) | |
@wife = wife | |
end | |
def love_wife? | |
true | |
end |
This file contains hidden or 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
(add-to-list 'load-path "~/.emacs.d/site-lisp") | |
(global-set-key "\C-?" (quote delete-char)) | |
(global-set-key "\C-h" (quote delete-backward-char)) | |
(set-language-environment 'japanese) | |
(set-terminal-coding-system 'utf-8) | |
(set-default-coding-systems 'utf-8) | |
(setq c-site-default-style "k&r") | |
(require 'mozc) | |
(setq default-input-method "japanese-mozc") | |
(global-set-key (kbd "C-o") 'toggle-input-method) |