This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def removeNonASCII(file): | |
| """ remove non-ASCII chars from file, after making a bakup first | |
| """ | |
| fileBak = "%s.bak" % (file) | |
| err = os.system("cp -p %s %s" % (file, fileBak)) | |
| if err: | |
| return | |
| fout = open(fileBak, 'w') | |
| for line in fileinput.input(file): | |
| fout.write(re.sub(r'[\x80-\xff]', '', line)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/python | |
| # -*- coding: utf-8 -*- | |
| from BeautifulSoup import BeautifulSoup | |
| import tagfile, datetime, sys, re, pickle, psycopg2 | |
| from os import environ | |
| sys.path.append('/directory/nuther_directory') | |
| sys.path.append('/directory/nuther_directory/project_directory') | |
| environ['DJANGO_SETTINGS_MODULE'] = 'project_directory.settings' | |
| from turin.models import Story, Image, Mugline |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /usr/bin/env /opt/local/bin/jython | |
| # -*- coding: utf-8 -*- | |
| from java.lang import * | |
| from java.sql import * | |
| def main(): | |
| import sys, datetime, cPickle, codecs | |
| sys.path.append('/opt/local/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/') | |
| from BeautifulSoup import BeautifulSoup | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script type="text/javascript"> | |
| $(document).ready(function(){ | |
| jwplayer('mediaplayer').setup({ | |
| id: 'playerID', | |
| width: 546, | |
| height: 313, | |
| file: 'http://s3.amazonaws.com/headsup.orcasinc.com/video/concussion_video.mp4', | |
| image: 'http://s3.amazonaws.com/headsup.orcasinc.com/video/concussion_video.jpg', | |
| modes: [ | |
| {type: 'html5'}, |
NewerOlder