RunItYourself

Free code snippets and tools you can run yourself!
QR Code Generator
Generate QR codes for a URL or different common actions.
OPTION 1: Run yourself in Google Colab
Google Colab is a free online computer that runs on securely on Google's servers. No downloads and no installations required!
Just select any options and hit the play button to run the tool!
OPTION 2: Run it on your local computer (requires Python)
# Enter the desired URL or action on the right -->
# <-- Click the play button to run
# This work is licensed under CC BY-NC-SA 4.0
# QR Code options!
!pip install --quiet qrcode
qr_code_action = "URL" #@param ["URL", "Email", "SMS", "Phone", "Geo location"]
url = "https://www.google.com" #@param {type:"string"}
email = "example@example.com" #@param {type:"string"}
sms = "+1234567890" #@param {type:"string"}
phone = "+1234567890" #@param {type:"string"}
geo_location = "40.7128,-74.0060" #@param {type:"string"}
# Import necessary libraries!
import qrcode
from google.colab import files
... #some code hidden ...
Click here to show all code!
Request new features or report bugs at reddit.com/r/runityourself