DDNS for your GoDaddy domains

2016-04-13 | #dns

You can automatically update DNS for your GoDaddy.com domains following the suggestions from the post ddns-with-godaddy but remember to patch the godaddy python library with this client.py

Continue reading 


Installing Nodejs oracledb module on Suse SLES 11

2016-02-11 | #nodejs #oracle #suse

For a quick tutorial about installing Oracle module for Nodejs (oracledb) on Suse SLES, follow the info at Node-OracleDB Installation but remember to use the gcc compiler release 5.0``` export ORACLE_HOME=/home/oracle/instantclient_12_1 export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$ORACLE_HOME export TNS_ADMIN=$ORACLE_HOME export OCI_LIBRARY_PATH=$ORACLE_HOME export OCI_LIB_DIR=$ORACLE_HOME export OCI_INC_DIR=$ORACLE_HOME/sdk/include

Continue reading 


Deploying microservices in a Docker container

2015-12-11 | #docker #services

I already spoke about docker containers (moving datacenters apps from virtual machines to containers) This is a quick tutorial (my github sample code) about a new way of deploying (micro) services and applications, ie using Docker containers: a sample python webservice and an simple web (html + angularJS code) page Creating docker containers means defining a file Dockerfile like``` FROM python:3.

Continue reading 


Download 1 million of twitter users

2015-12-07 | #Me

I like learning and using new technologies and opensource softwares. For instance I use Apache Camel and MongoDB for downloading and analyzing twitter data. Here you can download a sample file with (some attributes of) 1 million of twitter users

Continue reading 


Analyzing huge sensor data in near realtime with Apache Spark Streaming

2015-11-25 | #apache #bigdata #iot #pensource #spark

For this demo I downloaded and installed Apache Spark 1.5.1 Suppose you have a stream of data from several (industrial) machines likeMACHINE,TIMESTAMP,SIGNAL1,SIGNAL2,SIGNAL3,... 1,2015-01-01 11:00:01,1.0,1.1,1.2,1.3,.. 2,2015-01-01 11:00:01,2.2,2.1,2.6,2.8,. 3,2015-01-01 11:00:01,1.1,1.2,1.3,1.3,. 1,2015-01-01 11:00:02,1.0,1.1,1.2,1.4,. 1,2015-01-01 11:00:02,1.

Continue reading 