- C-a == Ctrl-a
- M-a == Alt-a
:q close
:w write/saves
:wa[!] write/save all windows [force]
:wq write/save and close
#!/usr/bin/env bash | |
# https://software.intel.com/en-us/articles/performance-tools-for-software-developers-building-hdf5-with-intel-compilers | |
## PREREQS | |
# 1) szip 2.1 | |
export CC=icc | |
export CXX=icpc | |
export FC=ifort | |
export CFLAGS='-O3 -xHost -ip' | |
export CXXFLAGS='-O3 -xHost -ip' |
FROM php:7.1.2-apache | |
RUN docker-php-ext-install mysqli |
<VirtualHost *:88> | |
ServerName vh.local | |
# ServerAlias www.vh.local | |
DocumentRoot /home/ronald/vh/1 | |
ErrorLog /home/ronald/vh/1/error.log | |
CustomLog /home/ronald/vh/1/access.log common | |
<Directory /home/ronald/vh/1> | |
Options -Indexes +FollowSymLinks -MultiViews | |
# DirectoryIndex index.php | |
AllowOverride All |