Sterling Hanenkamp

Results 21 issues of Sterling Hanenkamp

The environment for Adium may be a little too squeaky clean or something. If I write a script like this: ``` #!/usr/bin/perl system('echo foo >> /tmp/adium-speak-chat.log'); ``` I never get...

I have this piping to a script that just logs to a file for testing and every time the event is triggered, I'm seeing multiple calls to the script. Currently...

Sorry if this already exists as a feature and I'm just not finding it: It would be helpful if there were a way to switch off returning a non-zero exit...

I want to use this library in a situation where it would be better to save the output directly to an `io.Writer` than to be forced to save directly to...

I'm not really sure this is a bug, but I recently discovered that if you build a polygon from a set of points, you need to be careful to make...

The various Database methods currently return interfaces rather than structs, but Golang best practice indicates that returning structs is best. Consider the following situation where I want to wrap the...

I have a project where it would be nice to have a set of services that act as a sort of template for another set of services. For example, I...

improvement

I happily discovered that the `multipart/form-data` handling here is close to what you can do with LWP in Perl. However, while something like this will work fine: ```perl6 my $req...

If I build an HTTP::Response object that places a Buf in $.content, the .Str method will fail with the following exception: Cannot use a Buf as a string, but you...