Skip to content

Instantly share code, notes, and snippets.

View devadathanmb's full-sized avatar

Devadathan M B devadathanmb

View GitHub Profile
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@devadathanmb
devadathanmb / script.js
Last active September 9, 2023 09:49
Leetcode change font
// ==UserScript==
// @name Change LeetCode Font
// @namespace http://yourwebsite.com
// @version 1.0
// @description Change the font in LeetCode code editor to JetBrains Mono Nerd Font
// @match https://leetcode.com/*
// @grant none
// ==/UserScript==
(function() {
@devadathanmb
devadathanmb / Example.jsx
Created May 14, 2023 04:39
Mukltipage form example
import React, { useState } from 'react';
const RegistrationForm = () => {
const [currentPage, setCurrentPage] = useState(1);
const [formData, setFormData] = useState({
name: '',
email: '',
password: '',
// Add more form fields as needed
});