Skip to content

Instantly share code, notes, and snippets.

View adityavijay21's full-sized avatar
🔥
Cooking Up Chaos

Aditya Vijay adityavijay21

🔥
Cooking Up Chaos
View GitHub Profile
import os
os.environ["PHONEMIZER_ESPEAK_LIBRARY"] = "/usr/lib/libespeak-ng.so"
os.environ["PHONEMIZER_ESPEAK_PATH"] = "/usr/bin/espeak-ng"
import phonemizer
import re
import torch
from dotenv import load_dotenv
load_dotenv()
@adityavijay21
adityavijay21 / macOS SU Password Change.md
Last active May 2, 2024 10:24
macOS SU Password Change

macOS Admin Account Setup

Welcome to the Admin Account Setup guide! This README will assist you in configuring an admin account. Please ensure you have the necessary login credentials before proceeding.

Prerequisites

  • macOS System: Ensure you have a macOS system with admin privileges.
  • Access to Terminal: You'll need access to Terminal for executing commands.

Instructions

@adityavijay21
adityavijay21 / App.jsx
Last active May 2, 2024 16:57
Context API
import './App.css'
import './ChildC.jsx'
import {createContext} from "react";
import ChildC from "./ChildC.jsx";
const data = createContext()
const data1 = createContext()
function App() {
const age = 23;