User:Endofexe
This is an old revision of this page, as edited by Endofexe (talk | contribs) at 21:53, 29 May 2015. It may differ significantly from the current revision. |
Captcha help for Mac OS X
Those running Mac OS X (Darwin Unix) will find that the Captcha prompt given to create an account, namely:
date -u +%F | sha1sum | head -c8; echo
will not execute correctly. Those less familiar with Unix/Linux commands may be stumped as to how to proceed.
The reason for this is that Mac does not have the sha1sum
command; instead, use openssl sha1
, like so:
date -u +%F | openssl sha1 | head -c8; echo