Skip to content

Instantly share code, notes, and snippets.

@agullotti
agullotti / epictetus.adoc
Created January 24, 2025 16:46 — forked from romainl/epictetus.adoc
Epictetus quotes

Epictetus

Philosophy is a way of life and not just a theoretical discipline.

Epictetus (55 — 135 AD) was a Greek slave of Rome. He became a great Stoic philosopher and teacher, and was eventually freed.

Although he was a fatalist, he believed that individuals are responsible for their own actions, which they can examine and control through rigorous self-discipline.

@agullotti
agullotti / outlook_email.py
Created June 12, 2019 13:12 — forked from ITSecMedia/outlook_email.py
Python: Create an Email with Outlook
# http://itsecmedia.com/blog/post/2016/python-send-outlook-email/
import win32com.client
from win32com.client import Dispatch, constants
const=win32com.client.constants
olMailItem = 0x0
obj = win32com.client.Dispatch("Outlook.Application")
newMail = obj.CreateItem(olMailItem)
newMail.Subject = "I AM SUBJECT!!"