Jack
Jack
@x0a Thank you so much! You are saved my day!
Class `QrReader` placeed in the namespace `Zxing` So if you not use a composer, you should do like that: ```php $qrcode = new \Zxing\QrReader('tests/qrcodes/'. $file); // or use \Zxing\QrReader; $qrcode...
Certificate of `packagist.laravel-china.org` owned to `*.phphub.org`
That's mean you try to upload too large file (192Mb). You can do this: ```php ini_set('memory_limit', '250M'); ```
Maybe for someone will be usefull this code snipet ```php // temp file name $detectName = tempnam("/tmp", "detect"); // open image $detect = imagecreatefromjpeg($imageFile); if( ! $detect) { throw new...
@vr-mth Could you try like this: ``` char *spiDev = (channel == 0 ? spiDev0 : spiDev1); if ((fd = open (spiDev, O_RDWR)) < 0) return wiringPiFailure (WPI_ALMOST, "Unable to...
Downgrade to 1.0.6 fix this issue to me,
@madmartin Yes. First I downloaded the latest version, then I replaced xtensa-lx106-elf-gdb.exe file and I got an error `Decode faild` all the time. Then I downloaded the release 1.0.6, unpacked...
Why not, I can try. Here is I made support 'generate' method: https://github.com/jackkum/pdu/blob/master/pdu.js#L81 here supporting 'parseStatusReport': https://github.com/jackkum/pdu/blob/master/pdu.js#L116 and here 'parse': https://github.com/jackkum/pdu/blob/master/pdu.js#L176
```java SipAccountData sipAccount = new SipAccountData(); SipServiceCommand.setEncryption(appContext, true, "alias"); // identifer of current call int callId; // identifer of current account String accountId; BroadcastEventReceiver event = new BroadcastEventReceiver(){ @Override public...