This file contains 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 | |
# Convert asciidoc to markdown | |
# Argument(s): | |
# - filename - assumed to have an extension of .adoc | |
# | |
# TODO: Lists | |
filename="$1.md" | |
filename="${filename//-/_}" |
This file contains 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 | |
# ------------------------------------------------------------------------------ | |
# Reference(s): | |
# Uses Fred's ImageMagick Scripts | |
# http://www.fmwconcepts.com/imagemagick/ | |
# - graytoning | |
# ------------------------------------------------------------------------------ | |
This file contains 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
class var | |
{ | |
private: | |
std::size_t index; | |
static std::vector<int64_t> vsigned; | |
static std::vector<double> vdouble; | |
static std::vector<std::string> vstring; | |
public: | |
var() { } | |
var(bool v) : index(v) { } |