This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"workbench.colorTheme": "Night Owl", | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnPaste": true, | |
"editor.formatOnSave": true, | |
"editor.tabSize": 2, | |
"editor.fontSize": 18, | |
"editor.fontFamily": "'Fira Code', Menlo, Monaco, 'Courier New', monospace", | |
"editor.fontLigatures": true, | |
"extensions.ignoreRecommendations": true, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Fragment } from 'react'; | |
import PropTypes from 'prop-types'; | |
import classNames from 'classnames'; | |
import Select, { AsyncCreatable, Async } from 'react-select'; | |
import { withStyles } from '@material-ui/core/styles'; | |
import Typography from '@material-ui/core/Typography'; | |
import TextField from '@material-ui/core/TextField'; | |
import Paper from '@material-ui/core/Paper'; | |
import Chip from '@material-ui/core/Chip'; | |
import MenuItem from '@material-ui/core/MenuItem'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { NextApiResponse, NextApiRequest } from "next"; | |
import request from "request-promise"; | |
import url from "url"; | |
import cheerio from "cheerio"; | |
import { IMDB_URL, IMDB_HOST } from "../../../constants"; | |
import { ListData } from "../../../types"; | |
const isDev = process.env.NODE_ENV === "development"; | |
export default function (req: NextApiRequest, res: NextApiResponse) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
########## | |
# Tweaked Win10 Initial Setup Script | |
# Primary Author: Disassembler <[email protected]> | |
# Modified by: alirobe <[email protected]> based on my personal preferences. | |
# Version: 2.20.2, 2018-09-14 | |
# Primary Author Source: https://github.com/Disassembler0/Win10-Initial-Setup-Script | |
# Tweaked Source: https://gist.github.com/alirobe/7f3b34ad89a159e6daa1/ | |
# Tweak difference: | |
# | |
# @alirobe's version is a subset focused on safely disabling telemetry, some 'smart' features and 3rd party bloat ... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
IDM Cleaner.bat | |
:: IDM Registry Cleaner | |
:: Completely cleans registry of all IDM fake serial leftovers | |
@ECHO OFF | |
@TITLE IDM Registry Cleaner | |
@COLOR 0E | |
@ECHO :: IDM Registry Cleaner | |
@ECHO :: Compeletely cleans registry of all IDM fake serial leftovers | |
@ECHO. |