Felipe Gasper
Felipe Gasper
The SYNOPSIS suggests that this library only deals with certificates whose public key is RSA. I see what looks like ECC support, though, in the .xs file. Does this library...
``` > perl -Mblib -MCpanel::JSON::XS -MDevel::Peek -e'Dump( Cpanel::JSON::XS->new()->allow_nonref()->decode( q ) )' SV = PV(0x7f9e5c00c480) at 0x7f9e5c81d3c8 REFCNT = 1 FLAGS = (TEMP,POK,pPOK,UTF8) PV = 0x7f9e5bc093f0 "\303\203\302\251"\0 [UTF8 "\x{c3}\x{a9}"] CUR =...
Ruleguard, when I try `m["x"].Node.Is("Package")`, tells me that “Package is not a valid go/ast type name”. … but [it is](https://pkg.go.dev/go/ast#Package) … ? Thank you for ruleguard! I’m finding it useful.
It would be nice to be able to: - humanize byte counts according to a specified unit - discern the unit that Bytes/IBytes uses That way you could write `0.43...
Hello, Is it your intent that dns_pack() and dns_unpack() be undocumented? They’re useful, at least … I’d like to use them, if you’re willing to consider them a supported part...
Issue #18
``` > perl -MData::Dumper -MHTTP::Parser::XS -E'my $req = "GET / HTTP/1.0\r\nHost: haha.com\r\nFoo: épée\r\n\r\n"; utf8::upgrade($req); my %env; say HTTP::Parser::XS::parse_http_request($req, \%env); print Dumper \%env;' 51 $VAR1 = { 'REQUEST_URI' => '/', 'QUERY_STRING'...
The following fails when I plug it into contextcheck’s test suite: ``` package customcontext import ( "context" "time" ) var _ context.Context = &MyContext{} func f1(ctx context.Context) { passesContextTODO() //...
If you load the screen with locale set to Arabic, the date stuff will “jump” off to the left once it’s done.
``` mysql -e 'drop user ""' ``` The above, according to the docs, will fail if ANSI_QUOTES is enabled. (cf. https://dev.mysql.com/doc/refman/5.6/en/string-literals.html) It should work to change it to: ``` mysql...