Skip to content

Instantly share code, notes, and snippets.

View Rahulraj31's full-sized avatar
✌️
Grinding

Rahul Raj Pandey Rahulraj31

✌️
Grinding
View GitHub Profile
@Rahulraj31
Rahulraj31 / Alternative Square Pattern.txt
Last active August 9, 2021 12:47
CodeChef Alternative Square Pattern C++ Solution Problem Code:SQALPAT
The Following code is the C++ solution of the CodeChef's Alternative Square Pattern which is the part of DSA Leaning Series under
Easy Problems to Get Start
Contest Code:CCSTART2 Problem Code:SQALPAT
Link-https://www.codechef.com/CCSTART2/submit/SQALPAT
-------------------------------------------------------------------------------------------------------
#include <iostream>
using namespace std;
from tkinter import *
from pytube import YouTube
from tkinter.filedialog import *
from tkinter.messagebox import *
from functools import partial
root = Tk()
root.geometry('950x370')
root.title("RRP Downloader")
@Rahulraj31
Rahulraj31 / QR Code Generator.py
Created May 1, 2020 07:18
Generates Qrcode for any link or text. Coding done in Python using tkinter to give GUI support
import pyqrcode as df
from tkinter import *
from tkinter.filedialog import *
def generate():
qr=entry.get()
destination = askdirectory()
filename= filename = asksaveasfilename(filetypes=[('PNG', '.png'),('SVG','.svg')
,('All files', '*')], defaultextension='.png')
a=df.create(qr)