Something in the latest Apache …

Something in the latest Apache or PHP releases causes Spackle updates to fail. After much trouble-shooting I tracked it down to the way POST requests were formed by Spackle.
Originally each client would send a request to the server with the POST made up of a complete URL in the POST part, ie.

http://192.168.1.1/~spackle/client.php?action=update…..

instead of

action=update….

In client.sh, change the following:

echo -n “$server&action=update&data=” > content
to
echo -n “action=update&data=” > content

Spackle hasn’t working for months because of that. Must contact the author again.

Java Developer's Journal – Des …

Mention the latest design pattern and suddenly your peers will see you as a genius of software engineering, “…you see I have employed the Decorator pattern for this particular class…” While you’re fighting the urge to give them a good slap, allow me to let you into the big secret. There is none!

Java Developer’s Journal – Design Pattern Snobs