Skip to content

Instantly share code, notes, and snippets.

@tylerball
Created January 20, 2015 20:51
Show Gist options
  • Save tylerball/0b40434a47464a06f20d to your computer and use it in GitHub Desktop.
Save tylerball/0b40434a47464a06f20d to your computer and use it in GitHub Desktop.
make everyday more kawaii with python and textexpander
#!/usr/bin/python
# coding=utf-8
import random
import sys
faces = [
'(◕‿◕✿)',
'ヽ(‘ ∇‘ )ノ',
'ヾ(@⌒▽⌒@)ノ',
'(◡‿◡✿╰)',
'(ノ◕ヮ◕)ノ*:・゚✧',
'(づ。◕‿‿◕。)づ',
'∩(︶▽︶)∩',
]
sys.stdout.write(random.choice(faces))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment