mkdocs
This commit is contained in:
parent
f39ef93733
commit
1eb08a10e2
@ -19,5 +19,13 @@ MONGODB
|
||||
ACCESS microsoft
|
||||
|
||||
#ECRIRE NOTES PYTHON
|
||||
python3 -m venv nom_de_dossier : commande pour créer l'espace virtuel
|
||||
|
||||
|
||||
1. gérer l'environement virtuel
|
||||
2. activation espace
|
||||
3. mettre à jour pip
|
||||
4. installation de module
|
||||
5. verification de librairie : pip freeze
|
||||
6. echo notesvenv > .gitignore
|
||||
7. git add README.md .gitignore requirements.txt
|
||||
8. git commit -m "setup python devenv" && git push
|
||||
|
||||
31
Notes/docs/daily/2026-01-23.md
Normal file
31
Notes/docs/daily/2026-01-23.md
Normal file
@ -0,0 +1,31 @@
|
||||
#CONTINUATION SQL
|
||||
|
||||
Pragma commande qui permet de tout faire
|
||||
|
||||
TESTER LE FOREIGN KEY =
|
||||
SELECT o.*
|
||||
FROM EMPLOYEE e
|
||||
JOIN ORDINATEUR o ON e.pc = o.id
|
||||
WHERE e.id = 1;
|
||||
|
||||
o.* : tout le champ, e.pc : le value de foreign key = o.id : value de l'ordi dans id, WHERE e.id = 1 cherche le value 1. (enfin je crois)
|
||||
|
||||
Il ya toujours un base de données
|
||||
|
||||
SQL mysql mariadb la base de données
|
||||
pgsql postgres sql <- plus performant
|
||||
MONGODB
|
||||
|
||||
ACCESS microsoft
|
||||
|
||||
#ECRIRE NOTES PYTHON
|
||||
python3 -m venv nom_de_dossier : commande pour créer l'espace virtuel
|
||||
|
||||
1. gérer l'environement virtuel
|
||||
2. activation espace
|
||||
3. mettre à jour pip
|
||||
4. installation de module
|
||||
5. verification de librairie : pip freeze
|
||||
6. echo notesvenv > .gitignore
|
||||
7. git add README.md .gitignore requirements.txt
|
||||
8. git commit -m "setup python devenv" && git push
|
||||
4
Notes/docs/daily/README.md
Normal file
4
Notes/docs/daily/README.md
Normal file
@ -0,0 +1,4 @@
|
||||
#Daily notes
|
||||
|
||||
Here I will deposit my daily notes:
|
||||
-[2026-01-23.md](./2026-01-23.md)
|
||||
6
Notes/docs/index.md
Normal file
6
Notes/docs/index.md
Normal file
@ -0,0 +1,6 @@
|
||||
# Welcome to KazyDocs
|
||||
|
||||
This is Kazy's documentation:
|
||||
|
||||
- [Les Notes du jour](daily/README.md)
|
||||
- [Les infos secret-défense]
|
||||
7
Notes/mkdocs.yml
Normal file
7
Notes/mkdocs.yml
Normal file
@ -0,0 +1,7 @@
|
||||
site_name: KazyDocs
|
||||
nav:
|
||||
- Home: index.md
|
||||
- Daily:
|
||||
- README: daily/README.md
|
||||
- 23Janvier: daily/2026-01-23.md
|
||||
- Tips: tips/
|
||||
Loading…
x
Reference in New Issue
Block a user