Skip to content

Instantly share code, notes, and snippets.

View aeftimia's full-sized avatar

Alex Eftimiades aeftimia

View GitHub Profile
from contextlib import contextmanager
@contextmanager
def breakable():
class Break(Exception): pass
def breaker(): raise Break
try:
yield breaker
except Break:
pass
@btfak
btfak / useHexo.md
Created May 26, 2016 09:41
How to use Hexo and deploy to GitHub Pages