I have moved my blog site

Mon 10 October 2016 by Zemian Deng

I have decided to move my blog to https://zemian.github.io


My Own Quick Git Reference

Wed 05 October 2016 by Zemian Deng

I have started using git and here are some of my frequently used commands.

git clone http://path/to/repo.git  # Retrieve a repo for work (auto checkout master branch into WorkingDir)
git init                           # Create new repository for work (auto checkout master branch into WorkingDir)
git init --bare                    # Create new ...
read more

How to install cx_Oracle module on Linux

Sun 24 July 2016 by Zemian Deng

Here are my notes on installing cx_Oracle python module to access Oracle Database 12c. First, you need to download these two packages from Oracle Instant Client site.

  • Instant Client Package - Basic
  • Instant Client Package - SDK

NOTE: I've tried their .rpm packages and it did not work for me on ...

read more

Using Pelican as Blogging Site

Wed 20 July 2016 by Zemian Deng

As I learn more with Markdown, I really enjoy using it. Its syntax is easy to remember, and there are not that many rules. I moslty write programming notes and occassionaly blog articles with it.

I've used Blogger for the past few years, but was getting tired of it ...

read more