Skip to content

Instantly share code, notes, and snippets.

View cryskram's full-sized avatar
🐛
buggy

Vageesh cryskram

🐛
buggy
View GitHub Profile
@cryskram
cryskram / Navbar.jsx
Created September 14, 2023 18:17
tailwindCSS navbar
import React from "react";
import Link from "next/link";
import { auth } from "../config/firebase";
import { useRouter } from "next/router";
import { useState } from "react";
export const Navbar = ({ user }) => {
const router = useRouter();
const [active, setActive] = useState(false);
@cryskram
cryskram / num_convert.cpp
Created January 21, 2022 06:14
A Program to convert Binary to Decimal
#include <iostream>
#include <math.h>
int main()
{
long long num, dec = 0, raised = 0, rem;
std::cin >> num;
while (num != 0)
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from getpass import getpass
username = input('whitehowie7@gmail.com')
password = getpass('#########')
driver = webdriver.Chrome()