sudo apt-get install python3-pip
sudo pip3 install virtualenv
| #include <math.h> | |
| #include <algorithm> | |
| #include <string> | |
| #include <immintrin.h> | |
| using namespace std;typedef float R; | |
| #define _W 79 | |
| #define _H 39 | |
| #define EP 0.01f | |
| #define OP operator | |
| #define C const |
| static int internal_get_and_notify_call_statistics(pjsua_call_id call_id, long comm_id) | |
| { | |
| pj_status_t status = PJ_SUCCESS; | |
| pjsua_stream_stat stat; | |
| int LOCAL_DELAY = 30; | |
| float R; | |
| float a = 0.0f; //iLBC a = 10; | |
| float b = 19.8f; | |
| float c = 29.7f; | |
| int rx_pkts = 0; |
| image: node:6.9.4 | |
| pipelines: | |
| branches: | |
| master: | |
| - step: | |
| script: | |
| - apt-get update; apt-get install -y gettext-base; | |
| - echo 'deb http://dl.google.com/linux/chrome/deb/ stable main' > /etc/apt/sources.list.d/chrome.list | |
| - wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - | |
| - set -x && apt-get update && apt-get install -y xvfb google-chrome-stable |
| <?php | |
| class DbConnector { | |
| private $_connection; | |
| private static $_instance; | |
| private $_host = "host"; | |
| private $_username = "username"; | |
| private $_password = "password"; | |
| private $_database = "dbname"; | |
| private $_dbport = 3306; | |
For the latest download link check the Apache Maven download page:
https://maven.apache.org/download.cgi
Download Apache Maven
sudo mkdir /opt/src/maven-bin
cd /opt/src/maven-bin && sudo wget "http://www-us.apache.org/dist/maven/maven-3/3.5.2/binaries/apache-maven-3.5.2-bin.tar.gz"
Create directory and install
| ###### development tools | |
| sudo apt-get install build-essential python-dev git nodejs-legacy npm gnome-tweak-tool openjdk-8-jdk | |
| ### Python packages | |
| sudo apt-get install python-pip python-virtualenv python-numpy python-matplotlib | |
| ### pip packages | |
| pip install django flask django-widget-tweaks django-ckeditor beautifulsoup4 requests classifier SymPy ipython |
For excessively paranoid client authentication.
Organization & Common Name: Some human identifier for this server CA.
openssl genrsa -des3 -out ca.key 4096
openssl req -new -x509 -days 365 -key ca.key -out ca.crt
| # Pull base image. The official docker openjdk-8 image is used here. | |
| FROM java:8-jdk | |
| # Copy HiveMQ to container | |
| COPY hivemq.zip /tmp/ | |
| #Install wget and unzip, then download and install HiveMQ. | |
| RUN \ | |
| apt-get install -y wget unzip &&\ | |
| unzip /tmp/hivemq.zip -d /opt/ &&\ |