====== Programming ====== //Various notes and resources about [[wp>Programming]] I've come across in my studies.// ===== Languages ===== ==== Windows ==== * [[.:vbscript:start|VBScript]] * [[.:batch:start|Batch]] * [[.:wix:start|Windows Installer XML (WiX)]] ==== OS Agnostic ==== * [[.:cpp:start|C++]] * [[.:python:start|Python]] * [[.:perl:start|Perl]] * [[.:bash:start|Bash]] * [[.:c:start|C]] * [[.:javascript:start|Javascript]] * [[.:html:start|HTML]] * [[.:asm:start|Assembly]] * [[.:xml:start|XML]] * [[.:xml:docbook:start|DocBook]] ===== Misc ===== * How to [[http://www.cpqlinux.com/patch.html|create and apply a patch]] using ''diff'' and ''patch''((The page gives instructions for GNU/Linux, but other than the path separator they would work for other Operating Systems.)) ==== True/False Values ==== //X = anything but zero// === Bash === 0 = True X = False === Python, C, PHP === 0 = False X = True