Sudhanshu Gautam sudhanshu16
- Delhi, India
- Sign in to view email
- https://sudhanshug.com
View easy.js
// ==UserScript== | |
// @name Everything is easy | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match https://leetcode.com/problems* | |
// @grant GM_addStyle | |
// @run-at document-start | |
// ==/UserScript== |
View home.js
import React from "react"; | |
import { Container, Paper, Typography, Grid, Button, InputAdornment, FormControl, TextField, List, ListItem, ListItemText } from "@material-ui/core"; | |
import { fade, makeStyles } from '@material-ui/core/styles'; | |
import SearchIcon from '@material-ui/icons/Search'; | |
import './home.scss'; | |
import Select from 'react-select'; | |
import data from '../../data.json'; | |
import { withTranslation } from 'react-i18next'; |
View home.js
import React from "react"; | |
import { Container, Paper, Typography, Grid } from "@material-ui/core"; | |
import './home.scss'; | |
import Select from 'react-select'; | |
import data from '../../data.json'; | |
class Home extends React.Component { | |
devices = []; |
View split-device_title.py
#!/usr/bin/env python3 | |
import os | |
import difflib | |
import json | |
import yaml | |
data = {} |
View device_title.py
import os | |
import difflib | |
import json | |
data = {} | |
path = '/Users/captain/openwrt/target/linux/ar71xx' | |
vendors = [ |
View image.mk
# | |
# Copyright (C) 2006-2010 OpenWrt.org | |
# | |
# This is free software, licensed under the GNU General Public License v2. | |
# See /LICENSE for more information. | |
# | |
override TARGET_BUILD= | |
include $(INCLUDE_DIR)/prereq.mk | |
include $(INCLUDE_DIR)/kernel.mk |