Search results

  1. carmichael yames

    Python Generate (and download) JSON file from hosted site using server side python

    changing the JSON file requires have access to the server/file system where it is stored. It would be a matter of with open(pathtofile, 'w') as f: f.write(NEWDATA) reading the file (well if you have access to it server side) same code, but open file as 'r' instead, read up on file like objects...
  2. carmichael yames

    Python Paint dispencer software (making)

    find out the model name/number and lookup its software. install or figure out how to control the microprocessor, the manufacturer could have specs
  3. carmichael yames

    JavaScript How to addeventlistener for a variable referencing a static element without an ID attribute for video tag?

    This does NOT fire the event: <video id="bob" style="border: 3px solid red;" src="https://file-examples.com/storage/fe59cbbb63645c19f9c3014/2017/04/file_example_MP4_480_1_5MG.mp4"></video> <div onclick="playvid(this)" style="cursor:pointer; font-size:40px; border:1px solid green;" >...
  4. carmichael yames

    JavaScript link website to payment gateway

    paypal used to and likely still does provide a GET API, where you can get them to click a paypal link with your referral code and it will process your payment then redirect them back to your page, no coding necessary other than HTML <a> tag link. if you want to design your own payment page and...
  5. carmichael yames

    JavaScript How to addeventlistener for a variable referencing a static element without an ID attribute for video tag?

    the event doesn't fire for resizing the video tag, i reference the video tag with the variable A which I call dynamically in playvid() function. I have named an id in the video tag and then called videotagId.addeventlistener, but I wanted to try to reference this video tag without specifically...
Top Bottom