text
stringlengths
29
850k
#------------------------------------------------------------------------------ # Copyright 2013 Esri # 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/LICENS...
We know that when we evaluate an absolute value, the result will be positive, regardless of the sign of what is inside of the absolute value bars. Thus, we consider that the variable could be either a positive or a negative number. Furthermore, the definition of an absolute value tells us that if the absolute value of ...
from django.db import models import string class Tweet(models.Model): user = models.BigIntegerField() tid = models.BigIntegerField() lat = models.FloatField() lon = models.FloatField() text = models.TextField(max_length=256) time = models.DateField() kwd = models.CharField(max_length=50) ...
Sedona is a YA/New Adult sci fi fantasy. Surfer ballet dancer – her posse includes a black lab, a pelican, a cousin with an evil twin, an old surfer dude, and a huge black bear. dude exudes calm and shares wisdom beyond anything she’s heard from the family therapist. With fewer words. Why does the rest of the world see...
from django.db import models from django.contrib.auth.models import User class Product(models.Model): """ A product is an entity related to any food having nutritional consistency """ id = models.AutoField(primary_key=True) name = models.CharField(max_length=30) # Proteins/fats/carbohydrat...
I started noticing my love for photography when I was a teenager. There was a photo of our family during Hari Raya taken at our kampung in Pahang, Malaysia, that struck a chord. My father travelled quite a lot, so it was quite hard for us to take a nice, proper family photograph together. I remember wanting to hold on ...
"""Utilities for loading modules, supporting programmatic imports of types:: >>>from import_utils import import_module_from, import_module >>>import x as mod_x >>>mod_x = import_module('x') >>> >>>import x.y as mod_xy >>>mod_xy = import_module('x.y') >>> >>>from x.y import z >>>z = ...
President Barack Obama on Wednesday announced the creation of the Next Generation Power Electronics Institute at North Carolina State University's Centennial Campus in Raleigh. The U.S Department of Energy is dedicating $70 million to the institute, which will work to develop the next generation of energy-saving electr...
# -*- coding: utf-8 -*- # (c) 2016 Alfredo de la Fuente - AvanzOSC # License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html from openerp import models, fields, api, _ class EventEvent(models.Model): _inherit = 'event.event' no_employee_registration_ids = fields.One2many( comodel_name='event.r...
Portable Toilet Rental is known for providing our customers with the best service in the state. We offer the highest quality and best selection of porta potties, dumpsters, showers and sinks, and restroom trailers in Nebraska. Taking care of your specific needs is our top priority. We have both short and long term rent...
# -*- coding: utf-8 -*- from datetime import datetime from dateutil import relativedelta import json import random from openerp import tools from openerp.exceptions import Warning from openerp.tools.safe_eval import safe_eval as eval from openerp.tools.translate import _ from openerp.tools import ustr from openerp.os...
Sports coaching requires professional individuals as it is extremely important and aims to bridge the gap between sports and science. Sports coaching has a lot of theory incorporated into it, just like the other concepts. However to ensure that there is something different as compared to the rest of the other theories,...
# Name: mapper_radarsat2 # Purpose: Nansat mapping for Radarsat2 data # Authors: Morten W. Hansen, Knut-Frode Dagestad, Anton Korosov # Licence: This file is part of NANSAT. You can redistribute it or modify # under the terms of GNU General Public License, v.3 # http:/...
Kottonmouth Kings frontman Daddy X says his former business partner totally bogarted him ... but not out of a fat joint ... out of millions of dollars. X says for more than 5 years Kevin Zinger -- co-founder of his record label -- illegally paid himself a total of $600k more than his approved salary. And Daddy claims h...
import unicodedata import regex import roman import datetime import pytz import time from pynab import log import pynab.util from pynab.interfaces.movie import INTERFACES as MOVIE_INTERFACES from pynab.interfaces.tv import INTERFACES as TV_INTERFACES from pynab.db import db_session, windowed_query, Release, MetaBlack,...
Santa Ana is the hipster mecca of OC these days. When I found out a new sandwich shop had arrived I was overjoyed. San Francisco had more delis in one district then South OC has in its entire vicinity. C4 is definitely a welcoming sight! 1. Clean, yet art deco appearance. When you think hipsters, you usually think unsh...
#!/usr/bin/env python3 ''' Chapter 11 showed you how to use the requests module to scrape data from http://weather.gov/. Write a program that runs just before you wake up in the morning and checks whether it’s raining that day. If so, have the program text you a reminder to pack an umbrella before leaving the house. T...
Overall result - chip.com.tr IS family friendly. All sources consider chip.com.tr trustworthy and family friendly. Website chip.com.tr has a credible reputation. Norton ConnectSafe evaluates chip.com.tr for any unsafe and insecure content. The results are critical for families with young children. ALLOWS chip.com.tr se...
# Author(s): Silvio Gregorini (silviogregorini@openforce.it) # Copyright 2019 Openforce Srls Unipersonale (www.openforce.it) # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). from odoo import _, api, fields, models from odoo.exceptions import ValidationError class DepLineType(models.Model): _name ...
Average appliance Repair Cost in Yaphank call 631-526-7049, this page will give you some appliance repair estimates for appliances including refrigerator repair cost, dryer repair cost, washer repair cost, oven repair cost, stove repair cost and dishwasher repair cost. Please note that appliance repair costs will vary ...
# Copyright (c) 2019 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. from typing import Optional from ..BaseModel import BaseModel ## Model for the types of changes that are needed before a print job can start class ClusterPrintJobConfigurationChange(BaseModel): ## Creates a new print...
Yesterday was one of those days. Normally I'm up before the alarm rings at 5:00 AM, but after a restless night I slept until the alarm went off. For some reason I didn't go out the back door, instead I walked in to kitchen to put on a pot of coffee. That's when my day really began. As I reached the end of the hall I co...
# Copyright 2013, 2014, 2015, 2016, 2017 Kevin Reid and the ShinySDR contributors # # This file is part of ShinySDR. # # ShinySDR 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 Licens...
It was an easy 3 hour drive up to Quebec, where the pine trees begin to take over from deciduous fall colours. We're now in hotels for 10 days and on our own. Time to spread out a bit, more reading and exploring, probably determined to some extent by variable weather. The dominance of French speakers, French signage an...
#!/usr/bin/env python ''' decode RCDA messages from a log and optionally play back to a serial port. The RCDA message is captures RC input bytes when RC_OPTIONS=16 is set ''' import struct from argparse import ArgumentParser parser = ArgumentParser(description=__doc__) parser.add_argument("--condition", default=None...
Spring is Here! Have you booked your stay with Rusty Hook yet? Book your Spring/Summer getaway with us today. Modern Cabin rentals and Convenience Store at Tobin Lake Location: Hwy 255 @ Resort Village of Tobin Lake - We are the very first property upon entering the village at the top of the hill. Book one of our moder...
# -*-mode: python; py-indent-offset: 4; indent-tabs-mode: nil; encoding: utf-8-dos; coding: utf-8 -*- import sys from optparse import OptionParser, make_option from OpenTrader.deps.cmd2plus import remaining_args, ParsedString lOPTIONS_DEFINED = [] def options(option_list, arg_desc="arg", usage=None): '''Used as ...
Gallery is a kind of Photography apps for Android, 9Apps official website provides download and walkthrough for Gallery,. Exacoin ICO is a kind of Finance apps for Android, 9Apps official website provides download and walkthrough for Exacoin ICO, Play free Exacoin ICO online. Security Gallery is a kind of Productivity ...
#!/usr/bin/env python # Software License Agreement (BSD License) # # Copyright (c) 2008, Willow Garage, 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...
Password Password must be at least eight characters long and contain at least one letter and one number. The use of upper and lowercase and special characters is encouraged. If you already have an NSGA membership, please enter your NSGA member ID below.
#!/usr/bin/python # Logistic Regression from scratch # In[62]: # In[63]: # importing all the required libraries """ Implementing logistic regression for classification problem Helpful resources: Coursera ML course https://medium.com/@martinpella/logistic-regression-from-scratch-in-python-124c5636b8ac """ import nu...
Don't miss the season's lowest prices now at Pleasurements. Popular now: 15% Off Any Order.Click here to start shopping! Get the latest offers and promotional code for your local Pleasurements store when you decide to enjoy the product at Pleasurements. Don't miss this amazing offer! Shop Pleasurements today for great ...
from daiquiri.core.renderers import XMLRenderer from daiquiri.core.renderers.datacite import DataciteRendererMixin from daiquiri.core.renderers.dublincore import DublincoreRendererMixin from daiquiri.core.renderers.voresource import VoresourceRendererMixin class OaiRenderer(DublincoreRendererMixin, DataciteRendererMi...
Does anyone have a fightpad I could buy off them? Was just at Microplay in Guelph yesterday and they were selling a Marvel fightpad for 360. You should check it out.
#!/usr/bin/env python # find_differential_primers.py # # A Python script that identifies pairs of forward and reverse primers which # are capable of amplifying either individual organisms, or a particular # family of organisms, from a set of genome sequences. Primers are expected # to be located within CDS features, i...
Sociologists of education rooted in social realism have for more than a decade argued that knowledge matters in education, there are different kinds of knowledge, not all forms of knowledge are equal and that these differentiations have significant implications for curriculum. While this argument has made an important ...
# -*- coding: utf-8 -*- # These tests don't work at the moment, due to the security_groups multi select not working # in selenium (the group is selected then immediately reset) from textwrap import dedent import fauxfactory import pytest from riggerlib import recursive_update from widgetastic_patternfly import Checkab...
Hailing from Rome, Nagual has been an original contributor to the Trivmvirate concept, and we’ve had the pleasure to closely work with him in our previous life, so his debut on Trivmvirate couldn’t make us any happier. Nagual production follow indeed our ethos: evolution based on past knowledge. Deeply crafted beats an...
#!/usr/bin/env python3 # -*- coding: utf-8 -*- # # Telegram bot to play UNO in group chats # Copyright (c) 2016 Jannes Höke <uno@jhoeke.de> # # 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 Foundatio...
In this Instructable I will be using 3 iPhone apps to create compelling comics. These are the best apps I have found for iPhone, but I am sure there are just as equally worthy apps in the App Store. I use the Google browser for finding images on the web, but you can use Safari for the same task. You can also use images...
from celery.decorators import task import sendgrid from django.conf import settings from micro_blog.models import Subscribers, Post, Category from .send_grid import * import datetime from micro_admin.models import User from django.template import loader @task def create_contact_in_category(category_name, email_addres...
Webster University team members Brodie Dakin and Tyler Thorman were named 2014-15 Cleveland Golf/Srixon All-American Scholars by the Golf Coaches Association of America (GCAA). The twosome become the first Gorloks in the golf program's history to earn the distinction, and the first in the St. Louis Intercollegiate Athl...
########################################################################## # This file is part of WTFramework. # # WTFramework 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 L...
Volname returns the volume name for a device formatted with an ISO-9660 file system, typically a CD-ROM. The device file name can be specified on the command line. If omitted, it defaults to /dev/cdrom. file COPYING and notes in the source code for details.
""" - `File`: sanitization.py - `Description`: xss challenge 1: How importatn to do sanitization """ import webapp2 from google.appengine.ext.webapp import template import re import os import constants import random import logging import urlparse import urllib class ResultVerifyHandler(webapp2.RequestHandler): ...
Shopping the bulk section is one of my favorite ways to grocery shop, especially in the spice section. The prices are on point and you can get just the right amount of the ingredient you need. One secret of bulk shopping is bringing your own containers. It helps you stay organized and you don't have to unload your groc...
import datetime import os import requests import shutil import subprocess import time """ NOTE: This gets used in initial setup of console by the setup program ** Don't add any dependencies on other parts of the console (E.g., no logging """ def StageVersion(vdir, tag, label): logf = open('stagelog.log', 'w') prin...
An Development Application (DA-2018/158) has been lodged to redevelop 475 – 501 Victoria Avenue. The property is located between the Pacific Highway and the railway, diagonally opposite Chatswood RSL. The proposal is to demolish the buildings on the site and erect two new buildings. One a four storey commercial buildin...
from gi import require_version require_version("Gtk", "3.0") from gi.repository import Gtk, GdkPixbuf, GLib, Gdk import helpers from stream_select import FileChooserWindow, NetworkStream class PlaylistManager(Gtk.Window): def __init__(self, playlist, enable_web, transcoder, probe, preferred_transcoder, counter):...
The tour embraces all three Baltic countries, Estonia, Latvia and Lithuania, each of which has its own distinctive cultural tradition and historical heritage. The three capitals are renowned for their charming old town areas, full of architectural gems. The captivating countryside is worth discovering for its quaint to...
# -*- coding: utf-8 -*- import bf_logging class BetfairError(Exception): def __init__(self, message): bf_logging.main_logger.exception(message) # pass pass class BetfairLoginError(BetfairError): def __init__(self, response, data): self.response = response self.message = d...
| Overall, catches of flounder and red drum are good in local estuaries. On the south end, Capt. Mike McDonald of Gul-R-Boy Guide Service in Georgetown had a solid trip on Winyah Bay in the rain on Monday, catching seven red drum including a five-pounder plus a black drum while fishing cut shrimp on floats in the grass...
# -*- coding: utf-8 -*- # Generated by Django 1.10.5 on 2017-02-19 21:15 from __future__ import unicode_literals from django.db import migrations, models import media.models import videokit.models class Migration(migrations.Migration): initial = True dependencies = [ ] operations = [ migra...
​​​The CFA Institute Research Challenge is a worldwide competition through which CFA Institute sets up the proper environment for undergraduates and graduates enrolled in a university program to compete on delivering equity research coverage of a publicly traded subject company. The winning team at local level goes to ...
from __future__ import absolute_import, unicode_literals import os import sys from abc import ABCMeta, abstractmethod from six import add_metaclass from virtualenv.util.six import ensure_text from .activator import Activator if sys.version_info >= (3, 7): from importlib.resources import read_binary else: f...
Before we got Peru, Fred and I decided how we’d surprise our kids. We were going to send a photo of her every day leading up to the Monday they were all going to be introduced to her. Of course, things don’t always go as planned. I sent one photo and that was it. Fred sent 3? I can’t remember. The day we introduced her...
#!/usr/bin/env python3 import numpy as np import pyqtgraph.opengl as gl from pyqtgraph.Qt import QtCore w = gl.GLViewWidget() w.opts['distance'] = 20 g = gl.GLGridItem() w.addItem(g) ## ## First example is a set of points with pxMode=False ## These demonstrate the ability to have points with real size down to a ve...
Puremagnetik has announced the release of 3 Free Sound Sets and HarvestPak, a collection of patches programmed from The Harvestman synthesizer modules. Puremagnetik has just added 3 free new instruments to their PakBytes library. PakBytes are quick downloads that include handpicked instruments from Puremagnetik’s Micro...
# -*- coding: utf-8 -*- from django.db import models, migrations import sa_api_v2.models.caching import django.contrib.gis.db.models.fields import sa_api_v2.models.core import django.utils.timezone import sa_api_v2.models.mixins from django.conf import settings import sa_api_v2.apikey.models import django.core.files....
Configuring two comparable cloud storage solutions allowed the customer to judge the cost between the two platforms and test which configuration would work best for their storage needs. A rapidly growing consumer lender had the foresight to create hybrid cloud-ready active/active data centers to improve reliability, pe...
# -*- encoding: utf-8 -*- import pickle from abjad import * def test_documentationtools_GraphvizGraph_pickle_01(): graph = documentationtools.GraphvizGraph() graph.append(documentationtools.GraphvizSubgraph()) graph[0].append(documentationtools.GraphvizNode()) graph[0].append(documentationtools.Graph...
Clear Lake is always a first of the season place to ice fish. The lake is very shallow throughout and freezes very quickly. The beginning of the ice season is also the perfect time to fish the shallow weeds that surround much of the lake. This was our target today as I was joined by David Gissel and Cameron Arnold. Lik...
# -*- coding: utf-8 -*- # @Author: Patrick Bos # @Date: 2016-11-16 16:23:55 # @Last Modified by: Patrick Bos # @Last Modified time: 2016-11-21 18:10:00 import pandas as pd # fn = "timings.json" # fn = "timings_stbc_20161117.json" fn = "timings_stbc_20161121.json" with open(fn, 'r') as fh: json_array_inside_t...
Ash Fontana leads fundraising products like online investing, syndicates and funds at AngelList that drive over $20 million per month to startup companies. Ash previously co-founded and sold Topguest, a Founders Fund-backed company that built marketing technology for companies like IHG, United and Ceasars Entertainment...
from . import utils from .utils import cbc from requests.auth import HTTPBasicAuth from urllib.parse import urljoin __all__ = [ # constants 'SCRIPT_KIND', 'EXPLICIT_KIND', 'IMPLICIT_KIND', 'APPLICATION_INSTALLED_KIND', 'APPLICATION_EXPLICIT_KIND', 'ALL_SCOPES', # Classes 'OAuth', 'Authorization' ]...
I vaguely remember the first time I played Magic: the Gathering. I think it was on a camping trip with some family friends. I was handed a black deck and given basic descriptions of the various colors. This deck made rats. Lots of rats. I played some cards, was told what tapping was, and made rats. I don’t think I unde...
''' figures.py - Create all the ColorPy sample figures. Description: Creates the sample figures. This can also create the figures with some non-default initialization conditions. Functions: figures() - Create all the sample figures. figures_clip_clamp_to_zero () - Adjust the color clipping method, and cre...
A CHARMING and SPACIOUS property bursting with CHARACTER, very well placed in the delightful semi-rural hamlet of Hatton. To the ground floor the accommodation comprises FOUR separate reception rooms plus a BEAUTIFUL kitchen with WC. To the first floor there are THREE DOUBLE bedrooms, a further single bedroom and a fam...
import time import tests recorded_events = [ ] def event(self, name, args, kwargs): global recorded_events print "*EVENT*", time.time(), self, name, args, kwargs recorded_events.append((time.time(), self, name, args, kwargs)) def eventfnc(f): name = f.__name__ def wrapper(self, *args, **kwargs): event(self, n...
Working directly on the structure of the building, Williams will allow the visitor to have access to it through the original museum entrance and, by a balanced interplay of additions and removals, he will partially rediscover the itineraries, disposition of masses, explanatory structures and original outlay as they wer...
import matplotlib.pyplot as plt class PlaceFieldVisualizer: def __init__(self, fields): self.fields=fields self.callbacks={} fig=plt.figure() cid = fig.canvas.mpl_connect('button_press_event', self.onclick) cid_k=fig.canvas.mpl_connect('key_press_event', self.onKeyPress...
Terma provides customized electronic systems for space missions as well as more standardized solutions such as Terma's well-proven modular power supply system. Terma is also contracted to deliver the Power Conditioning and Distribution Unit for the first four satellites of the European Galileo satellite navigation syst...
from gourmet.plugin import ToolPlugin from . import fieldEditor from gi.repository import Gtk from gettext import gettext as _ class FieldEditorPlugin (ToolPlugin): menu_items = '''<placeholder name="DataTool"> <menuitem action="FieldEditor"/> </placeholder> ''' def setup_action_groups (self): ...
Sticking towards the theory of "Super Good quality, Satisfactory service" ,We are striving to become a superb business enterprise partner of you for Street Pole Lighting , street lighting , LED Street Lighting , We've been prepared to cooperate with company friends from at your home and overseas and produce a wonderful...
from functools import partial from toolz.compatibility import range, map def hashable(x): try: hash(x) return True except TypeError: return False def transitive_get(key, d): """ Transitive dict.get >>> d = {1: 2, 2: 3, 3: 4} >>> d.get(1) 2 >>> transitive_get(1, d...
Ulysse Nardin - Paul Nardin small 5-minute repeater with original box and certificate circa 1900. Fancy white enamel dial with black and gold markings and fancy gold hands. Plain polish case with repeater slide in the band. Nickel 27 jewel movement jeweled to the center and the hammers and with wolf tooth winding. Sign...
#!/usr/bin/env python2 """ Recursive Bayes for POMDP belief-state tracking. Max-a-posteriori estimation. """ # Dependencies from __future__ import division import numpy as np; npl = np.linalg import matplotlib.pyplot as plt # State, action, measurement, and time cardinalities nS = 3; nA = 2; nM = 2; nT = 100 # Trans...
June marks the sad second anniversary of Downey Civic Light Opera being forced out of existence by VenueTech, which began (mis)managing the civic theater on Jan. 26, 2011. The Downey Theater was literally built for DCLO in 1970 as a result of their efforts. Most of us will not soon forget the high quality musicals that...
# # linter.py # Linter for SublimeLinter3, a code checking framework for Sublime Text 3 # # Written by Aparajita Fishman # Copyright (c) 2015 The SublimeLinter Community # # License: MIT # """This module exports the PHPLint plugin class.""" from SublimeLinter.lint import Linter class PHPLint(Linter): """Provid...
I was around seven or eight years old. I was with my dad on the University of Illinois campus. We stopped at the university store and I found a small basketball. I took it out of the bin and excitedly showed it to my dad. "Alright" he said. We left the store to walk back to my dad's office. "Can I hold the ball?" I ask...
# Copyright (c) 2015 Clinton Knight. 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 requir...
One perk to being unemployed for the summer is I get to have days off with the Frenchman. Which means days off for the whole family which means family days out! Last week we headed down to Limerick to visit King John’s Castle.
from progressivis.core.utils import filepath_to_buffer from . import ProgressiveTest, skip, skipIf import requests, tempfile, os HTTP_URL = ('http://s3.amazonaws.com/h2o-release/h2o/master' '/1193/docs-website/resources/publicdata.html') S3_URL = ('s3://h2o-release/h2o/master/1193/docs-website' ...
Marin Katusa is the author of the New York Times bestseller, The Colder War. Over the last decade, he has become one of the most successful portfolio managers in the resource sector, such as his 2009 Fund Partnership (KC50 Fund, LLC) which has outperformed the comparable index, the TSX.V by over 500% post fees. Katusa ...
import tensorflow as tf def shape_probe(tensor): return tf.Print(tensor, [tf.shape(tensor)], message='Shape=', summarize=10) def min_max_probe(tensor): return tf.Print(tensor, [tf.reduce_min(tensor), tf.reduce_max(tensor)], message='Min, max=', summarize=10) def conv_map_montage(conv_maps): """ Montage of co...
The Kalette looks like a miniature Brussels sprout with wings. It is slightly smaller in size than the standard sprout, yet more leafy, like kale. Bay Area artists created a pop-up art installation honoring the Ethiopian and Eritrean new year.
# -*- coding: utf-8 -*- """ Created on Mon Oct 30 17:21:27 2017 @author: carlos.arana Descripcion: Procesa los datos del parámetro para regresar la variable de integridad. Si la Variable de Integridad es del tipo: Tipo 1 (Binaria), la funcion busca celdas vacías en una sola columna y regresa 0 si la celda esta v...
The taste of fresh sliced melon washes the palate and refreshes the spirit. A special blend of organic white tea with all the antioxidant power that white tea leaves have to offer and fresh cantaloupe essence and jasmine. Perfect as an iced tea or after a meal. As far as I know, there are no figs in it, but, there is s...
## @package csnVisualStudio2010 # Definition of the csnVisualStudio2010 compilers. # \ingroup compiler import csnCompiler import os class Compiler(csnCompiler.Compiler): """ Abstract Visual Studio 2010 compiler. """ def __init__(self): csnCompiler.Compiler.__init__(self) self.postProcessor = P...
According to the latest breaking news, the president of the USA, Mr. Donald Trump has been facing large-scale criticisms and threats from the governments of six states along with Texas, for his administration's struggling campaign over bringing the in-effect DACA to an end completely. Deferred Action for Childhood Arri...
# This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. from sqlalchemy import Boolean, Column, ForeignKey, Integer, String from sqlalchemy.orm import relationship from pulseg...
This book applies to you, the hard worker. chaotic projects, poor communication, and other barriers to getting things done. Because work doesn’t have to be a four-letter word. You may work for a company that claims to demonstrate an “open workspace” until you notice that the cube walls are taller than you and the floor...
from __future__ import division import math from datetime import datetime from pyglow.pyglow import Point # using back-port for python2 (enum34 package) --- this is in the # python3 standard library (>=3.4) from enum import Enum class OplusType(Enum): ne = 1 charge_neutrality = 2 """ The following (alpha1...
British sprinter Sonia Lannaman talks about the triumphs and failures of her career duing the 1970s. Scene had previously met Sonia in the programme Sonia and the Olympic Games prior to the Munich Olympics. This follow-up programme was shown in 1979 and features the athlete talking about her career up to the 1978 Europ...
"""Limited-thrust circular orbit transfer.""" import functools import numpy as np import sympy from sympy import sin, cos from scipy import constants, integrate, interpolate import sym2num.model import sym2num.utils import sym2num.var from ceacoest import oc from ceacoest.modelling import symoc @symoc.collocate(o...
Osmium is very hard and has the highest specific weight of all elements (twice as heavy as lead). It has the highest melting point in the platinum metals group. Its bulk modulus is the highest of all known metals and compounds; thereby it is even less compressible than diamond. Osmium is considered as chemically inert....
from django.contrib.auth.models import AnonymousUser, User from django.template import Context, Template from django.test import SimpleTestCase, TestCase from django.urls import reverse from rest_framework import status from ..api.serializers import SnippetSerializer from ..models import Bookmark, Language, Snippet fr...
The TWENTY Tour. Broadcast LIVE from Croke Park stadium, Dublin. The final spectacular show of the UK and Ireland leg of the ‘The Twenty Tour’ will be broadcast LIVE to cinemas from Dublin’s iconic Croke Park stadium. Irish heartthrobs Shane, Nicky, Mark and Kian will perform brand-new music alongside their greatest hi...
""" So far, very little is actually tested here, because there aren't many functions that can be tested outside of actually running them on Travis. """ import tempfile import os from os.path import join import pytest from ..travis import sync_from_log @pytest.mark.parametrize("src", ["src"]) @pytest.mark.parametriz...
This short is inspired by my love of fishing, particularly for freshwater perch on Lake Huron. Nearly every summer of my existence has included trips to my grandparent's summer house in the U.P. where I have enjoyed many days fishing for these little fish off of the dock. The character is inspired by Puddleglum the mar...