Note: Follow the official guide.
bash setup.sh myusername mypassword
- Authentication information is stored under
/data/docker/registry/auth
. - Storage directory is set to be
/data/docker/registry/storage
.
""" | |
Provides a cast operations module. | |
>>> cast_to_decimal(1.0001) | |
Decimal('1.0001') | |
>>> cast_to_decimal(1) | |
Decimal('1') | |
>>> cast_to_decimal("1.0001") | |
Decimal('1.0001') | |
>>> cast_to_decimal(Decimal("1.0001")) |
#!/usr/bin/env perl | |
=head1 NAME | |
sample.pl - Sample Perl Script | |
=head1 SYNOPSIS | |
perl sample.pl | |
perldoc sample.pl |
' Run the SaveAllAsCSV subroutine. | |
' Creates a CSV file from the active sheet under the given directory. | |
' | |
' Based on https://forum.openoffice.org/en/forum/viewtopic.php?t=41284 | |
sub SaveAsCSV(filename As String) | |
' Declare the document variable: | |
dim document as object | |
' Get the document: |
ack | |
axel | |
curl | |
emacs | |
git | |
htop | |
jq | |
mc | |
network-manager | |
pandoc |
Note: Follow the official guide.
bash setup.sh myusername mypassword
/data/docker/registry/auth
./data/docker/registry/storage
.Note: For the Docker Swarm setup, check out the official guide.
bash setup.sh [<OPENFAAS-HOME-DIRECTORY>]
whereby OPENFAAS-HOME-DIRECTORY
defaults to /data/openfaas
.
""" | |
This module provides various functions to inspect and normalize value inputs. | |
Reference: https://gist.github.com/vst/f377006ebe30f3a90d5d54366430ccee | |
""" | |
__all__ = ["identity", "strnorm", "is_positive_integer", "as_positive_integer"] | |
import re | |
from functools import wraps |
""" | |
This module provides various functions to work with XLSX file. | |
Reference: https://gist.github.com/vst/269aceb5a54de0adf2cb23e3482895f8 | |
""" | |
__all__ = ["read_workbook_data", "read_worksheet_data"] | |
from typing import Any, Dict, Iterable |