text stringlengths 29 850k |
|---|
#encoding:UTF-8
import requests
import time
import datetime
import sys
from bs4 import BeautifulSoup
import re
def getInfo(soup):
print('in get info.')
result = ''
a = soup.findAll('dl')
for b in a:
c = b.find('a',{'class':'title'})
d = c.string
print(d)
result += d + '\... |
On Sunday 18th November, in aid of BBC Children in Need, Michael Ball will be performing his BBC Radio 2 Programme live from the London’s West End. Along with special guests Alfie Boe, Tom Jones, Sheridan Smith, Boyzone and the Kingdom Choir, you too are invited to join him at the Savoy Theatre for this showbiz extrava... |
# Given two 1d vectors, implement an iterator to return their elements alternately.
#
# For example, given two 1d vectors:
#
# v1 = [1, 2]
# v2 = [3, 4, 5, 6]
# By calling next repeatedly until hasNext returns false, the order of elements returned by next should be:
# [1, 3, 2, 4, 5, 6].
#
# Follow up: What if you are ... |
Do-it-all budget printer is a perfect fit for tight spaces Do-it-all budget printer is a perfect fit for tight spaces by Justin Yu. You also can control printer functionality from the web interface, including all printer settings, such as nesting; disabling the USB interface on the printer; and various levels of lockin... |
#!/usr/bin/env python
""" use paramiko to send cmd to RTR2 """
import paramiko
import time
from getpass import getpass
MAX_BUFFER = 65535
def prepare_buffer(rtr2):
if rtr2.recv_ready():
# print 'buffer is full'
return rtr2.recv(MAX_BUFFER)
def disable_paging(rtr2):
cmd = 'terminal ... |
We will be releasing the full line up in New Year but as always you can expect 3 days of top class jazz in a wonderful venue.
We are currently putting the final touches to the line up over the festive period but you can be assured we will have our usual eclectic mix of established artists and rising stars with a couple... |
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
import os
try:
from PySide import QtCore, QtGui
except ImportError:
print("没有Qt模块,将在命令行操作")
os.system("python " + sys.path[0] + "/main.py")
os._exit(0)
from StoreData import store_list, all_store, store_init, add_new_store
from main import main... |
Are you getting tired of your overpriced cable TV bill? We’ve been there too. Luckily, there’s a great alternative for you – satellite TV services in Cuyama. With prices and quality superior to cable television, we’re positive you’ll be more than happy with switching.
Many others are beginning to realize why satellite ... |
#!/usr/bin/env python
"""Provide the standard Python string.Formatter engine."""
from __future__ import absolute_import
from __future__ import print_function
import string
try:
basestring
except NameError:
basestring = str
from . import Engine
class MissingField(object):
"""Represent a missing field ... |
Originally known as Sunday Bankole (BBanks), he lets loose on this inspirational new single “SK”, a song about self love, hope and belief in ones self to get through life.
What listeners will find clear is that Bank’s feelings in the “Self Knowledge” of him self, connect with him self, knowing him self, for him to be h... |
# -*- coding: utf-8 -*-
"""
HipparchiaServer: an interface to a database of Greek and Latin texts
Copyright: E Gunderson 2016-21
License: GNU GENERAL PUBLIC LICENSE 3
(see LICENSE in the top level directory of the distribution)
"""
from collections import deque
from server.dbsupport.miscdbfunctions import resulti... |
Looking for a prepaid debit card in Haysi, VA?
Searching for the perfect Visa® prepaid debit card in Haysi—one that's safe and easy with access to online banking? BB&T MoneyAccount combines the features of a checking account with the convenience of a reloadable prepaid debit card.
You'll enjoy a variety of benefits tha... |
# Copyright 2015 ARM Limited
#
# 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 writin... |
Whew, it's been a long time!!
I don't really have an excuse for not posting, other than we haven't been doing much and I've been staying inside lots because it's so darn hot outside!
We have managed to make it to Disney a couple of times over the past few months now that we have our annual passes and we got Universal p... |
import ugfx
import badge
import wifi
import network
from time import sleep
import usocket as socket
state_map = {
'up': 0,
'down': 1,
'left': 2,
'right': 3,
'a': 4,
'b': 5,
'start': 8,
'select': 9,
}
states = [0 for _ in range(14)]
def handle_key(id, pressed):
states[id] = presse... |
In this axis, skills in extraction, biotechnologies, and synthesis chemistry under microwave, are applied to different biomasses (micro/macro algae and marine bacteria), biological polymers or secondary metabolites. This way, different families of natural molecules or analog synthesis are obtained (glycomolecules, hete... |
import os, shutil
import logging
class Writer(object):
def __init__(self, backupBasePath, sourceBackupBasePath, sourceSourceBasePath, id):
self.backupBasePath = backupBasePath
self.sourceBackupBasePath = sourceBackupBasePath
self.sourceSourceBasePath = sourceSourceBasePath
s... |
The contoured electric treatment table provided contoured upholstery for bodywork, this is ideal for all styles of massage and many treatments.
This Adjustable treatment table addresses the requirements of a wide range of manual handling issues to benefit both patient and doctor.
1. Adjustable treatment table standard ... |
from Main.models.categories import Category, Product_category
from Main.models.products import Product
from Main.utilities.logs import logError
from django.utils import timezone
import datetime
def getCategoryFromProduct(product):
category = Product_category.objects.filter(product_id=product["id"])[0].catego... |
Our visual communication is mainly based on typographical experimentation; in SKE! CREATIVE’s Division, according LOOP, Typography is the communication vital element: suggestions, emotions and intentions are communicated even without the use of images or icons of various kinds; the word, written with a specific font, h... |
"""Skeleton for 'pytest'.
Project: pytest 2.6.4 <http://pytest.org/latest/>
Skeleton by: Bruno Oliveira <nicoddemus@gmail.com>
Exposing everything that can be extracted from `pytest_namespace` hook
in standard pytest modules, using original docstrings.
"""
# _pytest.genscript
def freeze_includes():
"""
Retu... |
When Carlo and I first started to think about the Photo Moto project, the first thing that came to mind was out of the classic Italian movies…. scooters represented in post war Italy the new freedom. Then I began to think of my early trips to Italy where I was excited by the buzz of scooters all around me in the cities... |
"""create invoice_details table
Revision ID: 3eecce93ff43
Revises: 792b438b663
Create Date: 2016-03-29 22:16:01.022645
"""
# revision identifiers, used by Alembic.
revision = '3eecce93ff43'
down_revision = '792b438b663'
from alembic import op
import sqlalchemy as sa
def upgrade():
op.create_table('invoice_deta... |
We’ve all seen so many lists out there of gifts for children with disabilities. They’re great lists, and much needed and appreciated because sometimes kids with special needs can be tough to shop for. Still, I’ve found that sometimes there’s another group of people who are equally as hard to shop for: their parents!
We... |
from six import iteritems
import struct
from .region import Region
class KeyspacesRegion(Region):
"""A region of memory which represents data formed from a list of
:py:class:`~rig.bitfield.BitField` instances representing SpiNNaker routing
keys.
Each "row" represents a keyspace, and each "column" is... |
Making You Healthy- <> Is your fish oil safe?
In the last e-zine, I talked about the excellent health benefits of omega-3 fatty acids. Increasing your omega-3 intake not only improves cholesterol levels, insulin sensitivity and mental function, but it decreases inflammation (the underlying issue in the majority of heal... |
# -*- coding: utf-8 -*-
# ProjectEuler/src/python/problem023.py
#
# Non-abundant sums
# =================
# Published on Friday, 2nd August 2002, 06:00 pm
#
# A perfect number is a number for which the sum of its proper divisors is
# exactly equal to the number. For example, the sum of the proper divisors of
# 28 woul... |
Located in the heart of Kansas City, the University of Missouri-Kansas City (UMKC) is uniquely positioned to serve this community and address its health needs, while also addressing social and racial inequalities. The leadership of UMKC's schools of Medicine, Nursing, Pharmacy, and Dentistry, have entered into a collab... |
"""
Functions for working with STIX 2 Data Markings.
These high level functions will operate on both object-level markings and
granular markings unless otherwise noted in each of the functions.
Note:
These functions are also available as methods on SDOs, SROs, and Marking
Definitions. The corresponding method... |
Try out this fun educational learning babies jigsaw game with your little ones. Babies and toddlers will enjoy playing our baby game for a long time. Help the baby learn the animals, numbers, alphabet, fruits, transportation, professions, emotions, colors and musical instruments.
– It’s specifically designed as an educ... |
#!/usr/bin/python
# -*- coding: utf-8 -*-
"""HSM Sideband Backend Archive Module.
Module that implements the abstract_backend_archive class for a HSM Sideband
backend.
"""
import os
import stat
import shutil
from ...archive_utils import un_abs_path
from ...config import get_config
from ...exception import ArchiveInter... |
activating windows 7 via KMS got error: product not found. Windows diagnostic log inside.
The manufacturers say they install this to provide a better user experience and they can lower the computer cost because they get a cut of any trial software you actually buy. What to do when you have lost your product key, even t... |
# -*- coding: utf-8 -*-
## Copyright 2015 Rasmus Scholer Sorensen, rasmusscholer@gmail.com
##
## This file is part of Nascent.
##
## Nascent 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 Foundati... |
Gather your supplies and let’s have some fun foiling. All you need for this fun project: Old Frame, Foil Adhesive, Leopard Spots Foil and a brush.
One of the things that I love about this project, is there was NO prep! I didn’t do anything to this frame first (well I did wipe it clean LOL) and then I brushed on my Foil... |
import os
import importlib
tests = []
for root, dirs, files in os.walk("testing"):
for file in files:
if file.endswith(".py") and not os.path.basename(file) == '__init__.py':
# print 'found test', os.path.join(root, file)
tests.append(os.path.join(root, file))
passed_or_failed = [... |
Manufactures custom hi-pressure underground mine doors and other various equipment for the Mining Industry, including Cable Vulcanizers and Track Cleaners.
John MSHA-certified engines are built to handle tough, off-highway applications, including in the mining industry.
The mining industry remains 's largest contributo... |
# this code is taken from: https://gist.github.com/mbostock/4339083
d3_tree_template = """
<!DOCTYPE html>
<meta charset="utf-8">
<style>
.node {
cursor: pointer;
}
.node circle {
fill: #fff;
stroke: steelblue;
stroke-width: 1.5px;
}
.node text {
font: 14px sans-serif;
}
.link {
fill: none;
stroke: #c... |
H1B Visa Fees and Costs associated with preparing, filing and processing H1B visa applications are normally ALL paid by the US Employer / Sponsor Company.
The standard H1B filing fee is for the 1-129 petition. This H1B fee is also payable for H1B extensions, H1B transfers, and amendments. Almost everyone has to pay thi... |
from collections import OrderedDict
from clifunzone import reflection_utils
from clifunzone import xml2json
try:
from lxml import etree as ET
except ImportError:
try:
import xml.etree.cElementTree as ET
except ImportError:
import xml.etree.ElementTree as ET
def contains_valid_xml(obj):
... |
Hon madr roman therva Kuaran.
Now, now, Ethel. Be nice.
Alright, set her down, Sue.
It seems to have noticed, us.
That's not our assignment, Eshey.
Come now, Hombre, I know you agree with Eshey, but this is not what we're here to do.
Anyways, let's disembark and take a good look at it.
Hombre, you're going the wrong wa... |
"""Utilities for working with git refs."""
# =============================================================================
# CONTENTS
# -----------------------------------------------------------------------------
# phlgitu_ref
#
# Public Classes:
# Error
# Name
# .short
# .fq
# .is_remote
#
# Public Funct... |
White Plains, NY, August 19, 2015, Estelle R. Coffino, Program Director and Chairperson of The College of Westchester, has been recognized by Elite American Health Professionals, for dedication, achievement and leadership in higher education.
Ms. Coffino has 32 years of professional experience, with eight years as a pr... |
class Element(object):
def __init__(self, parent, tag=None, attrib=None, close=True):
self.parent = parent
self.tag = tag
self.children = []
self.attrib = attrib if attrib != None else {}
self.close = close
if parent != None:
parent.append_child(self)
... |
Netflix has released a trailer for their upcoming sci-fi flick ARQ. Written and directed by Orphan Black's Tony Elliott, the film will have a world premiere at the Toronto festival on Friday, September 9 before hitting the streaming service on Friday, September 16.
Robbie Amell stars in the time-twisting mystery along ... |
import pygame
NEGRO =(0,0,0 )
class Img:
def __init__ (self, pantalla, img, x, y, Tampantalla ,fondo = None ):
self.img = pygame.image.load(img)
self.fondo = None
if fondo is not None:
self.fondo = pygame.image.load(fondo)
self.p = pantalla
self.x = x
s... |
One of the biggest players in the banking insurance market has a clear ambition: to double its turnover in the next five years. They just didn’t know how. They needed insight into what they had to change in their organisation to make this lofty ambition possible. ITDS was asked to advise the bank what would be necessar... |
from warnings import warn
from numpy import absolute, in1d
from ._plot_mountain import _plot_mountain
def single_sample_gsea(
gene_score,
gene_set_genes,
statistic="ks",
plot=True,
title=None,
gene_score_name=None,
annotation_text_font_size=16,
annotation_text_width=88,
annotatio... |
AAI Motorsports is the sole agent and importer of Buddy Club and TOM'S Racing automotive parts which we distribute primarily within the North, Central and South American region. Along with this, AAI Motorsports is also an exporter of U.S. sourced automotive parts products to Asia.
Inspired by his love of motorsport, AA... |
# cmdline - command line utilities.
import sys
import win32ui
import string
def ParseArgs( str ):
import string
ret=[]
pos = 0
length=len(str)
while pos<length:
try:
while str[pos] in string.whitespace: pos = pos+1
except IndexError:
break
if pos>=length:
break
if str[pos]=='"':
pos=pos+1
... |
Yesterday morning I went to the dentist’s office. My dentist asked me, “How are you doing?” I could have said, “I’m fine, thank you.” But instead, I decided to give her an honest answer: “It’s been a bit stressful lately,” I said. She looked a little surprised by my response.
Obviously she was expecting the usual polit... |
def reverse_dictionary(d):
rev_d = {}
for key in d:
val = d[key]
rev_d[val] = key
return rev_d
class BiDict(object):
"""
Bidirectional dictionary.
Allows inverse listings, value -> key
as well as usual key -> value.
Only supports one to one mapping,
i.e. unique key... |
Searching for a stylish and inexpensive Bar-Stools-Counter-? Look no further! Our adaptable and customizable leather and fabric sofas can be found in a variety of colors and styles. Our trained Sales and Support Squad is open to answer your questions - Give us a call!
At Wayfair, we take a wide collection of Bar-Stools... |
#!/usr/bin/python
# @lint-avoid-python-3-compatibility-imports
#
# qos implement a dynamic qos for using cgroups
# For Linux, uses BCC, eBPF.
#
# USAGE: qos.py [-h] [-qc] [--max] [interval]
# requires a file name qos_setup which can changed with qosfile
# file has format maj:min IOPS
# i.e. 8:0 40000
# Cop... |
This catalogue contains 48 different hazard I.D. labels without text. Four sizes, vertical or horizontal configuration.
You can view our PDF outlining Size & Configuration Here. |
#coding=utf-8
import C
import urllib
import urllib2
import cookielib
import re
import sys
nID = ''
while 1:
nID = raw_input("Input your id and press Enter plz ")
if len(nID) != 7:
print 'wrong length of id,input again'
else:
break
Pass = raw_input("Input your password and... |
Wouldn't it be great if there was one product to fix everything? Even at Rising Sun Workshop the best of us still have skills to master, until then we'll continue to learn from (and cover up) our mistakes until some genius creates the great mythical cover-all.
Printed locally and on high quality 100% cotton shirts.
Mod... |
""" Module providing a single class (QualysConnectConfig) that parses a config
file and provides the information required to build QualysGuard sessions.
"""
import getpass
import logging
import os
import stat
from configparser import RawConfigParser
import qualysapi.settings as qcs
# Setup module level logging.
logg... |
ARCO National Construction Company has expanded its national presence with the opening of a New England office. The Boston area based regional office is located at 153 Cordaville Rd., Suite 320 in Southborough, MA.
Business development efforts and operational oversight for ARCO National Construction – New England will ... |
#!/usr/bin/python2
import collections
import argparse
from softwatch import timelog
from softwatch import timenode
import sys
import time
import os
import glob
import traceback
import codecs
import locale
def run1(args):
run(args[0])
def run(args):
try:
#sys.stdout = codecs.getwriter(locale.getpreferredencodin... |
Vivekanand School cherishes an instinct, reaps a trust, carries a mission and nurtures a dream which every Vivian sees with open eyes- a dream of being an exceptional institution, where a student entrusts his life to his teacher, who, vowing his allegiance to accomplish his goals, leaves no stone unturned. Even in toda... |
# -*- coding: utf-8 -*-
from django.utils.translation import ugettext_lazy as _
from django import forms
import datetime
LEXER_CHOICES = (
('', '---------'),
('text', 'Text plain'),
('c', 'C'),
('cpp', 'C++'),
('d', 'D'),
('csharp', 'C#'),
('go', 'Go'),
('java', 'Java'),
('py', ... |
Josh Putnam does the delegate math, and abortion arguments at the Supreme Court.
Why you should save your Trump-related freakouts until after March 15.
On The Gist, Josh Putnam from Frontloading HQ explains what last night’s Super Tuesday results mean when you do the delegate math. He’s a lecturer at the University of ... |
from typing import Optional, Generator, Any, List
from .db_lib import DbInterface
from .db_types import FontMapsList, FontUnimapsList, FontsList, KeymapsList, DomainsList, TimezonesList, LocalesList
class DbFontMaps(DbInterface):
db_file_name = 'font_maps.csv'
row_class = FontMapsList
lines: List[FontMa... |
Available by email 24/7 gogreendistributions@gmail.com Go Green is a dedicated team with top medical marijuana products and services that is delivering near you! Check out our menu, coupons, and feel free to call or email us with any questions!
Go Green is a dedicated team with top medical marijuana products and servic... |
# Copyright (c) 2010 Google Inc. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
#
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the ... |
A white T-Shirt with a unique graphic design that shares a positive message? Say no more! We are sold! The Martha Women’s Christian T-Shirts are a stylish way to wear your faith and share great messages with those around you. The women’s t-shirt also supports a great cause. Your purchase will go towards donating care p... |
#!/usr/bin/env python3.5
# -*- coding: utf-8 -*-
# Author: ChenLiang
import socket
import os
import json
ip_port = ('127.0.0.1', 8009)
# 买手机
s = socket.socket()
# 拨号
s.connect(ip_port)
# 发送消息
welcome_msg = s.recv(1024)
print("from server:", welcome_msg.decode())
while True:
send_data = input(">>: ").strip()
i... |
LeanBigData partners organize the BOSS’16 workshop (Big Data Open Source Systems) at VLDB 2016. The results of the project will be presented in the Polyglot Data Management Session.
LeanBigData organized jointly with CoherentPaaS the second public workshop: RTPBD 2016 targeting the integration of Polyglot Persistence &... |
# -*- coding: utf8 -*-
__author__ = 'sergey'
from dedupsqlfs.db.mysql.table import Table
class TableTmpIds( Table ):
_engine = "MEMORY"
_table_name = "tmp_ids"
def create( self ):
c = self.getCursor()
# Create table
c.execute(
"CREATE TABLE IF NOT EXISTS `%s` (" % ... |
We are a digital marketing firm specialized in Search Engine Optimization (SEO) for small businesses and Startups. Providing high Return of Investment (ROI) SEO for our clients is our primary focus.
To demonstrate our SEO ability, we create our own websites and rank them high on Google. These websites also provide a pl... |
"""
Draws a vector or "quiver" plot of a set of random points.
- Left-drag pans the plot.
- Mousewheel up and down zooms the plot in and out.
- Pressing "z" brings up the Zoom Box, and you can click-drag a rectangular
region to zoom. If you use a sequence of zoom boxes, pressing alt-left-arrow
and alt-right-a... |
To win in San Diego, QB Joel Stave needs to avoid interceptions.
Paul Chryst’s first season as head coach of the University of Wisconsin football team is wrapping up the same way the previous 13 Badgers seasons have ended: with a bowl game.
Granted, the Holiday Bowl — in which UW will meet the University of Southern Ca... |
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not... |
Conditions for civilians in Yemen’s capital city of Sana’a are “deteriorating by the hour” after six days of violence, the International Committee for the Red Cross said Monday, as the United Nations called for a “humanitarian pause” in the fighting.
Monday saw a dramatic change in the more than two year conflict as fo... |
# vim: noexpandtab:ts=4:sw=4
# This file is part of ReText
# Copyright: Dmitry Shachnev 2012-2015
# License: GNU GPL v2 or higher
from ReText import monofont, globalSettings, tablemode, DOCTYPE_MARKDOWN
from PyQt5.QtCore import QPoint, QSize, Qt
from PyQt5.QtGui import QColor, QPainter, QPalette, QTextCursor, QTextFo... |
Our premium leather brief is handmade in Montreal from thick, full-grain tanned leather. This brief holds your 15" laptop in a lined, padded case. Keep yourself organized with external zip pockets, an inside zip pocket, and a sleeve for your phone. Features include raw edge finish, thick topstitching, YKK Excella. 15" ... |
# Copyright (c) 2015 "Hugo Herter http://hugoherter.com"
#
# This file is part of Billabong.
#
# Intercom 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 Foundation, either version 3 of the
# License, or (at your o... |
I’ve been rereading Seveneves by Neal Stephenson, and really enjoying it. I’m a big fan of his and have read most of his scifi work. I think my all time favorite is Anathem followed by Snowcrash. If you enjoyed Ready Player One then you should check out Snowcrash as they have a similar theme of escaping to the virtual ... |
# Copyright 2015 IBM Corp. 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
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed... |
We have a friendly staff that can get you the fast title loans you need today. Come by our office today and get approved for your quick title loans. No keys are required when you apply for a title loans in wilcox county. The amount you will receive for your title loans depends on the value of your vehicle. It’s short t... |
from bson import ObjectId
from redis import Redis
from twisted.trial.unittest import TestCase
from vusion.component import FlyingMessageManager
class FlyingMessageTestCase(TestCase):
def setUp(self):
self.redis = Redis()
self.prefix_key = 'unittest:testprogram'
self.fm = Fl... |
Real Internet Secrets Workshop (RIS) is really a two and half day intensive internet marketing training by Fabian Lim. This is normally held at Singapore Management University (SMU). The program was once referred to as the Internet Marketing Bootcamp where I was part of the last batch in March 2009. The last RIS Singap... |
#
# Copyright 2017-2021 Universidad Complutense de Madrid
#
# This file is part of Megara DRP
#
# SPDX-License-Identifier: GPL-3.0+
# License-Filename: LICENSE.txt
#
"""
Interpolation method based on:
'Hex-Splines: A Novel Spline Family for Hexagonal Lattices'
van de Ville et al. IEEE Transactions on Image Processing ... |
It has been reported that the elephant-human conflict causes about 250 wild elephant deaths and loss of about 60-70 human lives, annually.It was revealed by researches that wild elephants are unable to remove from their homelands and the current measures taken by the wild life department such as driving away and reloca... |
import os
import shutil
import logging
import re
import socket
from io import open
import git
import yaml
from ..repository import KnowledgeRepository
from ..utils.encoding import encode
logger = logging.getLogger(__name__)
class GitKnowledgeRepository(KnowledgeRepository):
_registry_keys = ['git']
TEMPLA... |
Once you have logged in with your six digit birthday successfully, then you will come to a point that you will need to change this number to a different six digit PIN.
Q: What are the advantages of taking the ECE PhD preliminary exam while I am in the MS degree program?
A: Students who pass the ECE PhD preliminary exam... |
__author__ = 'tilmann.bruckhaus'
class Hanoi:
def __init__(self, disks):
print "Playing \"Towers of Hanoi\" for ", disks, " disks:"
self.disks = disks
self.source_peg = []
self.helper_peg = []
self.target_peg = []
self.set_up_pegs()
self.show()
def sol... |
The latest embarrassing result of a “signature strike” in America’s ever-growing drone war has sparked public protests in South Yemen’s Shabwa Province, where locals expressed outrage at a US attack that killed at least seven civilian members of a single family.
The attack, which took place on January 28, was in a remo... |
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
import ldap3
import windbreads.utils as wdu
import wx
from ldap3tool import LDAPTool
import wxbreads.widgets as wxw
from wxbreads.base import BaseDialog
def ldap_login(server, base_dn, login_name, password, close=True, **kwargs):... |
Located in the center of the Bottières resort, the residence Les Terrasses de la Toussuire is composed of 66 apartments that can accommodate between 2 and 8 people. It offers a grandiose panorama of the surrounding peaks thanks to its large terraces.
Charm and authenticity are the key words of this construction realize... |
#Los datos del problema.
salidas = [ ((2013,11,2), 'LAN123','NewYork','EMBARQUE'),
((2013,4,28), 'MX201', 'Cancun', 'ARRIBADO'),
#...
]
vuelos = { 'LAN123': {'16740623-7', '1111111-1', '555555-5'},
'ALGO00': {'444444-4'},
'MX201': {'777777-7'},
... |
3765 S 14th St, Milwaukee, WI 53221-1643 - This is a Short Sale. Check out this 4 Bedroom, 2 Bath Brick Cape Cod. Great room sizes! A few cosmetic updates and this home will shine again. Property being sold in as-is condition. |
# Copyright 2019 Google 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
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, ... |
I am writing to you all from a net cafe in Paris, after having forcibly removed myself from London town, which has been my home away from home for the past 7 nights (2 extra nights than originally planned).
I'm not sure if you've all heard the news or maybe seen the pictures published in Who Weekly or maybe NW in Melbo... |
# Copyright 2019 Google 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 writing, s... |
As you travel over the dual-carriageway bridge between Vannes and Lorient, you can’t help but notice a pretty little port. Nestled at the bottom of an estuary, Saint-Goustan takes you back in time with its cobbled streets, stone bridge, half-timbered houses and bustling quays. The historic town of Auray is also home to... |
# Departing.io, a web app to answer the question of "When will the next bus come?"
# Copyright (C) 2016 Jake Coppinger
# 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
# the Free Software Foundation, either version 3 of the Li... |
This series features a curated collection of popular images selected by the Wright State University archivists. If you are interested in purchasing a print visit Prints for Purchase.
"Prints for Purchase" (2019). CORE Scholar Slideshow. 64. |
"""Script for syncing files form s3 down to your local machine.
Code is heavily based on
https://github.com/rll/rllab/blob/master/scripts/sync_s3.py
"""
import sys
from flow import config
import os
import argparse
sys.path.append('.')
if __name__ == "__main__":
parser = argparse.ArgumentParser()
parser.add_a... |
Sikiu Perez Ceramic Studio Blog: Full week?
I might have the whole week without appointments, I can't believe it! Alright I'll using my new table and working on installations and paintings so my ceramics are going to turn alive, let's start the magic.
Rodolfo's piece is going to me the first, I already found a piece of... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.