Skip to content

Instantly share code, notes, and snippets.

View deidine's full-sized avatar
🤑

deidine/cheigeur deidine

🤑
View GitHub Profile
to download mega file https://github.com/tonikelope/megabasterd
➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖
Interview questions
https://drive.google.com/drive/folders/1-xmLdiHEtepyVeam-z2j3KdhZWPfCmL4
➖➖➖➖➖➖➖➖➖➖
Military osint
https://mega.nz/folder/SN8GkCzC#XlTq1bMgBGCaKQzGeQyivA
➖➖➖➖➖➖➖➖➖➖
🌹Ethical Hacking Masterclass🥀
@deidine
deidine / DevOps.txt
Last active July 9, 2025 11:51
DevOps
##############deployement
sudo service ssh status or sudo systemctl status ssh #Check if the SSH service is running
sudo service ssh start or sudo systemctl start ssh
sudo systemctl enable ssh
ssh <username>@<server_ip>
# copy file from server
scp -r deidine@192.168.1.33:/home/deidine/Desktop/install.sh ./Desktop/
# if you want to use pair key to ssh server
# 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
@to us rsa ssh connection to github
ssh-keygen -t ed25519 -C "cheigeurdeidine@gmail.com" #genrate paire key
eval "$(ssh-agent -s)" #to start agent
ssh-add deidine #add file privte key to agent
cat deidine.pub #paste public key in github
ssh -T git@github.com #verify connection to github
git remote set-url origin git@github.com:deidine/project.git #this to set url repo using ssh
# in seting add key and check [x] Allow write access to let you push
#Add the SSH Key to the Authorized Keys to let machine acces to server via ssh
#vim .ssh/authrosied_key
@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 27, 2025 16:28
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