Skip to content

Instantly share code, notes, and snippets.

@inmate37
Last active June 1, 2018 14:22
Show Gist options
  • Save inmate37/ed6cf9d26ca038784d79281dcbdc4246 to your computer and use it in GitHub Desktop.
Save inmate37/ed6cf9d26ca038784d79281dcbdc4246 to your computer and use it in GitHub Desktop.
Template for markdown syntax
---

# Heading 1
## Heading 2
### Heading 3

Heading 1

Heading 2

Heading 3


Text
`Code`
~~Mistake~~
*Italic*
**Bold**

Text

Code

Mistake

Italic

Bold


| Title                       | Genres          | Release year    | Top |
|:----------------------------|:---------------:|:---------------:|----:|
| Mass Effect 3               | RPG, Action     | 2012            | 1   |
| Dragon Age: Inquisition     | RPG, Action     | 2014            | 2   |
| Fallout 4                   | RPG, Open world | 2015            | 3   |
| The Elder Scrolls 5: Skyrim | RPG, Open world | 2011            | 4   |
Title Genres Release year Top
Mass Effect 3 RPG, Action 2012 1
Dragon Age: Inquisition RPG, Action 2014 2
Fallout 4 RPG, Open world 2015 3
The Elder Scrolls 5: Skyrim RPG, Open world 2011 4

![Cadet corps logo](https://avatars3.githubusercontent.com/u/34916330?s=400&u=0199c283e43e5ec58dbccbea6b54e84516ea5245&v=4)

Cadet corps logo


```python
class A:
    def __init__(self, *args, **kwargs) -> None:
        self.__number: int = 0

    def _set(self, value: int) -> None:
        self.__number = value

    def _get(self) -> int:
        return self.__number
```
class A:
    def __init__(self, *args, **kwargs) -> None:
        self.__number: int = 0

    def _set(self, value: int) -> None:
        self.__number = value

    def _get(self) -> int:
        return self.__number

<details>
    <summary>FizzBuzz (click me)</summary>

        for i in range(1, 101):
            if (i % 5 == 0) and (i % 3 == 0):
                print('FizzBuzz')
            elif (i % 3 == 0):
                print('Fizz')
            elif (i % 5 == 0):
                print('Buzz')
            else:
                print(i)

</details>
FizzBuzz (click me)
    for i in range(1, 101):
        if (i % 5 == 0) and (i % 3 == 0):
            print('FizzBuzz')
        elif (i % 3 == 0):
            print('Fizz')
        elif (i % 5 == 0):
            print('Buzz')
        else:
            print(i)

- [ ] in_progress
- [x] completed
  • in_progress
  • completed

<kbd>Enter</kbd>
<kbd>Delete</kbd>

Enter

Delete


Emoji Code
❓ :question:
❗ :exclamation:
πŸ“‚ :open_file_folder:
πŸ“ :file_folder:
πŸ”“ :unlock:
πŸ”’ :lock:
πŸ”‘ :key:
πŸ“Ž :paperclip:
πŸ“Œ :pushpin:
πŸ’‘ :bulb:

More emoji can be found here: https://www.webpagefx.com/tools/emoji-cheat-sheet/


Google: https://google.com

[Google](https://google.com)

Google: https://google.com

Google


* List item 1
* List item 2
    * Nested item 1
        * Sub-nested item 1
  • List item 1
  • List item 2
    • Nested item 1
      • Sub-nested item 1

> Quote line 1
>
>> Nested line 2

Quote line 1

Nested line 2

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment