Real unit test (isolation, no children render)
Calls:
- constructor
- render
#!/bin/bash | |
############################################### | |
# To use: | |
# chmod +x install-redis.sh | |
# ./install-redis.sh | |
############################################### | |
version=6.2.7 |
# Patient's Name. Patient ID birth date series UID. series UID Institution Name Institution Address Accession Number physician operator sop UID other pat ids study id Image Comments | |
dcmodify -ie -gin -nb -ea "(0010,0010)" -ea "(0010,0020)" -ea "(0010,0030)" -ea "(0020,000E)" -ea "(0020,000D)" -ea "(0008,0080)" -ea "(0008,0081)" -ea "(0008,0050)" -ea "(0008,0090)" -ea "(0008,1070)" -ea "(0008,1155)" -ea "(0010,1000)" -ea "(0020,0010)" -ea "(0020,4000)" *.dcm |
import os | |
import pprint | |
def get_all_files(path, min_size_kb=None): | |
for root, dirs, files in os.walk(path): | |
for file_ in files: | |
path = os.path.abspath(os.path.join(root, file_)) | |
size = (os.path.getsize(path)) // 1024 | |
if size >= min_size_kb: |
Locate the section for your github remote in the .git/config
file. It looks like this:
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = git@github.com:joyent/node.git
Now add the line fetch = +refs/pull/*/head:refs/remotes/origin/pr/*
to this section. Obviously, change the github url to match your project's URL. It ends up looking like this: