erwin solihin

Results 22 comments of erwin solihin

you can attach to on `load` event ```javascript $('#generer').on("click", function() { var linkText = $('#text').val(); var qrcode = new QRCode($("#qrcode")[0], linkText); $('#lien').attr('href', linkText) $(qrcode._el).find('img').on('load', function() { console.log(this.src); }) }); ```

work fine in my chrome Version 40.0.2214.111 m, try disable all extension.

maybe the browser is outdated, it work, see https://jsfiddle.net/8np0bkmr/ ![image](https://user-images.githubusercontent.com/760764/192000752-5950dc99-2660-4d3e-b34b-188958558d8b.png)

reverse `.sidebar.toggled` rules ``` @media (max-width:768px) { .sidebar { width: 0 !important; overflow: hidden; } .sidebar.toggled { width: auto !important; } } ```

it need more than "just add", but useful if just want to see the code. Original ```python try: f = open("demofile.txt") try: f.write("Lorum Ipsum") except: print("Something went wrong when writing...

issue #195 is for `IS_OP` and `CONTAINS_OP`, but maybe you read someone asking to fix, not fixing the following op code Unsupported opcode: JUMP_IF_NOT_EXC_MATCH Unsupported opcode: WITH_EXCEPT_START Unsupported opcode: RERAISE

yes I know, but I think it better to fix it in the Clappr core.

it can compiled using cygwin ``` $ make cc -Wall -std=c99 -c -o sockssrv.o sockssrv.c cc -Wall -std=c99 -c -o server.o server.c cc -Wall -std=c99 -c -o sblist.o sblist.c sblist.c:8:2:...

it is because `www.speedtest.net/speedtest-servers-static.php` only return server list in your country, need to change to ``` https://www.speedtest.net/api/js/servers?engine=js&search=[SEARCH_CRITERIA]&https_functional=true&limit=10 ```