From usr/share/dict/words
- abaxial
- abaxile
- abox
- abrasax
- abraxas
| // | |
| // main.swift | |
| // timestamp | |
| // | |
| // Created by Huw Rowlands on 24/3/18. | |
| // Copyright © 2018 Huw Rowlands. All rights reserved. | |
| // | |
| import Foundation |
| #!/bin/bash | |
| #Do until success... | |
| until $*; do | |
| sleep 0.1; | |
| done |
| // | |
| // NSDate+SunriseAndSunset.swift | |
| // Codiad | |
| // | |
| // Created by Huw Rowlands on 26.1.2016. | |
| // Copyright © 2016 Huw Rowlands. All rights reserved. | |
| // | |
| import Foundation | |
| import CoreLocation |
| #Algorithm for working out the validity of an Australian Tax File Number. | |
| # | |
| #The algorithm is 'public domain', according to an ANAO report in 1999: Management of Tax File Numbers by the Australian National Audit Office, 1999 (ISBN 0 644 38866 8) | |
| # | |
| #See: http://bioinf.wehi.edu.au/folders/fred/tfn.html | |
| # | |
| #An example TFN: 123 456 782 | |
| WEIGHTS = [1, 4, 3, 7, 5, 8, 6, 9, 10] |
| %Make date format of \today command Australian. | |
| %sc and old style figures | |
| \renewcommand{\today}{ | |
| \oldstylenums{\number\day}\space | |
| \ifcase\month\or | |
| \sc{January}\or \sc{February}\or \sc{March}\or \sc{April}\or | |
| \sc{May}\or \sc{June}\or \sc{July}\or \sc{August}\or \sc{September}\or | |
| \sc{October}\or \sc{November}\or \sc{December} | |
| \fi\space | |
| \oldstylenums{\number\year} |
| % XeLaTeX can use any Mac OS X font. See the setromanfont command below. | |
| % Input to XeLaTeX is full Unicode, so Unicode characters can be typed directly into the source. | |
| % The next lines tell TeXShop to typeset with xelatex, and to open and save the source with Unicode encoding. | |
| %!TEX TS-program = xelatex | |
| %!TEX encoding = UTF-8 Unicode | |
| \documentclass[12pt]{article} | |
| \usepackage{geometry} % See geometry.pdf to learn the layout options. There are lots. |