This file contains 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
# This file describes the standard way to build Docker, using docker | |
# | |
# Usage: | |
# | |
# # Assemble the full dev environment. This is slow the first time. | |
# docker build -t docker . | |
# | |
# # Mount your source in an interactive container for quick testing: | |
# docker run -v `pwd`:/go/src/github.com/docker/docker --privileged -i -t docker bash | |
# |
This file contains 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
Setup SWIG Python module | |
running test | |
running egg_info | |
writing requirements to src/nupic.bindings.egg-info/requires.txt | |
writing src/nupic.bindings.egg-info/PKG-INFO | |
writing namespace_packages to src/nupic.bindings.egg-info/namespace_packages.txt | |
writing top-level names to src/nupic.bindings.egg-info/top_level.txt | |
writing dependency_links to src/nupic.bindings.egg-info/dependency_links.txt | |
writing entry points to src/nupic.bindings.egg-info/entry_points.txt |
This file contains 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
Setup SWIG Python module | |
running test | |
running egg_info | |
writing requirements to src/nupic.bindings.egg-info/requires.txt | |
writing src/nupic.bindings.egg-info/PKG-INFO | |
writing namespace_packages to src/nupic.bindings.egg-info/namespace_packages.txt | |
writing top-level names to src/nupic.bindings.egg-info/top_level.txt | |
writing dependency_links to src/nupic.bindings.egg-info/dependency_links.txt | |
writing entry points to src/nupic.bindings.egg-info/entry_points.txt |
This file contains 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
============================= test session starts ============================== | |
platform linux2 -- Python 2.7.13, pytest-3.0.7, py-1.5.2, pluggy-0.4.0 | |
rootdir: /home/pi/nupic, inifile: | |
plugins: xdist-1.16.0, cov-2.5.0 | |
collected 734 items | |
tests/unit/nupic/serializable_test.py .. | |
tests/unit/nupic/utils_test.py ...... | |
tests/unit/nupic/algorithms/anomaly_likelihood_jeff_test.py ...ss.. | |
tests/unit/nupic/algorithms/anomaly_likelihood_test.py ..................... |
This file contains 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
FROM armhf/debian:jessie | |
# To build on Intel processor (much faster!) | |
# sudo apt install -y qemu qemu-user-static qemu-user binfmt-support | |
# cp /usr/bin/qemu-arm-static ./ | |
# docker run --rm --privileged multiarch/qemu-user-static:register --reset | |
# Comment below line if building on the Raspberry Pi itself | |
COPY ./qemu-arm-static /usr/bin/qemu-arm-static | |
RUN apt-get update && \ |
This file contains 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
======================================================================== pytest-warning summary ======================================================================== | |
WC1 None [pytest] section in setup.cfg files is deprecated, use [tool:pytest] instead. | |
WC1 /home/pi/nupic.core/bindings/py/tests/network_test.py cannot collect test class 'TestLinks' because it has a __init__ constructor |
This file contains 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
============================= test session starts ============================== | |
platform linux2 -- Python 2.7.13, pytest-3.0.7, py-1.6.0, pluggy-0.4.0 | |
rootdir: /home/pi/nupic, inifile: | |
plugins: xdist-1.16.0, cov-2.5.0 | |
collected 738 items | |
tests/unit/nupic/serializable_test.py ... | |
tests/unit/nupic/utils_test.py ...... | |
tests/unit/nupic/algorithms/anomaly_likelihood_jeff_test.py ...ss.. | |
tests/unit/nupic/algorithms/anomaly_likelihood_test.py ..................... |
This file contains 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
============================ pytest-warning summary ============================ | |
WC1 /home/paul/nupic/tests/unit/nupic/engine/network_test.py cannot collect test class 'TestNode' because it has a __init__ constructor | |
WC1 /home/paul/nupic/tests/unit/nupic/frameworks/opf/htmpredictionmodel_classifier_helper_test.py cannot collect test class 'TestOptionParser' because it has a __init__ constructor | |
WC1 /home/paul/nupic/tests/unit/nupic/regions/knn_anomaly_classifier_region_test.py cannot collect test class 'TestOptionParser' because it has a __init__ constructor | |
WC1 /home/paul/nupic/tests/unit/nupic/support/decorators_test.py cannot collect test class 'TestParentException' because it has a __init__ constructor | |
WC1 /home/paul/nupic/tests/unit/nupic/support/decorators_test.py cannot collect test class 'TestChildException' because it has a __init__ constructor | |
=== 713 passed, 17 skipped, 8 xfailed, 5 pytest-warnings in 3734.65 seconds === |
This file contains 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
#!/bin/bash | |
# ================================================================= | |
# Stream configuration file for Raspberry Pi Camera | |
# | |
# @author Russell Feldhausen ([email protected]) | |
# @version 2019-06-05 | |
# | |
# This set of commands should allow you to stream video from your | |
# Raspberry Pi Camera to Twitch and Youtube (and possibly other |
This file contains 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
#!/bin/bash | |
# Usage: | |
# chmod +x ./create-hotspot-debian.sh | |
# sudo ./create-hotspot-debian.sh <ssid> <pass> [--usetor] [--reverse] | |
# Exit immediately if a command exits with a non-zero status | |
set -e | |
# Must be run with sudo |
OlderNewer