Skip to content

Instantly share code, notes, and snippets.

View SyeedHasan's full-sized avatar
🖥️
Let's get it!

Hasan SyeedHasan

🖥️
Let's get it!
View GitHub Profile
@SyeedHasan
SyeedHasan / Github Flavored Markdown.md
Last active October 5, 2021 09:36 — forked from stevenyap/Github Flavored Markdown.md
Github Flavored Markdown cheatsheet

Github Flavored Markdown (GFMD) is based on Markdown Syntax Guide with some overwriting as described at Github Flavored Markdown

Text Writing

It is easy to write in GFMD. Just write simply like text and use the below simple "tagging" to mark the text and you are good to go!

To specify a paragraph, leave 2 spaces at the end of the line

Headings

@SyeedHasan
SyeedHasan / parseml.py
Created November 11, 2020 17:05 — forked from urschrei/parseml.py
Extract attachments from EML files in the current dir, and write them to the output subdir
#!/usr/bin/env python
"""
2020 update:
- More iterators, fewer lists
- Python 3 compatible
- Processes files in parallel
(one thread per CPU, but that's not really how it works)
"""