Lexicon
⌘K
Explore
ExploreGuidesNotes
WriteMy LibraryBooks
Sign in
Browse

Bug Bounty

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

Databases

  • Database indexing basics

DevOps

  • How environment variables work

Discussions

  • TCP somethin
  • TCP somethin
  • TCP somethin
  • TCP somethin
  • TCP somethin
  • TCP somethin
  • TCP somethin
  • TCP somethin
  • TCP somethin
  • TCP somethin
  • What's the tcp ip

Git

  • Git commands I use every day

JavaScript

  • JavaScript async and await

Kotlin

  • Kotlin coroutines overview

Linux

  • Useful Linux filesystem commands

Performance

  • How caching improves application performance

React

  • React component design principles

Reference

  • Markdown formatting reference

Software Craft

  • Clean code naming practices
  • Debugging checklist

SQL

  • SQL joins explained

Swift

  • SwiftUI state management

Web

  • API pagination patterns
  • Understanding HTTP status codes
New noteSuggest a guide

Lexicon

a personal knowledge base

← Back to note

Version history

No earlier versions yet — history builds up each time this note is edited.

Current version1 of 1

Reference

Markdown formatting reference

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

- [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.