The steps outlined in this article outlines the steps required to setup PostgreSQL 9.5 on Ubuntu 16.04. The last two steps outline the required Java Spring configuration required to use JPA Hibernate to the PostgreSQL installed. This article is based on the work of DigitalOcean (How To Install and Use PostgreSQL on Ubuntu 16.04). 1. … Continue reading 13 (1-liner) Steps to Setting up PostgreSQL and connecting with JPA Hibernate

A common requirement when working with molecules is to display their molecular structure as an image.  To do this in iPython Notebook requires some simple steps.  Below is a way how you can do it.  Enjoy! %matplotlib inline %pylab inline from IPython.display import Image from rdkit.Chem import AllChem as Chem from rdkit.Chem.Draw import IPythonConsole Example: … Continue reading Painting molecules using rdkit and iPython Notebook