This script has moved.
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
#!/usr/bin/python | |
# | |
# OpenSlide, a library for reading whole slide image files | |
# | |
# Copyright (c) 2007-2012 Carnegie Mellon University | |
# Copyright (c) 2011 Google, Inc. | |
# All rights reserved. | |
# | |
# OpenSlide is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU Lesser General Public License as |
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
#define _GNU_SOURCE | |
#define _FILE_OFFSET_BITS 64 | |
#include <sys/types.h> | |
#include <sys/stat.h> | |
#include <linux/fs.h> | |
#include <linux/fiemap.h> | |
#include <fcntl.h> | |
#include <stdio.h> | |
#include <string.h> | |
#include <stdlib.h> |
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
#!/usr/bin/python | |
import gzip | |
import json | |
import sys | |
from urllib.request import urlopen | |
import yaml | |
class literal(str): | |
pass |
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
#!/bin/bash | |
set -euo pipefail | |
tpm=0 | |
mem=2048 | |
port=2222 | |
tftpboot= | |
args=(-accel kvm -cpu host -object rng-random,filename=/dev/urandom,id=rng0) | |
while [ $# -ge 1 ]; do |