To be able to use PHP5 PDO with MS Access mdb files the following is required
(the same applies for the PHP4 style of using odbc_X except for the
obviously PDO specific requirements):
In Linux this is achieved by intalling the php5-odbc package:
| # Disable the MySQL binary log while restoring data from mysqldump | |
| (echo "set session sql_log_bin=0;"; cat some_dump.sql) | mysql ... |
To be able to use PHP5 PDO with MS Access mdb files the following is required
(the same applies for the PHP4 style of using odbc_X except for the
obviously PDO specific requirements):
In Linux this is achieved by intalling the php5-odbc package:
WebSockets is a modern HTML5 standard which makes communication between client and server a lot more simpler than ever. We are all familiar with the technology of sockets. Sockets have been fundamental to network communication for a long time but usually the communication over the browser has been restricted. The general restrictions
| module MyModule { | |
| export class MyClass extends Vue { | |
| // define instance methods | |
| myMethod() { | |
| // the TS-Type of "this" is defined as Instance of MyClass | |
| console.log("myMethod"); | |
| } | |
| myOtherMethod() { | |
| console.log("myOtherMethod"); |
| var gulp = require('gulp'); | |
| var sourcemaps = require('gulp-sourcemaps'); | |
| var source = require('vinyl-source-stream'); | |
| var buffer = require('vinyl-buffer'); | |
| var browserify = require('browserify'); | |
| var watchify = require('watchify'); | |
| var babel = require('babelify'); | |
| function compile(watch) { | |
| var bundler = watchify(browserify('./src/index.js', { debug: true }).transform(babel)); |
| var gulp = require('gulp') | |
| var browserify = require('browserify') | |
| var watchify = require('watchify') | |
| var babelify = require('babelify') | |
| var source = require('vinyl-source-stream') | |
| var buffer = require('vinyl-buffer') | |
| var merge = require('utils-merge') |
docker run -d --name es elasticsearchdocker run -d --name logstash --link es:elasticsearch logstash -v /tmp/logstash.conf:/config-dir/logstash.conf logstash logstash -f /config-dir/logstash.confdocker run --link es:elasticsearch -d kibanaLOGSTASH_ADDRESS=$(docker inspect --format '{{ .NetworkSettings.IPAddress }}' logstash)| version: '2' | |
| services: | |
| node1: | |
| image: mariadb:10.1 | |
| environment: | |
| - TERM=xterm | |
| - MYSQL_ROOT_PASSWORD=admin | |
| - MYSQL_INITDB_SKIP_TZINFO=1 | |
| volumes: | |
| - ~/Dev/docker/compose/galera/conf.d:/etc/mysql/conf.d |