- Just Enough Requirements Management -> http://www.amazon.com/Just-Enough-Requirements-Management-Development-ebook/dp/B00E0LASDE/ref=sr_1_1?s=books&ie=UTF8&qid=1417434102&sr=1-1&keywords=just+enough+software+requirements
- Software Requirement Patterns -> http://www.amazon.com/Software-Requirement-Patterns-Developer-Practices-ebook/dp/B00JDMP7JK/ref=pd_sim_b_8?ie=UTF8&refRID=0EC6EYEQNVY9NN69JF95
- Visual Models for Software Requirements -> http://www.amazon.com/Visual-Software-Requirements-Developer-Practices-ebook/dp/B00JDMPHUY/ref=pd_sim_kstore_8?ie=UTF8&refRID=1MP1E0KBR26B84V1BT6B
- Software Architect Bootcamp (2nd Edition) -> http://www.amazon.com/Software-Architect-Bootcamp-Thomas-Mowbray/dp/0131412272/ref=sr_1_1?ie=UTF8&qid=1417433614&sr=8-1&keywords=software+architecture+bootcamp*
- Lean Architecture: for Agile Software Development -> http://www.amazon.com/Lean-Architecture-Agile-Software-Development/dp/0470684208/ref=pd_sim_sbs_b_7?ie=UTF8&refRID=12TCSAJAC7G7YY54NANZ
- Enterprise Integrati
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import numpy as np | |
| import pandas as pd | |
| import datetime | |
| import urllib | |
| from bokeh.plotting import * | |
| from bokeh.models import HoverTool | |
| from collections import OrderedDict | |
| ## Read in our data. We've aggregated it by date already, so we don't need to worry about paging |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #List unique values in a DataFrame column | |
| pd.unique(df.column_name.ravel()) | |
| #Convert Series datatype to numeric, getting rid of any non-numeric values | |
| df['col'] = df['col'].astype(str).convert_objects(convert_numeric=True) | |
| #Grab DataFrame rows where column has certain values | |
| valuelist = ['value1', 'value2', 'value3'] | |
| df = df[df.column.isin(value_list)] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| required packages: | |
| numpy | |
| matplotlib | |
| basemap: http://matplotlib.org/basemap/users/installing.html | |
| shapely: https://pypi.python.org/pypi/Shapely | |
| descartes: https://pypi.python.org/pypi/descartes | |
| random |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import sys | |
| def progress(count, total, suffix=''): | |
| bar_len = 60 | |
| filled_len = int(round(bar_len * count / float(total))) | |
| percents = round(100.0 * count / float(total), 1) | |
| bar = '=' * filled_len + '-' * (bar_len - filled_len) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """An example of how to perform a multi-threaded unit test of a web service. | |
| The particulars of this example make use of some conventions used when | |
| developing a web service when using the Flask microframework, but can be | |
| modified to fit most needs. | |
| """ | |
| import json | |
| import threading | |
| import time |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import logging | |
| from StringIO import StringIO | |
| from five import grok | |
| from xxx.objects.interfaces import IXXXResearcher | |
| from Products.CMFCore.interfaces import ISiteRoot | |
| from Products.statusmessages.interfaces import IStatusMessage | |
| from xxx.objects.sync import sync_with_xxx |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| Patched version to support PostgreSQL | |
| (original version: https://github.com/pydata/pandas/blob/v0.13.1/pandas/io/sql.py) | |
| Adapted functions are: | |
| - added _write_postgresql | |
| - updated table_exist | |
| - updated get_sqltype | |
| - updated get_schema |
NewerOlder