text stringlengths 29 850k |
|---|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
test_mongoelector
----------------------------------
Tests for `mongoelector` module.
"""
import unittest
from time import sleep
from pymongo import MongoClient
from mongoelector import MongoElector
from random import randint
class TestMongoelector(unittest.TestCas... |
With winter break approaching quickly, students begin to anticipate all the excitement of Christmas; no homework, sleeping in till the afternoon and much more. The only downside is that the obstacle of finals pushes its way into your life and drags you down the path of stress, studying and sleeplessness.
“To help me st... |
"""
Django settings for backstage project.
Generated by 'django-admin startproject' using Django 1.9.1.
For more information on this file, see
https://docs.djangoproject.com/en/1.9/topics/settings/
For the full list of settings and their values, see
https://docs.djangoproject.com/en/1.9/ref/settings/
"""
import os
... |
All his teachers are sure certain that Evan Galloway can be the graduate who brings glory to small, ordinary St. Sebastian's School.
As for Evan, however, he can't be bothered anymore.
Since the shock of his young father's suicide last spring, Evan no longer cares about the future. In fact, he believes that he spent th... |
"""
.. moduleauthor:: Stephen Raymond Ferg and Robert Lugg (active)
.. default-domain:: py
.. highlight:: python
Version |release|
"""
from __future__ import print_function
from __future__ import unicode_literals
from __future__ import division
from __future__ import absolute_import
from builtins import zip
from bu... |
This cheese and red wine hamper is an original Valentines gift. We have made it even more special than our other great wine and cheese gifts by creating a special front label, designed with a fun 'Be Mine' crossed out to 'Be Wine' message - which we think is better! The bottle of Spanish red wine is combined with two a... |
import wx
class VirtualList(wx.ListCtrl):
def __init__(self, parent, **kwargs):
super(VirtualList, self).__init__(parent,
wx.ID_ANY, style=wx.LC_VIRTUAL | wx.LC_REPORT |\
wx.LC_VRULES | wx.LC_HRULES, **kwargs)
self.data = None
self.columns = []
def setData(... |
Discounts for .COM.PE web domain registrations or renewals. Check below the prices and domain features offered for .COM.PE.
.COM.PE is a country domain for Peru. This type of web domain can be registered for a period of 1 to 5 years. Using above partner promo code, you can claim up to 40% discounts on registration and ... |
from django.contrib.contenttypes.fields import GenericForeignKey
from django.contrib.contenttypes.models import ContentType
from django.db import models
from django.utils.translation import ugettext_lazy as _
from livinglots_organize.models import BaseOrganizer
class OptedInStewardProjectManager(models.Manager):
... |
Kerry Winfrey is the author of LOVE AND OTHER ALIEN EXPERIENCES and THINGS JOLIE NEEDS TO DO BEFORE SHE BITES IT. She’s written for many websites, including HelloGiggles. When she’s not writing, she’s most likely baking yet another batch of cookies or watching far, far too many romantic comedies. She lives with her hus... |
# -*- coding: utf-8 -*-
#
# This software is licensed as described in the file license.txt, which
# you should have received as part of this distribution.
from core import *
class InstancePool(object):
"""
Container for instances of Instance and Entity, that provides
some utility methods to search through... |
newnewnew TRAVEL 23 uNiT Price — iNcludiNG YOur lOGO cOde PrOducT QuANTiTY 50+ 100+ 250+ 500+ J2300 Meridian Travel wallet (printed) $12.44 $9.89 $9.23 $ call J2300 Meridian Travel wallet (engraved on accent plate) $12.08 $10.70 $10.11 $ call G3690 everest first Aid Kit na $6.62 $5.64 $ call G3300 escape Travel Pack $8... |
"""This file is part of matrix2latex.
matrix2latex is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
matrix2latex is distributed in the hope ... |
Lane change assistant. Item length: Item type: Item model: Weight : Led display / motion detection. Laser / strelka: As944. Wholesale alarm car. Tmps. Current & voltage display. Car dvr radar detector. Laser detection: Special features 2: Wholesale laser radar.
Russia,english,japanese,korean. 5.5inch. Transmission pow... |
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
# MIT License. See license.txt
from __future__ import unicode_literals
from frappe.utils.minify import JavascriptMinify
"""
Build the `public` folders and setup languages
"""
import os, sys, frappe, json, shutil
from cssmin import cssmin
def bu... |
The Bikini Girl from Italy with the second bag, full of rubbish.
Chicken wings in a re-usable container? Madness!
This could be the most important photo you see all year!
My heart was pounding and I hid under my hat like a criminal who was planning to commit a crime as I waited for the queue to disperse in front of the... |
# -*- coding:utf8 -*-
from django import template
from django.db.models import Q
from icomments.models import Comments
from icomments.forms import ComForm
register = template.Library()
def show_comment(value):
'''
文章评论
'''
comform = ComForm()
# 获取已批准或隐藏的评论
comments = Comments.objects.filter(Q... |
These resources are good for people who have had some experience in programming. The list of resources has a strong focus on the client-side (browser) programming but some bits cover the server-side (NodeJS) programming too.
These resources can be used concurrently. There is no need to do the online course first or sta... |
#!/usr/bin/python
# -*- encoding: utf-8 -*-
################################################################################
#
# Copyright (C) 2010 - 2015 Dharmesh Patel <mr.dlpatel@gmail.com>.
# $Id$
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Ge... |
Publisher’s Note: SNS members have been watching the world of paying electronically for a decade or more, from Smartcards (an early Japanese success story, vs. the U.S.) to Paying by Cellphone (also pioneered commercially here, although invented in Finland). Members also know that this trend is ready to move from Asia ... |
import os
import subprocess
import shlex
from invoke import task, run
from invoke.exceptions import Failure
YOUR_APP_NAME = "threepanel"
HOME_PATH = os.environ['HOME']
DJANGO_PATH = os.path.join(HOME_PATH, 'vagrant_django', YOUR_APP_NAME)
SCRIPTS_PATH = os.path.join(HOME_PATH, 'vagrant_django', 'scripts')
UWSGI_LOG_P... |
Beautiful breeze out of the West today.
It was great weather today, building my castle.
Caleb and Kristine, 8 year old twins, worked with their brother, Davey, 5 years old, and made a great castle. They are from Lancaster County, Pennsylvania.
Here’s my castle today, but I just got the bad news that it was destroyed be... |
# A simple example to retrieve all users for a team while using a _token_
# from the .netrc file instead of a password (as requests assumes by default)
import logging
import requests
import netrc
from mattermostdriver import Driver
logging.basicConfig( format='%(levelname)s - %(name)s - %(asctime)s - %(message)s'... |
Which would be a suitable alternative for the common idiom "The devil is in the details", without the use of the word "devil"?
Alternative answers are welcome too!
The idiom the devil is in the details means that mistakes are usually made in the small details of a project. Usually it is a caution to pay attention to av... |
# -*- test-case-name: twisted.words.test -*-
# Copyright (c) 2001-2008 Twisted Matrix Laboratories.
# See LICENSE for details.
"""
An implementation of the OSCAR protocol, which AIM and ICQ use to communcate.
Maintainer: Paul Swartz
"""
import struct
import string
import socket
import random
import types
import re
... |
Dr. Reshma Amin joined The Hospital for Sick Children (SickKids) in July 2010 as a clinical investigator in the Division of Respiratory Medicine and Assistant Professor at the University of Toronto. Dr. Amin completed a degree in Biology at the University of Western Ontario prior to graduating from medical school at th... |
# -*- coding: utf-8 -*-
"""
Created by Filip Jorissen
This function stores sensor measurement data. For each sensor two files are created. Sensor.meta contains metadata about the measurements. Sensor.txt contains the actual measurements: only the measurements. The location of the measurement in the file indicates the ... |
Our Personal and Family Solutions are designed to help busy, successful families manage their finances and grow their wealth with confidence and peace of mind. We provide individual tax compliance and consulting, asset protection services, wealth transfer planning, and a robust family office solution. Our personal serv... |
#!/usr/bin/env python
from setuptools import setup, find_packages
# Shamelessly stolen (then modified) from https://github.com/cburgmer/pdfserver/blob/master/setup.py
def parse_requirements(file_name):
import re
requirements = []
for line in open(file_name, 'r').read().split('\n'):
if re.match(r'... |
Build It Right Carpentry, LLC can be found at Oconomowoc in . The following is offered: General Contractors, Residential Contractors, Carpenters, Bathroom Remodeling, Patio & Deck . In Oconomowoc there are 14 other General Contractors. An overview can be found here. |
#code to save tweets in json
import sys
import tweepy
import json
import csv
from textblob import TextBlob
import os
import time
from datetime import datetime
from threading import Timer
access_key = "2864513512-1JkMkwIRHMjSBLdNgh1zIGiSX2ZJMnhoZZ3b8uR"
access_secret = "vpBlz4E2eSZnw7TVlUAGcmwI4AZ6Hf2Z9CBhin3S7HZSl"
c... |
Ink Depot offers a great range Toner Cartridges for your Dell 3115 3115CN device with high quality products at very competitive prices. We offer a 100% money back guarantee for all consumables you have purchased from us and with 98% of our advertised products in stock, you can be assured of a speed delivery.
Your Dell ... |
from django.db import models
from django.utils import timezone
from django.contrib.contenttypes.models import ContentType
from django.contrib.contenttypes.generic import GenericForeignKey
class GeoLocation(models.Model):
latitude = models.FloatField()
longitude = models.FloatField()
elevation = models.Floa... |
extropians: Did Dung Beetles Kill The Mushroom?
Did Dung Beetles Kill The Mushroom?
Next message: CurtAdams@aol.com: "Re: Re: Neanderthals and art"
Previous message: Eric Watt Forste: "META: Hierarchal List Structure"
Next in thread: Dan Clemmensen: "Re: Did Dung Beetles Kill The Mushroom?"
Maybe reply: Dan Clemmensen:... |
#!/usr/bin/env python
"""Tests for util.py."""
import datetime
import logging
import os
import sys
import unittest
# Fix up paths for running tests.
sys.path.insert(0, "../src/")
from pipeline import util
from google.appengine.api import taskqueue
class JsonSerializationTest(unittest.TestCase):
"""Test custom j... |
Popular Coffe Table LACK Coffee Black Brown | Timbacsy coffee table sets. coffee tables. coffee table legs.
Last Minute Coffe Table Alice Coffee. Survival Coffe Table Cainsville Coffee. Popular Coffe Table LACK Coffee Black Brown. Superior Coffe Table Livingston Coffee W Drawers. Security Coffe Table Wellington Coffee.... |
#!/usr/bin/evn python
# To test domain block device statistics
import os
import sys
import time
import libxml2
import libvirt
from libvirt import libvirtError
from src import sharedmod
required_params = ('guestname',)
optional_params = {}
def check_guest_status(domobj):
"""Check guest current status"""
sta... |
One of the systematic issue with Duo for me is the lack of the 'polite' you. If you do not know someone well, then you don't use the 'tu' form of the verb tu capisci but the polite form Lei capisce (written with a capital). Or so I have read. Anyway Lei capisce la ricetta is presently rejected by Duo.
So we get the hab... |
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import time
import pygame
from fx5204ps import FX5204PS
GRAPH_WIDTH = 600
GRAPH_HEIGHT = 100
SCREEN_SIZE = (GRAPH_WIDTH + 200, (GRAPH_HEIGHT + 50) * 4 + 50)
BLACK = (0,0,0)
WHITE = (255,255,255)
RED = (255,0,0)
GREEN = (0,255,0)
BLUE = (0,0,255)
class Graph(object):
... |
Compare Prices From Buena Vista Limousine Companies and Save Up To 25% On Rentals!
Did you know that we are the go-to resource for limousine services in your city? Price4Limo has access to the largest fleet of limousine rentals in the Buena Vista, MI area including makes and models such as Chrysler, Lincoln, Mercedes, ... |
import decimal
import os
import copy
import struct
import urllib.parse as urlparse
import re
from requests.structures import CaseInsensitiveDict
from typing import List
from bs4 import BeautifulSoup, Tag
from steampy.models import GameOptions
def text_between(text: str, begin: str, end: str) -> str:
start = te... |
Baird, Mark E., Adams, Matthew P., Babcock, Russell C., Oubelkheir, Kadija, Mongin, Mathieu, Wild-Allen, Karen A., Skerratt, Jennifer, Robson, Barbara J., Petrou, Katherina, Ralph, Peter J., O’Brien, Katherine R., Carter, Alex B., Jarvis, Jessie C., and Rasheed, Michael A. (2016) A biophysical representation of seagras... |
import socket
import sys
from thread import start_new_thread
from chatClasses import tcpHandler
import time
import curses
screen = curses.initscr()
screen.immedok(True)
curses.noecho()
curses.curs_set(0)
curses.cbreak()
screen.keypad(1)
listenerPort = 5006
promoterPort = 5005
server_address = "127.0.0.1"
chat2Write... |
This listing is for this fabulous cream colored floral designed bed runner. Could also be used a couch runner or even a shawl. In great condition with just a few areas of coloration that is not really noticeable. Overall, no tears or miss stitching and has the original personalized tag on the back. A great piece to own... |
import os
import logging
from time import time
from apikit import jsonify
from flask import render_template, current_app, Blueprint, request
from jsonschema import ValidationError
from elasticsearch import TransportError
from aleph.core import get_config
from aleph.model.constants import CORE_FACETS, SOURCE_CATEGORIES... |
Ice, wind, cold temperatures and ocean waters combined to created dramatic cloud formations over the Bering Sea in late January, 2015. The Moderate Resolution Imaging Spectroradiometer (MODIS) aboard NASA's Aqua satellite passed over the region and captured this true-color image on Jan. 23.
Ice, wind, cold temperatures... |
#!/usr/bin/env python
#-*- coding: iso-8859-15 -*-
"""---------------------------------------------------------------------
_____ _____ _ _ _____ _ _ _____ _ _ ____
| __ \_ _| \ | |/ ____| | | |_ _| \ | |/ __ \
| |__) || | | \| | | __| | | | | | | \... |
Edition originale Tiguri. Sumtibus authoris, typis gessnerianis. MDCCVIII. |
#!/usr/bin/env python
from __future__ import print_function
"""
from example by Tarn Weisner Burton <twburton@users.sourceforge.net> in pyopengl
"""
__author__ = 'Jon Wright <jpwright@users.sourceforge.net> from example by Tarn Weisner Burton <twburton@users.sourceforge.net>'
import numpy
import sys
import os
from ... |
Young Adult Science Fiction and Fantasy author: Analects for an Autobiography Nearly all creators of Utopia have resembled the man who has toothache, and therefore thinks happiness consists in not having toothache.
Tubb, others Mary Wollstonecraft Shelley Index to at least 11 publications Michael Scott Twenty signed nu... |
from colander import Length
from deform import Button
from deform.widget import HiddenWidget, Select2Widget, TextAreaWidget
from ekklesia_common.contract import Form, Schema, enum_property, int_property, string_property
from ekklesia_common.translation import _
from ekklesia_portal.enums import VoteByUser
class Prop... |
Located at 68th Avenue North in Myrtle Beach, Monteray Bay Suites is right on the beach and in close proximity to many of the most exciting attractions, shopping destinations, and dining establishments in the city. Just a five mile drive from visitor-favorites like Broadway at the Beach, the Myrtle Beach Boardwalk, and... |
# -*- coding: utf-8 -*-
"""
Provide functions for the creation and manipulation of Planes.
Planes are represented using a numpy.array of shape (4,).
The values represent the plane equation using the values A,B,C,D.
The first three values are the normal vector.
The fourth value is the distance of the plane from the or... |
Vegas Values: Thanking Our Troops ‘N More!
Weekend-long party May 27-30 includes UFC 130 viewing on Saturday, May 28.
Food & drink specials range include two tacos, a Tecate draft and a shot of tequila for $20.
Complimentary admission to resort pools May 27-30. Live DJs, 2-for-1 drink voucher with valid military ID.
“H... |
#!/usr/bin/env python3
"""
author: Kamil Cukrowski, 2016
"""
from tkinter import *
import tkinter
import tkinter.ttk
from matplotlib.backends.backend_tkagg import FigureCanvasTkAgg
import matplotlib.pyplot as plt
from matplotlib.backends.backend_tkagg import FigureCanvasTkAgg, NavigationToolbar2TkAgg
import numpy as ... |
Well, I have been experimenting in the kitchen again and discovered this blissful strawberry dish with Paleo whipped cream. Strawberries are fairly low in sugar and when it is combined with the fat from the coconut it produces a recipe that will have minimal negative impact on blood sugar, adrenals, neurotransmitters a... |
from cme.helpers.powershell import *
from cme.helpers.misc import validate_ntlm
from cme.helpers.logger import write_log
from sys import exit
class CMEModule:
'''
Executes the BloodHound recon script on the target and retreives the results onto the attackers' machine
2 supported modes :
... |
The Dixon Clan were represented at the Clans of Ireland AGM at the Mansion House in Dublin in April 2013 by Ceann Fine Donal Dixon of Castleknock.
This clan organisation trace its pedigree back to Edward Dixon of Meath who was born in 1516. Through marriage the Dixons of Meath are also related to the Barons Louth, Baro... |
# -*- encoding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2004-2010 Tiny SPRL (http://tiny.be). All Rights Reserved
#
#
# This program is free software: you can redistribute it and/or modify
# ... |
way down to self-installation marquees for schools or club’s on a tight budget.
Give us a call today to discuss your requirements for your upcoming event, our team will have a solution for you.
*Discounts apply for large order quantities, contact us today! |
import subprocess
import os
import polib
import copy
import codecs
def prereleaser_middle(data):
"""
1. Run the unit tests one last time before we make a release.
2. Update the CONTRIBUTORS.txt file.
Note: Install polib (https://pypi.python.org/pypi/polib).
"""
print('Running unit tests.')
... |
I was quite happy with the beat I made for last week's track and didn't feel like I was quite done with it yet, so I pinched it for this week's track and modified the pattern a little bit. The bass is 3 Massive synths layered over each other. The annoying melodic synth is Massive too. I must say I am quite partial to s... |
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
# Copyright (C) 2007-2009 Guillermo Gonzalez
#
# The code taken from bzrlib is under: Copyright (C) 2005-2007 Canonical Ltd
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# th... |
IBM i shops around the country will be concentrating their efforts more on defensive IT measures like security and high availability this year, as offensive measures like application modernization and mobile app development take a back seat on corporate to-do lists, according HelpSystems’ recent marketplace study.
Whil... |
#!/usr/bin/python
import gcloudutils
import sys
import requests
import argparse
from infoblox_client import connector
from infoblox_client import objects
from requests.auth import HTTPBasicAuth
from requests.packages.urllib3.exceptions import InsecureRequestWarning
from oauth2client.client import GoogleCredentials
from... |
Balgair has just been sent the official release code.
Later today I will send the same code to the distribution sites.
Remember this code will not work with client 7.3.5 you need to wait until you have client 8.0.1 running.
Also remember do not attempt to upload data from this 8.0.0 addon until you see my announcement ... |
# Copyright (c) 2012 OpenStack, LLC.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in wr... |
Can developers game the system with invalid traffic studies?
It’s Official! D for Defeated!!
Well over $1.5m dollars and counting has been flowing through the PAC laundering machine in support of Irvine City measures B, C & D. Save $250 donation from the veteran’s alliance there isn’t a citizen donation in sight. Who i... |
import shutil
import subprocess
import os
import tarfile
class Config(object):
build = os.path.abspath("build")
files = os.path.abspath("files")
output = os.path.abspath("output")
manifest = os.path.abspath("build/DEBIAN")
temp = os.path.abspath("tmp")
templates = os.path.abspath("files/DEBIAN"... |
Aidan Mattox Beaded Fit-&-flare Cocktail Dress - Fit-and-flare cocktail dress with beaded details. Crewneck. Short sleeves. Concealed back zip. Lined. About 38" from shoulder to hem. Polyester. Dry clean. Model shown is 5'10" (177cm) wearing US size 4. |
# -*- coding: utf-8 -*-
#
# Copyright (C) 2010 Lincoln de Sousa <lincoln@comum.org>
# Copyright (C) 2010 Gabriel Falcão <gabriel@nacaolivre.org>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Fo... |
ACT-IAC would like to express its thanks and appreciation to each of our 2017 sponsors for their support. The contributions provided by these organizations support the unique public-private partnership provided by ACT-IAC and are vital to our ability to provide high quality programs and services throughout the year. Th... |
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in... |
@Isocelesisopod Agreed! Some leave having started to ponder possibilities, at least. It's hard working through all that societal conditioning. |
from django.db import models
from django.contrib import admin
class NullableModel(models.Model):
TRUTH_VALUE = True
charfield = models.CharField(max_length=100, null=True, blank=True)
charfield_2 = models.CharField(max_length=100, null=TRUTH_VALUE)
textfield = models.TextField(null=True, blank=True)
... |
Although some industry players have tried to promote the harvesting of "sustainable" palm oil, Richard Walker, Iceland's managing director, said the company did not believe it was viable... Walker's conclusion was stark: "I do not believe such a thing as sustainable palm oil exists.". Over half of products in supermark... |
__author__ = 'saintdragon2'
#http://www.tutorialspoint.com/python/tk_menu.htm
from tkinter import Tk, Menu, Toplevel, Button
from tkinter.filedialog import askopenfilename
from tkinter.messagebox import showerror
def donothing():
filewin = Toplevel(root)
button = Button(filewin, text="Do nothing button")
... |
Today was supposed to be Aulia's swimming class at the Oakleaf Country Club but the coach cancelled it after the first 5 minutes. The rain gotten heavier which wasn't so bad but then there was thunder and lightning so we had to literally drag her out of the water: poor thing! So we decided to go back home and continue ... |
import simplekml
import json
import datetime
import csv
from bson.code import Code
from pymongo import MongoClient
from math import radians, cos, sin, asin, sqrt
from random import choice
import operator
import csv
def haversine(lon1, lat1, lon2, lat2):
"""
Calculate the great circle distance between two poin... |
Contemporary mirror, sculpted in bronze. The top surface changes lightly from ruff to polished, resulting in a worn effect. This, in combination with the earthy colours makes this a remarkable item.
Part of the Synthesis Monolith serie. When confronted with things that exceeds our very understanding, our inability to c... |
# Copyright 2019 TWO SIGMA OPEN SOURCE, LLC #
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agr... |
As chiropodists and podiatrists, we are always asked for our top tips when it comes to looking after feet. Here we have included a few for you to try.
Go on……give your feet a treat!
It doesn’t have to be a really expensive moisturiser, but the best results are usually seen with creams that include products such as Vita... |
#!/usr/bin/python -u
#
# Copyright (c) 2016 Balazs Nemeth
#
# This file is free software: you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This file i... |
Current laws in many countries around the world, and in EU member-states in particular, have made the consultation of affected publics mandatory for such decisions as the sitting of energy facilities, urban re-habilitation or the designation of protected areas. This has made exercises of public engagement a generalized... |
import scipy.io as sio
import matplotlib.pyplot as plt
import numpy as np
from scipy.optimize import minimize
from common_functions import add_zero_feature, cf_lr as cost_function, gf_lr as grad_function, \
cf_lr_reg as cost_function_reg, gf_lr_reg as grad_function_reg
if __name__ == '__main__':
data = s... |
Grab your group and join us for this complimentary pre-show mixer for groups of 10 or more. Mix and mingle with members of other theatre-loving groups while enjoying music, complimentary cocktails and appetizers provided by Mandola’s Catering. Tickets are $28.
InterACT is a great way to mix and mingle prior to seeing t... |
# -*- coding: utf-8 -*-
"""
Created on Tue Sep 12 18:47:50 2017
@author: adelpret
"""
import numpy as np
from scipy import ndimage
import matplotlib.pyplot as plt
from identification_utils import solve1stOrderLeastSquare
from dynamic_graph.sot.torque_control.hrp2.control_manager_conf import IN_OUT_GAIN
def identify_... |
From fashion designers to apparel retailers, the fashion and retail industry has brought some people so much wealth, success and prosperity. When you look at these people with successful careers in the fashion and retail industry, you instantly wonder just how they got there. Here, you will read some inspiring stories ... |
#
# Copyright (c) SAS Institute Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in w... |
BEAUTIFUL, BRIGHT, NEUTRAL CAMDEN MODEL. 1700 SQ FT, TWO-STORY SOARING RAILED ENTRY AND LIVING ROOM. MARBLE SURROUND GAS FIREPLACE. LARGE, FULLY-APPLIANCED KITCHEN, BREAKFAST BAR. OAK CABINETS. HUGE EATING AREA WITH SLIDERS TO PATIO. HUGE MASTER SUITE AND BATH. TRUE 3-BEDROOM, 2.1 BATH, 2+ CAR GARAGE. VERY NEUTRAL, FAN... |
"""treetools: Tools for transforming treebank trees.
This module provides functions and classes for transition extraction.
Author: Wolfgang Maier <maierw@hhu.de>
"""
import argparse
import sys
from . import trees, treeinput, transform
from . import misc, transitionoutput
class Transition():
def __init__(self, n... |
A skilled business analyst contributes to the success of their projects by improving the requirements that project managers will process. Organizations that assign a business analyst to each project are much more likely to be successful, on time, and under budget. Systemation’s online business analyst training is tailo... |
#coding: UTF-8
"""
Test file/dir operations.
"""
import posixpath
import pytest
import urllib
from urllib import urlencode, quote
import urlparse
from tests.common.utils import randstring, urljoin
from tests.api.apitestbase import ApiTestBase
class FilesApiTest(ApiTestBase):
def test_rename_file(self):
w... |
Materials: 2 x 100g balls of DK Homefield Alpaca Wool, 4.5mm needles, Darning Needle.
Tension: Knit a tension square to check measurements and alter if necessary.
Method P = purl, K = knit, (Twist 2 = knit back of 2nd stitch then front of 1st stitch).
Row 1: P2, K2, all along the row.
Row 2: K2, P2, all along the row.
... |
# -*- coding: utf-8 -*-
# EditXT
# Copyright 2007-2013 Daniel Miller <millerdev@gmail.com>
#
# This file is part of EditXT, a programmer's text editor for Mac OS X,
# which can be found at http://editxt.org/.
#
# EditXT is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Publ... |
Algowire Trading Academy offers support to its candidates who seek new opportunities in the world of financial markets. Our courses have been designed by keeping in mind the requirements of employers and are idle for working professionals and students. Our Career Services are available to our candidates throughout thei... |
from __future__ import absolute_import
from .consts import private
from .utils import patch_path
import json
import yaml
import six
import os
import logging
import re
logger = logging.getLogger(__name__)
class Getter(six.Iterator):
""" base of getter object
Idealy, to subclass a getter, you just need to ov... |
Lionsstar Möbel article is the best inspiration for home interior posted about Haus möbel. This Lionsstar Möbel was posted in category Haus möbel as ideas for inspiration to Remodel your Haus möbel accessories. This article can be your reference when you are confused to choose the right decoration for your home accesso... |
#cat get_size.py
# -*- coding: utf-8 -*-
"""遍历指定路径下所有节点的大小"""
from kazoo.client import KazooClient,KazooState
import socket,sys, os, time, atexit
class dzk:
def __init__(self,hosts,secs):
self.hosts = hosts
#self.zk = KazooClient(hosts='1.1.1.3:2181,1.1.1.2:2181,1.1.1.1:2181',retry_max_delay=2000)... |
To keep cushions in place and be able to reuse them, put a strip of double-sided tape inside cushions before attaching to cannula. I was putting a drop of glue inside cushion, but, then, you must throw away cushion with each cannula. I only use them as needed to save buying so many.
I use surgi-strips to keep them in p... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.