text stringlengths 29 850k |
|---|
from datetime import timedelta as td
import json
import re
from urllib.parse import quote, urlencode
from django import forms
from django.forms import URLField
from django.conf import settings
from django.core.exceptions import ValidationError
from hc.front.validators import (
CronExpressionValidator,
Timezone... |
Smashing down barriers with song. Music from the USA, Democratic Republic of Congo, Cape Verde, Mauritius, Guadeloupe, India, Pakistan, Mali, Mauritania, Turkey, Puerto Rico, Niger, and beyond.
Seek the Earth and she will sing. Music from Democratic Republic of Congo, Mexico, Ethiopia, USA, Sudan, Niger, Cuba, South Af... |
"""
desispec.io.fluxcalibration
===========================
IO routines for flux calibration.
"""
from __future__ import absolute_import, print_function
import os
from astropy.io import fits
import numpy,scipy
from desiutil.depend import add_dependencies
from .util import fitsheader, native_endian, makepath
def wri... |
Attack of Professor Zoom!, The Manning, Matthew K.
Captain Boomerang's Comeback! Hoena, Blake A.
Captain Cold's Arctic Eruption Mason, Jane B.
Ice and Flame Mason, Jane B.
Killer Kaleidoscope Bright, J. E. |
#!/usr/bin/env python3
#
# -*- coding: utf8 -*-
# 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 License, or
# (at your option) any later version.
#
# This program i... |
homewatchguru serves the Tampa Bay Beaches of Florida, Pinellas County, St. Petersburg, Manatee County, Sarasota and the surrounding Areas.
Pinellas County: Belleair Beach FL, Clearwater and Clearwater Beach FL, Dunedin FL, Gulfport FL, Indian Rocks Beach FL, Indian Shores FL, Largo FL, Madeira Beach FL, Palm Harbor FL... |
#!/usr/bin/env python
from nose.tools import *
from utilities import execution_path
import os, sys, glob, mapnik
def setup():
# All of the paths used are relative, if we run the tests
# from another directory we need to chdir()
os.chdir(execution_path('.'))
# We expect these files to not raise any
# exc... |
Music, dance and fashion have always been interlinked in street culture and dance culture in China is definitely growing right now. We sat down with one the more prominent dancers in Guangzhou, Foshan, aptly named Biao Ge and find out that it's not just Wong Fei Hong that is famous in Foshan.
FI : Hi Biao Ge, I am curi... |
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright 2005, 2006,2010 Zuza Software Foundation
#
# This file is part of the translate-toolkit
#
# translate 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;... |
This full size 12 cup Bundt(r) pan is made from cast aluminum that heats evenly for perfect cake texture and color. Sturdy cast aluminum provides superior baking performance. The pan is non-stick coated for easy release and clean-up. Bakes elegant, picture-perfect cakes with ease in a shape loved by millions. The pan c... |
# -*- coding: utf-8 -*-
from osv import fields
from datetime import date,datetime,time
import logging
_logger = logging.getLogger(__name__)
#时间段选择
def time_for_selection(self,cr,uid,context = None):
ret = [("%02i:00" % i,"%02i时30分" % i) for i in range(24)] + [("%02i:30" % i,"%02i时00分" % (i+1)) for i in range(24)]
... |
admin, Author at FULHAM & CO.
Trombetta has acquired Electronic Design Inc. (EDI) located in Sheboygan Falls, WI. EDI specializes in customized electronic control design products; many which utilize CAN-based communication.
Abacus Finance Group LLC has provided $16 million to back Fulham & Co‘s acquisition of Alkota Cl... |
import datastore
import timed_input
import packet
import datalogger
import multiprocessing
import position
import time
start_data = False
input_timeout = 3 #3 seconds to wait for response
num_packets = 0
num_failures = 0
init_time = time.time()
print "init_time: ",
print init_time
in_packet = ("",False)
def t_input... |
Different types of logos are used in all spheres of modern life. Today it becomes very hard to create the one that might look unique and would not violate anybody`s rights. At You and Eye Advertising Logo one will find thousands of various logo examples that are related and can be used in all spheres, from business to ... |
import ctypes
import os
import six
from cupy import cuda
MAX_NDIM = 25
def _make_carray(n):
class CArray(ctypes.Structure):
_fields_ = (('data', ctypes.c_void_p),
('size', ctypes.c_int),
('shape', ctypes.c_int * n),
('strides', ctypes.c_int *... |
What: Pajaro Compass Network Spring Stakeholder Meeting & Tour (draft agenda).
The Spring Stakeholder Meeting will focus on watershed resource and restoration partnerships for water quality, flood control, and habitat. There will be a great panel of speakers representing projects in both the upper and lower watershed. ... |
# -*- coding: utf-8 -*-
import os
import logging
import time
from .utils import debounced, flush, gather, kernel_tick, interactive_selection, interactive_cleanup # noqa
import vaex
import IPython.display
base_path = os.path.dirname(__file__)
logger = logging.getLogger("vaex.jupyter")
def _add_toolbar(viz):
fro... |
At Dixon Park Dental Care, our number one goal is to provide the people of Kokomo, Indiana with comprehensive, affordable dental care. Our team of technicians, hygienists, and dentists will work with you to develop a treatment plan that is custom tailored to your unique needs. We utilize state-of-the-art technology so ... |
import app.basic, settings, ui_methods
import simplejson as json
import logging
import tornado.web
from mongoengine.queryset import Q, DoesNotExist, MultipleObjectsReturned
from db.userdb import User
from db.groupdb import Group
from db.profiledb import Profile
from group_api import AcceptInvite
#####################... |
Short Clip of stains vanishing from a towel.
Modeled with Maya using ncloth and displacement maps.
The stains is filmed footage of real ink spreading across a surface, then reversed for the vanishing effect. |
"""
this is a script to help tranfer a data format
that was used initially to store downloaded geocoded coordinates
to the current one...
not a database migration script
note added *2014.03.01 20:07:37 ... script is older than that
"""
import os, json, codecs, re
from helpers import save_json, load_json, Location, Ge... |
What is one major difference between forgiving other people and forgiving yourself?
When you forgive others, if you did nothing wrong, then you do not ask for forgiveness. When you forgive yourself, you usually offend others by what you did. Thus, self-forgiveness involves not only welcoming yourself back into the huma... |
'''
Created on 2015年12月4日
given [1, [2,3], [[4]]], return sum. 计算sum的方法是每向下一个level权重+1,
例子的sum = 1 * 1 + (2 + 3) * 2 + 4 * 3。follow up:每向下一个level 权重 - 1, sum = 3 * 1 +(2 + 3)* 2 + 4 * 1
@author: Darren
'''
def levelSum(string):
if not string:
return 0
index=0
level=0
maxLevel=0
d={}
... |
I have to say — I have always been in full support of cosmopolitan lifestyles — and I love and totally treasure diversity, everything multicultural, and getting around different cities and countries. So I was kind of disappointed when I arrived in Nanning, capital of China’s Guangxi Zhuang Autonomous Region, and did no... |
###########################################################
#
# Copyright (c) 2014, Southpaw Technology
# All Rights Reserved
#
# PROPRIETARY INFORMATION. This software is proprietary to
# Southpaw Technology, and is not to be reproduced, transmitted,
# or disclosed in any way without written permi... |
WE HAVE A WINNER! - WIN Tickets to Mediacorp Channel 5's Celebrate 2012 at Marina Bay S'pore Countdown!
Hope you'll enjoy the show and Fireworks!
Intending to head on down to the Marina Bay Singapore Countdown Party on New Year's Eve?
Want to catch performances by latest Canadian sensation These Kids Wear Crowns, Siti ... |
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import psutil
import pwd
import os
from lazagne.config.module_info import ModuleInfo
from lazagne.config import homes
try:
from ConfigParser import ConfigParser # Python 2.7
except ImportError:
from configparser import ConfigParser # Python 3
class Cli(Modul... |
The Jobs of Tomorrow? - Rally, Comrades!Rally, Comrades!
The U.S. community college system is the largest public education system in the world, with over 5 million students. Community colleges traditionally have been used by students for remediation, life-long learning, training in specific skills, and for two-year deg... |
# -*- coding: utf-8 -*-
from lxml import etree
from odoo.tests.common import TransactionCase
from odoo.tools.safe_eval import safe_eval as eval
class CRUDCase(TransactionCase):
def crud(self, model, create_vals={}, write_vals={}, check_vals={}, view_id=None):
arch = model.fields_view_get(view_id=view_i... |
"There can be acceptance corps."
"There can be acceptance rates."
"There can be acceptance conditions."
"There can be acceptance insurances."
"There can be acceptance levels."
"There can be acceptance forms."
"There can be acceptance corp.s."
"There can be acceptance bills."
"There can be acceptance periods."
"There ca... |
# -*- coding: utf-8 -*-
from __future__ import division
import decimal
from collections import namedtuple
from six import PY3
from .exchange_rates import get_exchange_rate
from .exceptions import ExchangeError, MoneyError
def round_amount(amount, currency):
"""Round a given amount using curreny's exponent.
... |
Every couple wants to have a dream wedding somewhere that is romantic and that they will remember for the rest of their lives. A wedding can be a dream come true by choosing wedding locations in Virginia Beach and then having one of the Virginia Beach wedding receptions.
Planning a wedding can become a nightmare if you... |
from random import randint, sample, choice
from app.models import Category, Designation, Project, Requirement
def add_projects(num_projects=20):
designations = [d['name'] for d in Designation.get_all()]
categories = [c['name'] for c in Category.get_all()]
year = [y['requirement_name'] for y in Requirement.... |
You can easily have confidence in Air Conditioning Top Team to provide the very best expert services when it comes to Goodman Air Conditioning in Avery, CA. You need the most innovative technology in the field, and our team of highly trained professionals will offer exactly that. Our supplies are always of the highest ... |
"""
Django settings for mysite project.
For more information on this file, see
https://docs.djangoproject.com/en/1.6/topics/settings/
For the full list of settings and their values, see
https://docs.djangoproject.com/en/1.6/ref/settings/
"""
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
imp... |
Get in touch with John Kilgore Heating & Air in Apison for a full air conditioning tune up today!
With our comprehensive professional service, we have been able to keep up with the needs of our customers in Apison TN and always bring the highest level of dedication. Our heating & cooling specialists will always respect... |
################################################################################################################
# Collection of routines to update the RoboNet database tables
# Keywords match the class model fields in ../robonet_site/events/models.py
#
# Written by Yiannis Tsapras Sep 2015
# Last update:
############... |
1) Recording the lessons is easy, both in audio and video. The student can later review the lesson, or practice with the recording if appropriate.
2) Zooming in on either hand is easy by moving the camera or the player around, both so the teacher can look at the student's hand, or vice-versa.
3) Re-scheduling due to tr... |
# (c) 2012, Michael DeHaan <michael.dehaan@gmail.com>
#
# This file is part of Ansible
#
# Ansible 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 lat... |
A central bank cannot operate in isolation, adds Nor Shamsiah.
Nor Shamsiah Mohd Yunus is a former official who probed 1MDB under then governor Zeti.
The bank's former deputy governor is widely-tipped to return. |
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import os
import re
import sys
import platform
import subprocess
from setuptools import setup, Extension
from setuptools.command.build_ext import build_ext
from distutils.version import LooseVersion
class CMakeExtension(Extension):
def __init__(self, name, sourcedir=... |
Today’s adventure was pretty straight forward for a change. I decided to install the upright arm shaft, which is the shaft with gears that connects the lower gear shaft with the upper gear shaft. A picture is below and a link to the disassembly of this baby is here.
The upper gear is the smaller one, and that is the on... |
import re
from lingpy.sequence.sound_classes import ipa2tokens, tokens2class
def make_sample_id(gloss_id, lang1, lang2, index1, index2):
"""
Sample IDs should uniquely identify a feature row.
Sample sample ID: 98/English,German/1,1
"""
assert lang1 < lang2
s = str(gloss_id) + '/'
s += lang1 +','+ lang2 + '/... |
If it stays mild like it is, I might venture out on the Mighty Transalp either Tomoz or Friday if any fool be interested. Fish & Chips??
Always interested in fish and chips. . But my steed won't be seeing the road anytime soon I'm afraid.
Rekon it's not worth takin ma machine oot on the salty roads, nae idea yet of whi... |
# -*- coding:utf-8 -*-
# Copyright (c) 2010 Hidekazu Ohnishi.
# 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
# ... |
For the first time ever, Toronto will celebrate the LGBTQ community for an entire month - say hello to Pride Month.
Beginning June 1st, the inaugural event kicks off with the official rainbow flag raising ceremony at Queen’s Park and culminates with the colourful and legendary Pride Parade on July 3. The month-long cel... |
#
# This file is part of Dragonfly.
# (c) Copyright 2007, 2008 by Christo Butcher
# Licensed under the LGPL.
#
# Dragonfly is free software: you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation, either version ... |
This historic B&B is conveniently located within walking distance to downtown. A few units feature an electric fireplace. Not evaluated. Facilities, services, and décor characterize a mid-scale property.
SR 29 exit Lincoln Ave E, 0.5 mi e to Jefferson St, then 0.5 mi s; jct Calistoga Ave. 1301 Jefferson St 94559. |
# coding=utf-8
"""Helper methods."""
from threading import Thread
from flask import jsonify
from werkzeug.exceptions import HTTPException
from flask_mail import Message
from users import mail, APP
def make_json_error(ex):
"""Return errors as json.
See http://flask.pocoo.org/snippets/83/
:param ex: An e... |
6 Apr Google and Mozilla now offer bit versions of Chrome and Firefox for Windows. Here's how to find out what version you're running and how. 15 Dec bit Firefox web browser supports bit Windows systems and delivers high performance browsing on web games and other web.
9 Oct - 56 min - Uploaded by AzooTube CHEB FETHI -... |
# -*- coding: utf-8 -*-
from flask import render_template, request, redirect, url_for, flash
from . import mod
from flask.ext.login import login_required
from flask.ext import login
from app.models import paginate
from app.modules.adm.models.usuario import Perfil
from app.modules.adm.forms.perfil import PerfilFo... |
The 3-phase power to an induction motor is applied to windings in the stator or outside of the motor. The windings are connected into poles. The poles may be salient (protruding) or more commonly embedded in slots in the stator punchings. Poles for the three phases are placed in a sequence. There must be an even number... |
import tensorflow as tf
def get_width_upright(bboxes):
with tf.name_scope('BoundingBoxTransform/get_width_upright'):
bboxes = tf.cast(bboxes, tf.float32)
x1, y1, x2, y2 = tf.split(bboxes, 4, axis=1)
width = x2 - x1 + 1.
height = y2 - y1 + 1.
# Calculate up right point of b... |
Created in 1897, this antique Alfred Meakin dinner plate hails from Tunstall, England. Decorated in the Medway Blue pattern consisting of flowering tree branches, butterflies and a decorative inner band with geometric flowers, this is one of the prettiest antique dinner plates we have ever seen.
Hard to find, in single... |
# Copyright (c) 2015 Uber Technologies, Inc.
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publ... |
Sally is a Level 3 qualified weight trainer, Personal Trainer and a runner. She has been weight training for a number of years where she is now competing.
Sally began to train at the age of 16 and as soon as she began to see a difference in her physique, she was inspired to continue. Sally has suffered with 3 slipped d... |
# -*- coding: utf-8 -*-
# This source file is part of mc4p,
# the Minecraft Portable Protocol-Parsing Proxy.
#
# Copyright (C) 2011 Matthew J. McGill, Simon Marti
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License v2 as published by
# the Free... |
Acting Director of the Office of Personnel Management: Who Is Beth Cobert?
Cobert is from Montclair, New Jersey, where her father, Maxwell, was a senior vice president of a fabric company and her mother, Shirley, was a freelance editor. Cobert graduated from Montclair High School in 1976. She stayed close to home in co... |
from typing import Tuple
import math
# max number of significant digits for a 64-bit float
_MAX_SIGNIFICANT_DIGITS_AFTER_DOT = 15
_MIN_EXP = -323
_MAX_EXP = 308
def sround(value: float, ndigits: int = 0, int_part=False) -> float:
"""
Round *value* to significant number of digits *ndigits*.
:param value... |
I remember the first time that I walked the vaunted halls of HLS. After years of dedication, I felt blessed and privileged to be an incoming Harvard Law student.
And yet, despite Dean Minnow’s reassurance that the admissions committee had not made a mistake, that in fact they had searched the world for us, I shared the... |
#!/usr/bin/python
import re,sys, getopt
#####################################
# last update 03/31/2013 by J. Mass #
# version = '0.1' #
#####################################
def usage():
print ("""
##############################
# Scythe_gff2loc.py v0.1 #
########################... |
The Johnson High School Atom Smashers replaced their orange and blue school colors with pink Wednesday in support of Breast Cancer Awareness Month.
Participants from the campus and community paid $10 each to walk a trail around the campus. Prizes were awarded to groups that walked the most laps. Student groups also col... |
"""
Testing utilities backported from recent Django versions, for testing with
older Django versions.
"""
from __future__ import with_statement
from django.conf import settings, UserSettingsHolder
from django.utils.functional import wraps
class override_settings(object):
"""
Acts as either a decorator, or ... |
This beautifully appointed four bedroom (plus additional bonus room), two full bathrooms, nearly 3000 SQ FT, two car garage (with electric vehicle charging station and OVERSIZED H2O heater), sparkling swimming pool, ginormous gourmet kitchen complete with island/great room/dining combo for family togetherness and fanta... |
import os
from zipfile import ZipFile
from itertools import izip_longest
from django.conf import settings
from utils import save_to_file, save_to_zip, set_header, get_diff
from apps.weapon.models import Weapon, ECM, Sensor, Repair, Construction, Brain, WeaponSound
from apps.structure.models import Structure, Structure... |
First product is under development!
Shewstone Publishing's first product will be an original pen-and-paper roleplaying game of historical fantasy, set in Renaissance Europe. We're in the very early stages. It is too early to say when this product will be ready, other than it will be in 2017 at the earliest.
We'll annou... |
from __future__ import absolute_import, division, print_function, unicode_literals
import pandas as pd
import numpy as np
from pythonToolbox.toolbox import backtest
def settings():
exchange = "stocks" # Exchange to download data for (nyse or nasdaq)
markets = ['A','AAPL','IBM','GOOG','C']
# S... |
The Patriotism Of NPR And Its Sponsor Al Jazeera America : NPR Public Editor Images on Al Jazeera of brutalized Americans in Iraq understandably still trouble some listeners, but NPR's acceptance of sponsorship support from the new Al Jazeera America fall well within free speech and ethical standards. Al Jazeera itself... |
import pytest
def test_oommf_sim():
import oommf
import os.path
oommf.path = "/home/vagrant/oommf-python/oommf/oommf/"
Py = oommf.materials.permalloy
my_geometry = oommf.geometry.Cuboid(
(0, 0, 0), (30, 30, 100), unitlength=1e-9)
sim = oommf.Simulation(my_geometry, cellsize=5e-9, materi... |
Being arrested or having legal proceedings taken up against you is a situation that is completely unanticipated. Defend yourself against legal problems by selecting Legal Liability Protection to defend you and your loved ones. Choosing defense through Arrest Insurance means you never have to worry about how to make it ... |
import re
import os
import csv
import xml.etree.ElementTree as ET
import logging
import glob
from datetime import datetime
from collections import OrderedDict
from bs4 import BeautifulSoup #html parser
class RunParser(object):
"""Parses an Illumina run folder. It generates data for statusdb
notable attribut... |
Your Godson and his Wife are new parents now. Send them your congratulations on their newborn baby girl or boy with these lovely baby feet with elegant fonts on a brown and soft pink background. A sweet card to celebrate this big change in their lives. |
from __future__ import print_function
import numpy as np
class forcecalc(object):
def __init__(self):
pass
##################--SETTERS--##################
def setsolverparams(self,
timestep,
udot,
vdot,
... |
Call me anytime, anywhere, if you live anywhere near Lowry and I’ll make you the highest cash offer I can, for your car. The towing is FREE and I’ll pick-up your car within 24 hours. I'm available everyday - 7 days a week and I’ve got to buy at least 10 cars a day. Any year, make, model, or condition. It doesn’t matter... |
#!/usr/bin/python
#
# Filename:
#
# Version: 1.0.0
#
# Author: Joe Gervais (TryCatchHCF)
#
# Summary:
#
# Part of the DumpsterFire Toolset. See documentation at https://github.com/TryCatchHCF/DumpsterFire
#
#
# Description:
#
#
# Example:
#
#
import os, sys, urllib
from FireModules.fire_module_base_class import *
... |
A social constructionist theory that emerged in 1980s and has seen significant development in the 21st century. It considers how people negotiate and take up their place in any given context. Positioning Theory (Pinnegar & Murphy, 2011) addresses how the individual subjectively perceives his interrelations with others.... |
import os
import imp
try:
imp.find_module('setuptools')
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
README = open('README.rst').read()
setup(
name = "goscalecms",
version = __import__('goscale').__version__,
packages = ... |
New Research Methodology Developed by Skeptics!
Medical Errors? What medical errors!
Dear . Alan Nice drawing . |
#!/usr/bin/env python3
# Copyright (c) 2020, NVIDIA CORPORATION. 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
#
# U... |
‘Productivity’ is one term that every individual, as an efficient resource; and a manager, as an effective leader; should expect from oneself and the team. Time is money and making efficient use of time will not only enable you to gain more, but as a team you can achieve higher goals.
Productivity is nothing but doing ... |
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
]
operations = [
migrations.CreateModel(
name='CaptionedFile',
fields=[
('id', models.AutoFiel... |
Poverty is an emotionally powerful subject. With few exceptions global human quality of life is structured from a base of economic opportunities hailed as modern civilization marching to a cadence seeking prosperity through enterprise, commerce and trade. Contemporary social design is a byproduct of early Mesopotamia r... |
# 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 u... |
WhatsApp APK is a Messenger for smartphone Android and other smartphones. WhatsApp uses to message, voice and video calls with friends and family. Switch from SMS to WhatsApp to send and receive messages, pictures, audio notes, and video messages. WHY USE WHATSAPP. Once you and your friends download the app, you can us... |
#!/usr/bin/python
# coding=utf-8
"""
Project MCM - Micro Content Management
SDOS - Secure Delete Object Store
Copyright (C) <2017> Tim Waizenegger, <University of Stuttgart>
This software may be modified and distributed under the terms
of the MIT license. See the LICENSE file for details.
"""
import io
impor... |
I admit that I didn't read every word of the article, but that is not a picture of a screw worm. I know a squirrel when I see one.
“We create what every previous generation would have described as magic,” he concludes.
Next: Congress claims Harry Potter was a secret weapon that UK stole. They however want more studies ... |
import logging
import os
import re
from optparse import make_option
import polib
from django.conf import settings
from django.core.management.base import BaseCommand
from autotranslate.utils import translate_strings
logger = logging.getLogger(__name__)
class Command(BaseCommand):
help = ('autotranslate all the... |
What is the definition of Iron? It is a heavy malleable ductile magnetic silver-white metallic element that readily rusts in moist air, occurs native in meteorites and combined in most igneous rocks, is the most used of metals, and is vital to biological processes as in transport of oxygen in the body.
The Physical and... |
from dateutil.tz import tz
import datetime
from ib_insync import Contract
from ib_insync import IB
from sysbrokers.IB.ib_connection import connectionIB
from syscore.dateutils import strip_timezone_fromdatetime
from syslogdiag.logger import logger
from syslogdiag.log_to_screen import logtoscreen
_PACING_PERIOD_SECO... |
else, it is equally reporting what download girls have shuffled intricate and complicated for humour, and it is Total to manipulate which membranes felt drawn in the based quality. We are that there require download the links that obligations of BSD should analyze in sharing to build future consumption about the offenc... |
from flask import Blueprint, make_response, request, jsonify, \
session as flask_session
import json
from sqlalchemy import Table, func, or_
from api.database import session, engine, Base
from api.models import SourceDest
endpoints = Blueprint('endpoints', __name__)
@endpoints.route('/matrix/')
def matrix():
... |
Dave's sister celebrated her 30th birthday yesterday!
I put together a wine themed gift basket. It included a few things I now covet for myself!
Have you heard of the Woozie? The Wine Koozie!
I got the wine gifties from Occasions in Norman, who usually carries my favorite winter candle but they don't have it this year ... |
#!/usr/bin/env python
# encoding: utf-8
"""
maximum-size-subarray-sum-equals-k.py
Created by Shuailong on 2016-01-06.
https://leetcode.com/problems/maximum-size-subarray-sum-equals-k/.
"""
'''Not solved yet.'''
class Solution(object):
def maxSubArrayLen(self, nums, k):
"""
:type nums: List[... |
Here are some tips and suggestions to consider as you send your teen off to college.
Whether it's paint and markers from art class or grass stains from playing outside, stains destroy more school clothes than I like to think about.
Once you begin to declutter your child's toys, you'll find that it's much easier for the... |
########################################################################
# TTools
# Step 1: Create Stream Nodes version 0.953
# Ryan Michie
# This script will take an input polyline feature with unique
# stream IDs and generate evenly spaced points along each
# unique stream ID polyline at a user defined spacing me... |
This Vehicle is equipped with: 17" x 7.5" Aluminum Alloy Wheels, 4-Wheel Disc Brakes, 6 Speakers, ABS brakes, Air Conditioning, AM/FM radio: SiriusXM, Anti-whiplash front head restraints, Auto-dimming Rear-View mirror, Automatic temperature control, Brake assist, Bumpers: body-color, CD player, Delay-off headlights, Dr... |
from __future__ import absolute_import
from uitools.qt import QtCore, QtGui, Qt
from maya import cmds, mel
import sgpublish.exporter.ui.publish.maya
import sgpublish.exporter.ui.tabwidget
import sgpublish.exporter.ui.workarea
import sgpublish.uiutils
from sgpublish.exporter.ui.publish.generic import PublishSafetyErr... |
Loaded bacon & cheese. Served with a side of ranch.
Served with mushrooms & onions.
5 large shrimp lightly breaded, seasoned & fried. Served on a skewer with choice of cocktail or sweet Thai chili sauce.
6 large shrimp served with cocktail sauce.
2 crab cakes topped with greens & drizzled with seafood sauce served on H... |
##############################################################################
#
# OSIS stands for Open Student Information System. It's an application
# designed to manage the core business of higher education institutions,
# such as universities, faculties, institutes and professional schools.
# The core ... |
Guar Gum is primarily the ground endosperm of guar beans. The guar seeds are dehusked, milled and screened to obtain guar gum. It is typically produced as a free-flowing, off-white powder.
Guar Gum is used in the textile industry for sizing, finishing and printing. In the paper industry, explosives, pharmaceuticals, co... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.