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/sh | |
set -e | |
readonly PROGNAME=$(basename "$0") | |
help () { | |
cat <<EOF | |
Usage: $0 [OPTIONS] | |
Options can be: |
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/sh | |
set -euC | |
cd "$(dirname "$0")" | |
command -v >/dev/null morbig | |
command -v >/dev/null dash | |
while [ $# -gt 0 ]; do | |
case $1 in | |
--corpus) |
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
.PHONY: build clean | |
OCAMLBUILD=ocamlbuild -use-ocamlfind | |
build: | |
$(OCAMLBUILD) test.native | |
clean: | |
$(OCAMLBUILD) -clean |
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/sh | |
## This shell script aims to help you in controlling the XIO-P0 to | |
## XIO-P7 expander GPIO pins [2] of the C.H.I.P. [1]. It should work | |
## with any Debian Policy-compliant shell [3]. It is advised to use it | |
## with the `-e' flag [4]. | |
## | |
## [1]: To know more about C.H.I.P.: https://getchip.com/ | |
## | |
## [2]: To know more about the pins of your C.H.I.P.: |
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
<!doctype html> | |
<html lang="en"> | |
<head> | |
<title>Get Ampache!</title> | |
<style type="text/css"> | |
pre.command-output | |
{ | |
font-family: monospace; | |
background: black; |
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
## ## =============== ## | |
## ## Server Settings ## | |
## ## =============== ## | |
## | |
## Server settings for a Teeworlds 0.6.3 server. | |
## To choose the config file, use the `-f` option. | |
## | |
## https://www.teeworlds.com/?page=docs&wiki=server_settings | |
## | |
## To change the game's physics, read the Server Tuning doc. |
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
''' | |
align_string.py | |
Align string with spaces between words to fit specified width | |
Author: Denis Barmenkov <[email protected]> | |
Copyright: this code is free, but if you want to use it, | |
please keep this multiline comment along with function source. | |
Thank you. |