Skip to content

Instantly share code, notes, and snippets.

View Wiper-R's full-sized avatar
🎯
Focusing

Shivang Rathore Wiper-R

🎯
Focusing
View GitHub Profile
We couldn’t find that file to show.
from discord.ext import commands, flags
import discord
bot = commands.Bot(command_prefix = '.')
class Flags(commands.Cog):
def __init__(self, bot):
self.bot = bot
@flags.add_flag('--name', type=str)
dict_ = {"User" :{"Name" : "SQWiperYT", "ID" : 10, "Other" : {"ID" : 1}}}
import json
class OurObject:
def __init__(self, /, **kwargs):
self.__dict__.update(kwargs)
def __repr__(self):
keys = sorted(self.__dict__)
ODMzNzMzMDgxMTQzMDUwMjkw.YH2ocA.2PMYaHogtX4ArXnipo-M7Dw00AY
#include <bits/stdc++.h>
using namespace std;
string add_binary(int a, int b)
{
int carry = 0;
string ans = "";
while (a > 0 && b > 0)
{
if (a % 2 == 0 && b % 2 == 0)
from PIL import Image, ImageDraw, ImageFont
import numpy
level = 1
rank = 5
final_xp = 1000
xp = 400
user_name = "WiperR"
discriminator = "#3131"
import inputVariants from "./input";
import buttonVariants from "./button";
import { useForm } from "react-hook-form";
import { zodResolver } from "@hookform/resolvers/zod";
import signUpSchema, { SignUpSchema } from "@/lib/validation/SignUp";
import { ariaInvalid } from "@/lib/utils";
import { trpc } from "@/app/_trpc/client";
import { useEffect } from "react";
const SignUp = () => {