Stock Analysis
05 Sep 2017
#matplotlib style import sqlite3 import time import datetime import random import matplotlib.pyplot as plt import matplotlib.dates as mdates from matplotlib import style plt.style.use('fivethirtyeight') conn=sqlite3.connect('tutorial.db') c=conn.cursor() def create_table(): c.execute('CREATE TABLE IF NOT EXISTS stuffToPlot(unix REAL, datestamp TEXT, keyword TEXT, value REAL)')...
Data Analysis
Programming
Read More
Why Asking Good Questions Matters
05 May 2017
From the article How To Ask Questions The Smart Way, I concluded 4 main characteristics of a good question. Firstly, the question needs to be specific and concise. The description of the question should address all specific details that could...
Software Engineering
Programming
Read More
Ethics of Software Engineering
02 May 2017
Before knowing about software engineering ethics, I used to think a career in software engineering is ethically simple, since we are not like a doctor that could potential miss saving a life; we are not like a financial analyst who...
Software Engineering
Ethics
Read More
Three-Week Meteor Experience
23 Mar 2017
Meteor is the first client-server architecture I’ve learnt. As a newbie to app development. Learning Meteor is really challenging for me. By far, I’m on my fourth week of Meteor learning. And I would like to talk about my previous...
Software Engineering
Meteor
Read More
Why is Coding Standard Important?
02 Feb 2017
An analogy When I was a kid, I started playing badminton. I pay it with my families, friends and classmates. And I play it everywhere I can, including playgrounds, corridors, and even living rooms. I love badminton, and I’ve been...
Software Engineering
Learning
Read More