Skip to content

kingNomad3/noteCVM

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

111 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Notes qui resume la plus part des elements appris dans mon parcours au CVM

html

live server

pour ouvrire le serveur 
php -S localhost:8000

python

version 3.9
Pour py 6
dans cmd pip install pyside6

pour installer numpy 
dans cmd pip install numpy

pip install matplotlib

cheat sheet

Markdown Cheat Sheet

Headers

  • # This is an <h1> tag
  • ## This is an <h2> tag
  • ### This is an <h3> tag
  • #### This is an <h4> tag
  • ##### This is an <h5> tag
  • ###### This is an <h6> tag

Emphasis

  • *This text will be italic* or _This will also be italic_
  • **This text will be bold** or __This will also be bold__
  • ~~This text will be strikethrough~~

Lists

Unordered

  • * Item 1
  • * Item 2
    • * Item 2a
    • * Item 2b

Ordered

  1. Item 1
  2. Item 2
  3. Item 3
    • Item 3a
    • Item 3b

Images

  • ![alt text](image.jpg)

Links

  • [title](https://www.example.com)

Blockquotes

  • > Blockquote

Inline code

  • This is an inline code: \``

Code Blocks

This is a code block

Horizontal Rule

Escape Markdown *This text is escaped from Markdown formatting *\

Headers

  • # H1 for top-level titles
  • ## H2 for major headings
  • ### H3 for subheadings
  • #### H4 to ###### H6 for additional subheading levels

Emphasis

  • *Italic* or _Italic_ for italic text
  • **Bold** or __Bold__ for bold text
  • ~~Strikethrough~~ for strikethrough text

Lists

Unordered Lists

  • Use dashes -, asterisks *, or plus signs + interchangeably:
    • - Item 1
    • + Item 2
    • * Item 3

Ordered Lists

  • Number followed by a dot for sequential steps:
    1. First item
    2. Second item
    3. Third item

Links and Images

  • [Link text](URL) for hyperlinks
  • ![Alt text for image](image-url.jpg) for images

Blockquotes

  • Use > for block quotes:

    Quote text

Code Formatting

Inline Code

  • Use backticks for inline code: `code`

Code Blocks

  • Use triple backticks for blocks of code or specify a language:
    console.log('Hello, world!');


Tables

Use pipes | and dashes - to create tables:

| Header 1 | Header 2 |
| -------- | -------- |
| Cell 1   | Cell 2   |
| Cell 3   | Cell 4   |

Task Lists
Create task lists with dashes and brackets:
[ ] To-do item 1
[x] Completed item
Automatic Linking
URLs and email addresses can be automatically linked without explicit Markdown:
<http://www.example.com>
<example@example.com>
Horizontal Rules
Use three or more dashes ---, asterisks ***, or underscores ___:
---
Escape Characters
Use the backslash \ to escape Markdown characters:
\*Not italic*\
GitHub Flavored Markdown (GFM)
GFM provides additional features like emoji support :emoji:, tables, and more.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors