Technical Support
I recently had a problem streaming a video from Amazon Prime on my XBOX360. Specifically, we rented a move from Amazon Prime, but when we tried to play it in the…
I recently had a problem streaming a video from Amazon Prime on my XBOX360. Specifically, we rented a move from Amazon Prime, but when we tried to play it in the…
If you want to get the certificate information from a remote server that is using SSL (e.g. HTTPS, LDAPS, etc.), then the following unix* command will tell you about what that…
At some point, if you use perl enough, you'll encounter the following error message: Use of uninitialized value in concatenation (.) or string at ./progname.pl line #. While it does not…
A trim() function should be native to perl, but since it isn't, this will have to do. sub trim { my @vals=@_; for (@vals) { s/^s+//; s/s+$//; } return wantarray ?…