This file contains 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" | |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | |
<head> | |
<link rel="stylesheet" href="style.css" /> | |
<title>Pley: Patt's Badminton Court</title> | |
<!-- CSS --> | |
<link rel="stylesheet" href="/css/style.css" type="text/css" media="screen, projection"> | |
This file contains 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
tolerance = abs(float(tolerance)) | |
if(tolerance > 0): | |
#get the difference of every bearing change | |
#if difference is within tolerance, print | |
#otherwise, ignore | |
diff = float(previous_bearing) - float(bearing) | |
#print abs(diff),tolerance | |
if(float(previous_bearing) != float(bearing)): | |
if(abs(diff) <= tolerance): |
This file contains 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
@login_required | |
def download(request,groupname,filename): | |
""" | |
Download a file | |
""" | |
custgroup = Group.objects.get(name=groupname) | |
if custgroup not in request.user.groups.all(): | |
return render_to_response('404.html') | |
else: | |
pass |
This file contains 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
#example2.py | |
import cStringIO # *much* faster than StringIO | |
import urllib | |
import Image | |
file = | |
urllib.urlopen('http://freegee.sourceforge.net/FG_EN/src/teasers_en/t_gee-power_en.gif') | |
im = cStringIO.StringIO(file.read()) # constructs a StringIO holding the image | |
img = Image.open(im) |
This file contains 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
import cStringIO # *much* faster than StringIO | |
import urllib | |
import Image | |
try: | |
file = urllib.urlopen('http://freegee.sourceforge.net/FG_EN/src/teasers_en/t_gee-power_en.gif') | |
im = cStringIO.StringIO(file.read()) # constructs a StringIO holding the image | |
img = Image.open(im) | |
img.save('/home/wenbert/uploaderx_files/test.gif') | |
except IOError, e: |
This file contains 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
int(time.mktime(time.strptime(str(image.uploaded_on), '%Y-%m-%d %H:%M:%S'))) |
This file contains 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
from django.db import models | |
from datetime import datetime | |
from django.contrib.auth.models import Group, User | |
class Category(models.Model): | |
""" | |
class Car(models.Model): | |
company_that_makes_it = models.ForeignKey(Manufacturer) | |
# ... | |
""" |
This file contains 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
<div id="container"> | |
<input type="hidden" id="var" value="wenbert"/> | |
<input type="button" id="thebutton" value="Click"/> | |
</div> | |
<script type="text/javascript"> | |
$(document).ready(function() { | |
<script type="text/javascript"> | |
$(document).ready(function() { | |
$("#thebutton").click(function(){ | |
call_ajax1(); |
This file contains 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
SELECT | |
cfai.display_name, cfai.first_name, cfai.last_name, cfai.email | |
FROM | |
from_cfai cfai | |
WHERE cfai.email NOT IN ( | |
SELECT onetwothree.email | |
FROM | |
from_123 onetwothree |
This file contains 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
SELECT | |
onetwothree.`name`, | |
cfai.first_name, | |
cfai.last_name, | |
onetwothree.`email`, onetwothree.`exp_date`, onetwothree.`days_due` | |
FROM from_123 onetwothree | |
INNER JOIN from_cfai cfai ON cfai.email = onetwothree.email |
OlderNewer