Skip to content

Instantly share code, notes, and snippets.

@veryhappythings
Created May 11, 2009 09:52
Show Gist options
  • Save veryhappythings/109933 to your computer and use it in GitHub Desktop.
Save veryhappythings/109933 to your computer and use it in GitHub Desktop.
TextMate command to convert VAT from 17.5% to 15%
#!/usr/bin/env python
import os
import sys
try:
sys.stdout.write('%.2f' % ((float(os.environ.get('TM_SELECTED_TEXT')) / 1.175) * 1.15))
except:
sys.stdout.write(os.environ.get('TM_SELECTED_TEXT'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment