Dilberts

0 comments
Dilbert and user interface

Dilbert and incompetenc

Dilbert and technical manual

replace space in the filenam in linux using mv

0 comments
To replace the space in the middle of the filename in linux you can use "mv"
for f in *; do file=$(echo $f | tr A-Z a-z | tr ' ' _) [ ! -f $file ] && mv "$f" $file done

Gathering requirements

0 comments

jquery .text garbage bug

0 comments
There is a small bug in IE that makes $.text() return garbage text at end, in case you have a bug that you cannot nail down, debug the problem using: alert(encodeURIComponent($.text(...))); that will show any hidden character. More information about encodeURIComponent: http://xkr.us/articles/javascript/encode-compare/

svnsync: PROPFIND of '....': Server certificate verification failed: issuer is not trusted

3 comments
One of my friends add a SSL in his SVN, and I got Server certificate verification failed: issuer is not trusted
# svnsync --non-interactive sync
svnsync: PROPFIND request failed on '.....'
svnsync: PROPFIND of '....': Server certificate verification failed: issuer is not trusted ()
To fix, run svnsync without "--non-interactive", that will prompt you to store the cert (p)ermanently in the .subversion directory. Example:
# svnsync sync 
Error validating server certificate for '........':
 - The certificate is not issued by a trusted authority. Use the fingerprint to validate the certificate manually!
Certificate information:
 - Hostname: .....
 - Valid: from ....
 - Issuer: .....
 - Fingerprint:
(R)eject, accept (t)emporarily or accept (p)ermanently? p
Authentication realm: <....> ....