Tuesday, December 27th, 2011
Recently I needed to test against an FTPS server. No big deal, I thought to myself, I’ll just set one up real quick. Boy did I end up having a hard time with that. Not because the task was actually hard but because there’s a bit of a general haziness about the whole idea of [...]
Also filed in API, CLI, ftp, ProFTPD, Security, Servers, Software Development, ssl, tls, Web Stuff
|
Tagged Debian, ftp, FTPS, ProFTPD, SSL, TLS
|
Permalink
|
Wednesday, June 8th, 2011
After signing up for a (free) account on tunnelbroker.net and creating a (free) tunnel with my ipv4 address as the endpoint I was able to easily configure my AirPort Extreme. View your tunnel, then click on “Example Configurations” and then “Apple Airport.” In TCP/IP prefs for my MacBooks Network/AirPort Preferences I have “Configure IPv6″ set [...]
This list… Know it… Live it… Love it… Via Via
Sunday, January 9th, 2011
Recently I found that it was taking appauling amounts of time to transfer files to/from my debian file server setup with netatalks AFP. I upgraded to the latest version to no avail, but this trick helped out quite a lot — http://www.netafp.com/tn003-slow-afp-read-performance-90/ Incidentally I believe, unscientifically, that it also helped my OnLive game latency quite [...]
Sunday, September 26th, 2010
in case anyone is curious… elockd-in-action
Thursday, September 23rd, 2010
I’ve been working on an erlang port of my php locking daemon in erlang (which is a more appropriate language for this kind of thing.) And I have it all tricked out (ok partially tricked out but hey it’s my first real erlang project and i’ve only spent 2 afternoons on it.) The api is [...]
Saturday, August 28th, 2010
It turns out that this is actually a tricky problem. It’s super easy to use the OpenSSH command line stuff via PHP when you have key based authentication set up, but it’s not at all easy to use when you want to go the user/pass route. This is for a couple of reasons: First you [...]
Friday, August 27th, 2010
I’ve had a need to use the PHP SSH2 PECL recently (working on making a product, at work, more efficient) And thought I would share some of the preliminary code. You can find it here: vpssh.phps The most interesting thing is not vpssh_core or it’s exec (though it’s good code) the really interesting thing is [...]
Tuesday, October 6th, 2009
If you’re ever in a situation where something is only happening intermittently, and only on a live server, and only while it’s under load… Lets say its not generating any error_log or stderr output, and you cant run it manually to reproduce… (we’ve all been in this situation) How do you get any debugging output [...]
Wednesday, September 16th, 2009
When working with user provided images in PHP you run into a problem. Lets say that you want to generate thumbnails of uploaded JPEGs for users. This is a fairly common use case where you would employ PHP and GD (the most prevalent php image extension.) But when you generate the new, smaller, image what [...]