Skip to content

Instantly share code, notes, and snippets.

View deidine's full-sized avatar
🤑

deidine/cheigeur deidine

🤑
View GitHub Profile
# pip install pytube
# Name: pytube
# Version: 15.0.0
from pytube import YouTube
from pytube import Playlist
SAVE_PATH = "C:\\Users\\Republic Of Computer\\Videos\\data_structure" #to_do
@config git
git config --global user.name "Firstname Lastname"
git config --global user.email "your.email@example.org"
@to push code to remote repositry
git init
git add .
git commit -m "Add foldername"
git branch -M main
git remote add origin https://github.com/deidine/project.git
@deidine
deidine / framework_error.txt
Last active May 23, 2024 16:29
this gist is for problem solved in differ language and framwork
/*
######spring boot#####
you should add dependecy if existe in this path C:\Users\Republic Of Computer\.m2\repository and search for file that
have extension .pom
______1____
@SpringBootApplication(scanBasePackages={"com.deidine.start.repository.EmployeeRepository"})
or
@ComponentScan({"com.deidine.start.repository.EmployeeRepository"})
if error is
Action:
@deidine
deidine / framework.txt
Last active January 20, 2024 07:51
this is gist is for begening in framework
###################################
@react js
npx create-react-app my-app
cd my-app
npm start
npm install pour installer les pakage
npm install -g npm-check-updates #pour voir si il'ya nouvelle update in npm
npm install --legacy-peer-deps #if you have some new dependacy
npm install --force
@deidine
deidine / vim.txt
Last active April 6, 2024 09:16
this file for vim commeands
#my own reaserch
1) 0 and ^ go to the beginning of the line.
2) $ goes to the end of the line.
3) 0 goes to the beginning of a word, w goes to the next word, e goes to the end of the word.
4) d$ deletes the entire line; cc and dd for deleting lines; x for cutting one character.
dw deletes a single word; 3d deletes 3 lines.
5) f "the char you want" goes to a specific character in the line. If you want to go to another character, use ; for forward and , for backward.
5-1) F "the char you want" goes back to a specific character in the line.
6) t "the char you want" goes to a specific character in the line.
6-1) T "the char you want" goes back to a specific character in the line.
@deidine
deidine / mylinks.txt
Last active March 3, 2024 14:48
this gist is for my random links