Skip to content

Instantly share code, notes, and snippets.

View XronTrix10's full-sized avatar
🏎️
Getting better everyday

Xron Trix XronTrix10

🏎️
Getting better everyday
View GitHub Profile
@XronTrix10
XronTrix10 / ESLINT9_NEXTJS_V15.md
Last active December 18, 2024 19:25
Set up ESlint 9 for Next.js 15 with Typescript and TailwindCSS

Set up ESlint 9 for Next.js 15 with Typescript and TailwindCSS

Install dependencies

Using yarn

yarn add --dev eslint-plugin-react @typescript-eslint/parser @typescript-eslint/eslint-plugin eslint-config-next eslint-plugin-jsdoc eslint-plugin-tailwindcss husky
@XronTrix10
XronTrix10 / snippets.md
Last active December 10, 2024 05:02
VSCODE Snippet for React/Next.js in TypeScript

Create typescriptreact.json, and paste the below

{
	"Typescript React Function Component": {
		"prefix": "fc",
		"body": [
			"import type { JSX } from 'react';",
			"",
			"/**",
@XronTrix10
XronTrix10 / ESLINT_PRETTIER_NEXTJS_V14.md
Last active December 18, 2024 18:43
Set up ESlint and Prettier for Next.js with Typescript and TailwindCSS

Set up ESlint and Prettier for Next.js 14 with Typescript and TailwindCSS

Create Next App with starter template ( Last Version of Next 14 )

npx [email protected] --ts --tailwind --app --src-dir --use-yarn --eslint

Install Dev Dependencies

@XronTrix10
XronTrix10 / gen_token_pickle.py
Created July 15, 2023 16:38
A Python Snippet To Generate Google token.pickle From credentials.json
import os
import pickle
from google.auth.transport.requests import Request
from google_auth_oauthlib import flow as google_auth_flow
# Set the path to your client_secret.json file
client_secret_file = "<PATH_TO_CREDENTIALS.JSON>"
# Check if token.pickle file exists. If not, create one.
if not os.path.exists('token.pickle'):