Lexicon
⌘K
Explore
ExploreGuidesNotes
WriteMy Library
Sign in
Browse

Networking

  • OSI Model
  • TCP vs UDP
  • TCP/IP Model
  • Layer 2 & Layer 3 Networking

Programming

  • Start Here — How to Solve a Problem
  • From if/else to DSA — The Whole Path
  • Problem Solving
  • DSA Practice — Learn by Solving
  • C Programming
  • Python

Bug Bounty

  • Only Bug Bounty Checklist You'll Ever Need!!!
  • Only Bug Bounty Checklist You'll Ever Need!!! V2

My Notes

  • Python Conditional Statements - The Complete Breakdown
  • Python Data Types - The Complete Breakdown
  • Python Dictionaries - The Complete Breakdown
  • Python Exception Handling - The Complete Breakdown
  • Python Functions - The Complete Breakdown
  • Python Lists vs Arrays — The Real Story
  • Python Loops - The Complete Breakdown
  • Python OOP - The Complete Breakdown
  • The f Thing in Python - f-strings

Python

  • Python String Manipulation Functions - Full Reference
New noteSuggest a guide

Lexicon

a personal knowledge base

Reference

Markdown formatting reference

scorpionxdevUpdated 7/11/2026 · 1 min read · 0 views
PDFHistory

A quick reference for GitHub-Flavored Markdown. The rendered output is on the left in your head; the source is below.

Headings

# H1
## H2
### H3

Emphasis

*italic* or _italic_
**bold**
~~strikethrough~~
`inline code`

Lists

- unordered
- item
  - nested with two spaces

1. ordered
2. item

Links and images

[link text](https://example.com)
![alt text](image.png)

Code blocks

Fence with three backticks and always add a language tag for syntax highlighting.

Tables

| Column | Column |
| --- | --- |
| cell | cell |

Add colons in the divider row to align: :--- left, :---: center, ---: right.

Blockquotes and rules

> a quoted line

---

Task lists

Reading progress0%
scorpionxdev@scorpionxdev
- [x] done - [ ] not done

Escaping

Put a backslash before a character to show it literally, for example * renders a real asterisk instead of starting italics.

0 comments

Sign in to join the discussion.