duplicates = multiple editions
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
| import win32serviceutil | |
| import win32service | |
| import win32event | |
| import servicemanager | |
| import socket | |
| import time | |
| import logging | |
| logging.basicConfig( | |
| filename = 'c:\\Temp\\hello-service.log', |
| (function(undefined) { | |
| // Get angular app | |
| var app = angular.module("App"); | |
| app.factory("XLSXReaderService", ['$q', '$rootScope', | |
| function($q, $rootScope) { | |
| var service = function(data) { | |
| angular.extend(this, data); | |
| }; |
| FROM ubuntu:12.04 | |
| MAINTAINER SKAhack | |
| run echo "deb http://archive.ubuntu.com/ubuntu quantal main universe" > /etc/apt/sources.list | |
| RUN apt-get update | |
| RUN apt-get install -y software-properties-common | |
| RUN apt-get install -y openssh-server | |
| RUN apt-get install -y sudo | |
| RUN mkdir -p /home/docker |
| {% macro form_field(field) -%} | |
| {% set with_label = kwargs.pop('with_label', False) %} | |
| {% set placeholder = '' %} | |
| {% if not with_label %} | |
| {% set placeholder = field.label.text %} | |
| {% endif %} | |
| <div class="control-group {% if field.errors %}error{% endif %}"> | |
| {% if with_label %} | |
| <label for="{{ field.id }}" class="control-label"> | |
| {{ field.label.text }}{% if field.flags.required %} *{% endif %}: |
| // loop through the 'paper' variable from Raphael JS and build up the JSON object describing all images and paths within it. | |
| buildJSON = function(paper) { | |
| var svgdata = []; | |
| svgdata.push({ | |
| width: 390, | |
| height: 400 | |
| }); | |
| $.each(paper, |