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
| extern crate rand; | |
| use rand::Rng; | |
| #[derive(Debug)] | |
| pub struct GhettoTrix { | |
| pub data: Vec<Vec<f32>>, | |
| pub rows: u32, | |
| pub columns: u32, | |
| } |
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
| alcimia:Downloads erik$ some_command | |
| -bash: some_command: command not found | |
| alcimia:Downloads erik$ if [[ $? != 0 ]]; then echo "bad command"; fi | |
| bad command | |
| alcimia:Downloads erik$ |
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
| FROM busybox:latest | |
| RUN mkdir /data | |
| VOLUME /data | |
| CMD ["true"] |
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
| FROM busybox:latest | |
| RUN mkdir /data | |
| VOLUME /data | |
| CMD ["true"] |
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
| "Image": "data", | |
| "Volumes": { | |
| "/data": {} | |
| }, |
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
| ---------------------------------------- | |
| Cleaning up... | |
| Removing temporary dir /tmp/pip_build_root... | |
| Command /usr/bin/python -c "import setuptools, tokenize;__file__='/tmp/pip_build_root/nupic/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-xdNuyZ-record/install-record.txt --single-version-externally-managed --compile failed with error code 1 in /tmp/pip_build_root/nupic | |
| Exception information: | |
| Traceback (most recent call last): | |
| File "/usr/local/lib/python2.7/dist-packages/pip-1.5.6-py2.7.egg/pip/basecommand.py", line 122, in main | |
| status = self.run(options, args) | |
| File "/usr/local/lib/python2.7/dist-packages/pip-1.5.6-py2.7.egg/pip/commands/install.py", line 283, in run |
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
| Downloading/unpacking nupic | |
| Using version 0.1.15 (newest of versions: 0.1.15, 0.1.14, 0.1.13, 0.1.10, 0.1.9, 0.1.8, 0.1.7, 0.1.6, 0.1.5, 0.1.4, 0.1.3, 0.1.2, 0.1.1, 0.1.0) | |
| Downloading from URL https://pypi.python.org/packages/source/n/nupic/nupic-0.1.15.tar.gz#md5=d2c883920c8dde50bed2aacad2ad3e65 (from https://pypi.python.org/simple/nupic/) | |
| Running setup.py (path:/tmp/pip_build_root/nupic/setup.py) egg_info for package nupic | |
| running egg_info | |
| creating pip-egg-info/nupic.egg-info | |
| writing pip-egg-info/nupic.egg-info/PKG-INFO | |
| writing top-level names to pip-egg-info/nupic.egg-info/top_level.txt | |
| writing dependency_links to pip-egg-info/nupic.egg-info/dependency_links.txt | |
| writing manifest file 'pip-egg-info/nupic.egg-info/SOURCES.txt' |
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
| Debugger entered--Lisp error: (void-function function-put) | |
| (function-put (quote helm-multi-key-defun) (quote lisp-indent-function) 2) | |
| require(helm-config) | |
| eval((require (quote helm-config)) nil) | |
| eval-expression((require (quote helm-config)) nil) | |
| call-interactively(eval-expression nil nil) |
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
| addSbtPlugin("org.ensime" % "ensime-sbt-cmd" % "0.1.2") | |
| resolvers += Resolver.url("ensime", url("https://github.com/aemoncannon/ensime")) |
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
| #include <stdio.h> | |
| int main(int argc, char *argv[]) | |
| { | |
| int distance = 100; | |
| float power = 2.345f; | |
| double super_power = 56789.4532; | |
| char initial = 'A'; | |
| char first_name[] = "Ravaa"; | |
| char last_name[] = "Voidstar"; |
NewerOlder