Archive for June, 2007

Asterisk Password Recovery

If you’ve ever misplaced, or forgotten to document, one of your passwords stored in an application, Asterisk Key is a free and invaluable tool.

Asterisk Key reveals saved passwords from most Windows apps and even Internet Explorer (which is probably a good reason to switch to Firefox!)

It doesn’t work on everything, but it’s worth a shot!

PHP: Making Credit Card Numbers Human-Readable

If you’ve ever tried to enter a 16 digit credit card number all in one blob, you’ll know it’s hard. To make life easier for the person responsible for processing online credit card orders, I needed to split up the credit card number and insert a space every 4 characters.

I’m not very schooled up on RegEx, and after spending ages searching for how to do it, I came across this:

<?php
echo implode(' ',str_split($credit_card_number,4));
?>

Hopefully it saves someone else some time!

Comments (1)

Control + Alt + Del in RDC

To use Control + Alt + Delete in a Remote Desktop Connection terminal, use Ctrl + Alt + End instead.

Creative Commons Attribution-ShareAlike 2.0 UK: England & Wales
Creative Commons Attribution-ShareAlike 2.0 UK: England & Wales