Procedure to mount a LUKS encrypted device into a Container Optimized OS.
- Create a disk and attach to a plain VM
- Create format and mount as LUKS
- Write file to LUKS mount path
#!/usr/bin/env python | |
#http://www.crosscite.org/cn/ | |
import requests | |
import json | |
class CrossRefClient(object): | |
def __init__(self, accept='text/x-bibliography; style=apa', timeout=3): | |
""" |
NDJSON is a convenient format for storing or streaming structured data that may be processed one record at a time.
cat test.json | jq -c '.[]' > testNDJSON.json
These are instructions for setting up git to authenticate with GitHub when you have 2-factor authentication set up. This authentication should be inherited by any GUI client you are using. These are intentionally brief instructions, with links to more detail in the appropriate places.
Download and install the git command-line client (if required).
Open the git bash window and introduce yourself to git (if required):
git config --global user.name 'Firstname Lastname'
git config --global user.email '[email protected]'
#!/usr/bin/python | |
# Little script to display file download statistics for | |
# the published releases of a Github project. | |
# | |
# (c) Gareth Watts 2015 | |
# <[email protected]> | |
# Redistribution and use in source and binary forms, with or without | |
# modification, are permitted provided that the following conditions are met: |
#!/usr/bin/python | |
# | |
# Delete the label image from an Aperio SVS file. | |
# | |
# Copyright (c) 2012-2013 Carnegie Mellon University | |
# All rights reserved. | |
# | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU Lesser General Public License as | |
# published by the Free Software Foundation, version 2.1. |