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
#!/bin/bash | |
# | |
# NOTE: This script enables the JupterLab Extension Manager and installs extensions. | |
# There are code-execution risks with this, so make sure you only use trusted | |
# extensions and you're comfortable with these extensions before running! | |
# | |
# This script wrappers the JupterLab Docker container. It defines a few Docker volume | |
# mounts to ensure that JupyterLab configuration and notebooks are persisted between | |
# restarts. | |
# |
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" ?> | |
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> | |
<xsl:output omit-xml-declaration="yes" indent="yes"/> | |
<xsl:output method="xml" indent="yes" /> | |
<xsl:param name="targetBusSata" select="'sata'"/> | |
<xsl:param name="targetBusVirtio" select="'virtio'"/> | |
<xsl:param name="vcpuPlacementAuto" select="'auto'"/> | |
<xsl:param name="diskCache" select="'none'"/> | |
<xsl:param name="diskIoQueues" select="'4'"/> |
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
package hasher | |
import ( | |
"crypto/md5" | |
"crypto/sha1" | |
"encoding/hex" | |
"io" | |
"os" | |
) |
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
#!/bin/bash | |
# If the lab container version changes, plugins and their associated Python dependencies | |
# may need updating. | |
LAB_CONTAINER="jupyter/base-notebook:lab-4.0.7" | |
function wait_for_jupyterlab { | |
while true ; do | |
if curl -s -m5 -o /dev/null -f http://127.0.0.1:8888; then |
OlderNewer