ssh -f -N -L 1234:localhost:80 user@Remote_Machinefor web-server.
Mostly work related stuff which I would've entered into my "Log book". Instead of hosting it on an intranet site, outsourcing the hosting to blogger!
Thursday, December 27, 2007
ssh tunnelling command-line
The commandline for ssh tunnelling, taken from http://www.brandonhutchinson.com/ssh_tunnelling.html
Sunday, December 09, 2007
SHA1 sum check
Just like the MD5 checksum, SHA1 checksum can be done with
sha1sum filename
Used with Fedora iso downloads, for example.
Tuesday, December 04, 2007
combating spam from feedback forms
One more technique to supplement the one I've described earlier - check for the string http:// and don't email the form if present! In asp, that translates to
if Instr(strString,"http://") then
Response.Write " -- "
else
Mail.Send
end if
Subscribe to:
Posts (Atom)