Mika Tuupola

Results 228 comments of Mika Tuupola

HTTP method names are case sensitive. Even though the standardized request methods are by convention uppercase, techically `GET`, `get`, `gEt`and `GeT` are all valid but also different request methods. https://tools.ietf.org/html/rfc2616#section-5.1.1...

Thanks but I wont be merging this. There are a couple of problems. Main thing is that a PR should contain only one feature or bugfix. This should be four...

> Please consider putting some kind of warning, even if just a sentence, about the non-volatile nature of some registers so that it doesn't surprise anyone unnecessarily. Yeah, I have...

Yeah you might be correct. I remember I was able to revive an M5Stick by power cycling it and at the same repeatedly trying to put it to upload mode...

The english datasheet is an excellent find. Thanks! As a sidenote with original version you can control the power rails with the following: ```c axp192_ioctl(&axp, AXP192_DCDC1_SET_VOLTAGE, 3300); axp192_ioctl(&axp, AXP192_DCDC2_SET_VOLTAGE, 2275);...

Have not heard of glowfall before. This library implements mathematical byte by byte base conversion of arbitrary data. There is really only one way to do it. Standards such as...

Base62 encoding was not invented by me so there is nothing I can do.

It is intentional, the z compression does not apply to the final block. This is because the input string is [padded with 0x00](https://github.com/tuupola/base85/blob/2.x/src/Base85/GmpEncoder.php#L51-L55) to be multiple of 4 and we...

It is described at least in Adobe documents [Document management — Portable document format — Part 1: PDF 1.7](https://www.adobe.com/content/dam/acom/en/devnet/pdf/pdfs/PDF32000_2008.pdf) and [PostScript® LANGUAGE REFERENCE third edition](https://web.archive.org/web/20170218093716/https://www.adobe.com/products/postscript/pdfs/PLRM.pdf). The interesting parts are: _"If...

Just to be sure, problem exists only with PHP 5.X?