Sina Bahrami

Results 28 comments of Sina Bahrami

Any update to PDF417 support? It's becoming an important barcode format. Thanks.

This is a bit of a brutal hack, but it seems to have worked for me: Find the following file: https://github.com/JonnyD/AirbnbSDK/blob/master/src/AirbnbSDK/HttpClient/HttpClient.php Replace line 124: `$response = $serializer->deserialize($contents, $deserializeTo, 'json');` with:...

Thanks for the code snippet. I have a very simple, flat tree and being able to SHIFT+select is wonderful. My next challenge is to try to replicate multi-select on mobile...

@benediktcarda This seems to a limitation of the Zxing platform that was ported to PHP here. Zxing can also only extract one bar code per image.

This seems to be the "official" CDN repo: [https://www.jsdelivr.com/package/npm/face-api.js](https://www.jsdelivr.com/package/npm/face-api.js) But @vladmandic's fork seems to be more recent.

Any news on this? Azure uses Oauth2, and I (foolishly) thought it was easy enough to extend a provider class to cover it. I'm using 3.0, but have gotten nowhere....

After I wrote the comment, I had one more go at it and managed to set it up, was actually pretty straightforward. Your example template in the 3.0 documentation is...

If you're using jQuery, have a look at the [jquery-appear plug-in](https://github.com/morr/jquery.appear). It will achieve what you're looking for.

Try something like this: ``` // Enable element's appearance to be a triggering event $.appear('.progress-bar-class-name'); // Set up a listener to the load-more-button appearing $('.progress-bar-class-name').on('appear', function(event, all_appeared_elements) { //Put your...

This may not be the right forum for it, perhaps ask a question on StackOverflow and list what you tried and what errors you're getting. Feel free to tag me...