FIXME: description
Download from http://example.com/FIXME.
table { | |
font-family: arial, sans-serif; | |
border-collapse: collapse; | |
width: 100%; | |
} | |
td, th { | |
border: 1px solid #dddddd; | |
text-align: left; | |
padding: 8px; |
FIXME: description
Download from http://example.com/FIXME.
code { | |
white-space: pre-wrap; | |
background-color: #dddddd; | |
border-radius: .4em; | |
} | |
.block { | |
display: block; | |
} |
# simple-cdd.conf detailed configuration file | |
# Note: this is an example list of configuration options: it is *strongly* | |
# advised to merely create a new file using only the options you actually need. | |
# Note: Variables in lowercase are only used by simple-cdd. | |
# Profile Selection | |
# | |
# The following four files get included on the CD if present: |
variable=`echo $LOWER | awk '{print toupper($0)}'` |
programname=$0 | |
function usage { | |
echo "usage: $programname [-abch] [-f infile] [-o outfile]" | |
echo " -a turn on feature a" | |
echo " -b turn on feature b" | |
echo " -c turn on feature c" | |
echo " -h display help" | |
echo " -f infile specify input file infile" | |
echo " -o outfile specify output file outfile" | |
exit 1 |
/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */ | |
/** | |
* 1. Change the default font family in all browsers (opinionated). | |
* 2. Correct the line height in all browsers. | |
* 3. Prevent adjustments of font size after orientation changes in | |
* IE on Windows Phone and in iOS. | |
*/ | |
/* Document |
<?php | |
$fileName = "fun.xml"; | |
$keystorepath = "this/is/a/path.jks"; | |
$keystorepassword = "keystorepassword"; | |
$fileContents = file_get_contents($fileName); | |
$xml = simplexml_load_string($fileContents); |
This is the correct string. |
Ripped from http://www.openscad.org/cheatsheet/index.html
var = value;
module name(…) { … }
name();
function name(…) = …
name();