Peter Bowen

Results 8 comments of Peter Bowen

I ran across this issue today and wanted to fill in the gap not covered for anyone else hitting the same issue. The structure described is an "otherName" as covered...

https://tools.ietf.org/html/rfc5891#section-3.1 explains the rules for comparing domain names. Whether the match is case sensitive or not depends on whether you are looking at U-labels or A-labels.

As a historical note, I was hacking on something similar a while ago, but never got around to integrating it with the gem. https://gist.github.com/pzb/5aba13a67bd9fa64b3769397c842889b is what I had. It is...

The three parameters align with the SMTP spec: MAIL -> Source RCPT -> Destinations.member DATA -> RawMessage.Data I'm working on a SMTP to SES proxy, so it makes sense to...

Hmm, I can't figure out how to reopen this; I closed it by mistake.

I'm sure it is loading the right libzbar: ``` irb(main):007:0> ZBar.ffi_libraries.map{|x|x.instance_variable_get(:@name)} => ["/usr/lib64/libzbar.so.0.2.0", "/usr/lib64/libzbar.so.0"] ``` ``` [user@ip-10-0-0-119 ~]$ ldd `which zbarimg` | grep zbar libzbar.so.0 => /usr/lib64/libzbar.so.0 (0x00007f625b520000) ``` If...

Sorry, I haven't been paying attention to this project. This is just a copy of the master RequestCore, which is now part of the AWS SDK for PHP: https://github.com/amazonwebservices/aws-sdk-for-php/tree/master/lib/requestcore

The full URL is `urn:isbn:9780307476463`. The scheme is `urn` and the relative-URL string is `isbn:9780307476463`. `isbn` is not a scheme. Another example URL is `arn:aws:ec2:us-east-1:4575734578134:instance/i-054dsfg34gdsfg38`. The scheme is `arn` and...