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
| // | |
| // PhotoLibraryAssetManager.swift | |
| // Koowalla | |
| // | |
| // Created by Bryan Cattle on 8/22/16. | |
| // Copyright © 2016 Koowalla, Inc. All rights reserved. | |
| // | |
| import UIKit | |
| import Bolts |
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
| # | |
| # Automatically generated file; DO NOT EDIT. | |
| # Linux/x86_64 4.4.35-33.55.amzn1.x86_64 Kernel Configuration | |
| # | |
| CONFIG_64BIT=y | |
| CONFIG_X86_64=y | |
| CONFIG_X86=y | |
| CONFIG_INSTRUCTION_DECODER=y | |
| CONFIG_PERF_EVENTS_INTEL_UNCORE=y | |
| CONFIG_OUTPUT_FORMAT="elf64-x86-64" |
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
| # -*- coding: utf-8 -*- | |
| """ | |
| Spyder Editor | |
| This is a temporary script file. | |
| """ | |
| # Install OpenCV with | |
| # pip install opencv-python |
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
| # Ours, no blit, plot a timeseries | |
| from datetime import datetime | |
| from matplotlib import pyplot | |
| from matplotlib.animation import FuncAnimation | |
| from random import randrange | |
| import numpy as np | |
| n_pts = 256 | |
| x_data = np.linspace(0, n_pts-1, n_pts) | |
| y_data = np.zeros(n_pts) |
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 functools | |
| import numpy as np | |
| class DataServiceManager: | |
| def __init__(self) -> None: | |
| pass | |
| def service(self, **options): | |
| print('service() called') |
OlderNewer