Make a bare repo from a checkout:
git clone --bare /path/to/repo
Then run this in the bare git repo:
touch git-daemon-export-ok
Make a bare repo from a checkout:
git clone --bare /path/to/repo
Then run this in the bare git repo:
touch git-daemon-export-ok
I had some massive problems when installing the 10.13.3 update on macOS. The update installed, my computer successfully restarted - but on a subsequent restart the boot failed and displayed the following installation log:
Apr 4 04:07:04 MacBook-Pro opendirectoryd[186]: [session] Processing a network change notification
Apr 4 04:07:06 MacBook-Pro Unknown[526]: Launching the Language Chooser for an OS Install
Apr 4 04:07:06 MacBook-Pro bspowerassertiontool[521]: Tool exited successfully (0).
Apr 4 04:07:06 MacBook-Pro launchprogresswindow[524]: ISAP: Show progress UI called
Apr 4 04:07:07 MacBook-Pro Installer Progress[180]: Progress UI App Starting
Apr 4 04:07:32 MacBook-Pro opendirectoryd[186]: [session] Received a network change notification
Apr 4 04:07:32 MacBook-Pro opendirectoryd[186]: [session] Received a network change notification
{ | |
"semi": false, | |
"singleQuote": true, | |
"trailingComma": "all", | |
"proseWrap": "always" | |
} |
SCTID,FSN,Body,External,Nature | |
100051000032108,Bat scratch (event),0,1,0 | |
100071000032104,Bat scratch injury (disorder),0,0,1 | |
10050004,Contusion of chest (disorder),0,0,1 | |
10061007,Brain stem contusion without open intracranial wound AND with prolonged loss of consciousness (more than 24 hours) AND return to pre-existing conscious level (disorder),0,0,1 | |
10065003,Excoriated acne (disorder),0,0,1 | |
10070005,Poisoning caused by quinoline AND/OR hydroxyquinoline derivative (disorder),0,1,0 | |
10132008,Burns of multiple sites (disorder),1,0,0 | |
10186000,Toxic effect of selenium compound (disorder),0,1,0 | |
10217006,Third degree perineal laceration (disorder),0,0,1 |
jq -r ".expansion.contains[] | { system: .system, code: .code, display: .display } | map(values) | @csv" ~/Desktop/source.ValueSet.json >~/Desktop/target.csv |
import json | |
import sys | |
input_bundle = json.load(sys.stdin) | |
output_bundle = { | |
"resourceType": "Bundle", | |
"type": "transaction", | |
"entry": [ | |
{ |
import multiprocessing as mp | |
import sys | |
from time import time | |
import requests | |
def upload_bundle(file): | |
with open(file) as bundle: | |
data = bundle.read() |
import json | |
import multiprocessing as mp | |
import sys | |
from math import floor | |
from time import time | |
import requests | |
def update_resource(file): |