Wikijs 1.0 will slow down when uploading this page. Check issue 389 for more info.
| column A | column B | column C | column D |
|---|---|---|---|
| a | b | c | |
| a | b | c | |
| a | b | c | |
| a | b |
Wikijs 1.0 will slow down when uploading this page. Check issue 389 for more info.
| column A | column B | column C | column D |
|---|---|---|---|
| a | b | c | |
| a | b | c | |
| a | b | c | |
| a | b |
I hereby claim:
To claim this, I am signing this object:
| #/bin/bash | |
| dir=$(mktemp --directory) | |
| declare -a input=() | |
| cat <<__EOT__ > ${dir}/metadata.txt | |
| --- | |
| title: The Story of Us | |
| author: Tim Urban | |
| rights: Creative Commons Non-Commercial Share Alike 3.0 |
| pkg load instrument-control | |
| % got this function from https://www.edn.com/read-serial-data-directly-into-octave/ | |
| function [char_array] = ReadToTermination (srl_handle, term_char) | |
| % parameter term_char is optional, if not specified | |
| % then CR = 'r' = 13dec is the default. | |
| if (nargin == 1) | |
| term_char = 13; | |
| end |
| #!/usr/bin/python | |
| import requests | |
| import argparse | |
| device="tcw181b-cm" | |
| parser = argparse.ArgumentParser() | |
| parser.add_argument('-d', '--device', nargs=1, help='device (default: '+device+')') | |
| parser.add_argument('-f', '--off', type=int, action='append', nargs=1, help='turn relay X off') |
| #!/usr/bin/env python3 | |
| from poeditor import POEditorAPI | |
| import os | |
| import subprocess | |
| import time | |
| import argparse | |
| project_id = "435155" | |
| filename = "victronconnect" |
| #!/bin/bash | |
| # language is first parameter, defaulting to 'nl' if none given | |
| lang=${1:-nl} | |
| # Add Qt to the path | |
| PATH=$PATH:~/Qt/5.13.2/gcc_64/bin/ | |
| # export .po file. First query gives us a file location | |
| po_file_location=$(curl -X POST https://api.poeditor.com/v2/projects/export \ |
| #!/usr/bin/env python3 | |
| import authenticator as a | |
| import os | |
| def get_code(): | |
| cd = (a.data | |
| .ClientFile( | |
| os.environ['AUTHENTICATOR_PASSWORD']) |
| #!/usr/bin/env python3 | |
| import sys | |
| import argparse | |
| parser = argparse.ArgumentParser() | |
| parser.add_argument('-v', '--verbose', action='store_true', | |
| help='increase output verbosity' ) | |
| parser.add_argument('-d', '--dry-run', action='store_true', | |
| help='work without input' ) |
| #!/usr/bin/env python3 | |
| import argparse | |
| import polib | |
| parser = argparse.ArgumentParser() | |
| parser.add_argument('-s', '--source', nargs=1, | |
| help='source PO file') | |
| parser.add_argument('-r', '--reference', nargs=1, |