0xcc 0x00
[固定] [addr]
| // Copyright (C) 2013 Davis E. King (davis@dlib.net) | |
| // License: Boost Software License See LICENSE.txt for the full license. | |
| #include <dlib/python.h> | |
| #include <boost/shared_ptr.hpp> | |
| #include <dlib/matrix.h> | |
| #include <dlib/data_io.h> | |
| #include <dlib/sparse_vector.h> | |
| #include <boost/python/args.hpp> | |
| #include <dlib/optimization.h> |
| https://blog.mindorks.com/android-tensorflow-machine-learning-example-ff0e9b2654cc |
| sudo apt-get install git-core gnupg flex bison gperf build-essential zip curl zlib1g-dev libc6-dev lib32ncurses5-dev ia32-libs x11proto-core-dev libx11-dev lib32z1-dev libgl1-mesa-dev g++-multilib mingw32 tofrodos python-markdown libxml2-utils xsltproc lib32readline-gplv2-dev | |
| sudo apt-get inatall openjdk-7-jdk | |
| sudo apt-get install git-core gnupg flex bison gperf build-essential zip curl zlib1g-dev libc6-dev lib32ncurses5-dev | |
| ia32-libs x11proto-core-dev libx11-dev lib32z-dev libgl1-mesa-dev g++-multilib mingw32 tofrodos python-markdown |
| #!/bin/sh | |
| # Install arm64 gcc extensions on the NVIDIA Jetson TX1 | |
| if [ $(id -u) != 0 ]; then | |
| echo "This script requires root permissions" | |
| echo "$ sudo "$0"" | |
| exit | |
| fi | |
| # Install arm64 gcc extensions | |
| dpkg --add-architecture arm64 |
| http://blog.csdn.net/Jesse_Mx/article/details/56022967 |
| wget http://developer.download.nvidia.com/devzone/devcenter/mobile/jetpack_l4t/006/linux-x64/cuda-repo-l4t-8-0-local_8.0.34-1_arm64.deb | |
| dpkg -i cuda-repo-l4t-8-0-local_8.0.34-1_arm64.deb | |
| apt update | |
| apt search cuda | |
| apt install ... |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>MCS Lite app</title> | |
| <link href="./admin/app/build/assets/webpack-client.css" rel="stylesheet"></head> | |
| </head> | |
| <body style="background: #F1F2F7"> | |
| <div id="app"></div> | |
| <iframe frameborder="0" src="http://127.0.0.1:8082/" style="width: 100%; height: 100%" nwdisable nwfaketop> | |
| <script src="index.js"></script> |
| FROM node:boron | |
| USER root | |
| ## Set environment variable | |
| ENV DEBIAN_FRONTEND noninteractive | |
| ENV SDK_VERSION V4.0.0 | |
| RUN apt-get update && \ | |
| apt-get install -y \ |
| var Validator = require('jsonschema').Validator; | |
| var v = new Validator(); | |
| var schema = require('./schema'); | |
| var Rx = require('rxjs'); | |
| var R = require('ramda'); | |
| module.exports = function(datachannels, prototypes) { | |
| var datachannels$ = {}; | |
| function findthis (value) { |