Build Meteor Applications with Cloudant and quickly deploy on IBM Bluemix
For the really impatient, click the 'Deploy to Bluemix' button to get your copy of a Meteor application that uses a Cloudant data store deployed to IBM Bluemix . Others, continue with the article below and in time you will get an opportunity to click the button. Meteor is a very popular framework for building web and mobile applications with pure javascript. When i first built the Meteor tutorial app, it was very interesting that one could stand up such a application in just about 130 lines of javascript code. Cool of course... [More]
Tags:  apps ios android mobile nosql meteor bluemix cloudant mongodb |
Updates on App development using DB2 with node.js, Python, Ruby. Golang connectivity
Jan 1 2015 marked a release of the ibm_db python module that culminated the simplification of developer experience for DB2 from node.js , Ruby and Python . For example if you used mysql from these languages, it was just the one npm install/gem install/pip install command required whereas for DB2 (and our other enterprise friends) it was pre-requisites first including things like LD_LIBRARY_PATH ugh!!!. With the latest version of the ibm_db module in these 3 languages, it is as simple now and one does not have to bother about... [More]
Tags:  ruby-on-rails golang sqlalchemy node.js db2 django python go ruby |
Loading Turtle, N3 and TRIG files to a DB2 RDF Store
5 lines of code that will load a turtle, N3 or TRIG file to a DB2 RDF Store
String file = "<turtle/n3/trig file>"; //load the file to memory Model memM = ModelFactory.createDefaultModel(); memM.read(FileManager.get().open(file), "", Lang.guess(file).name()); // connect to the the RDF Store in DB2 Store store = StoreManager.connectStore(connection, "", storeName); Dataset db2DS = RdfStoreFactory.connectDataset(store, conn); // copy triples to DB2 ... [More]
|
Machine Learning pre-processing with TensorFlow Transform
With data pre-processing in Deep Learning getting attention, i ventured to give the Tensorflow Transform (tf.Transform) library a try. Why you might ask? Well the examples (at least to me) didn't show how to achieve the end-2-end flow and that piqued an interest to get a working example of the flows diagrammed in the announcement note. The goals I visualized a flow as follows - source input would be some raw data. To exercise the pre-processing functionality, i would ... [More]
Tags:  deeplearning machinelearning tensorflow pre-processing datascience |
AutoReconfig, Shading, Buildpack configuration extensions with PaaS runtimes and the lack of control.
That’s quite a mouthful and before i get into that story, let me provide the useful piece of information upahead : spring-cloud now supports dashDB & SQLDB out of the box. Here’ a couple of end-user tutorials on using it dashDB scala Play example dashDB spring-cloud example. With that out of the way, a few weeks back i got the itch to add spring-cloud support for dashDB and sqlDB. It evolved like this - i wanted to see how to use a scala application connecting to dashDB on IBM Bluemix .... [More]
Tags:  dashdb cloud scala db2 bluemix spring sqldb |
Programming with DB2 from node.js |
Summary of RDF enhancements in DB2 10.1 Fix Pack 2
This did get published a little later than expected, but is a good summary and single page reference to all the features we added to RDF in DB2 10.1 Fix Pack 2
|