jeklyll for study post

Jekyll plus Github Pages can build a powerful personal blog. There is almost one year since I first used it.

It is especially useful for math presentation and code and graphs. In the class of Geo 597, there are so many proofs and calculations, rules and principles needed to be taken in notes. Review them, or estabilsh the proofs by myself would largely improve the understandings.

Math like this:

Weighted linear combination:


Code like this:

## Clear the workspace and load package dependencies: 
rm(list=ls())   
require(pdgControl)
require(reshape2)
require(ggplot2)
require(data.table)
v = 1:10
mean(v)
min(v)
max(v)
range(v)
v = c(4,2,3,9,1)
length(v)
l = c(TRUE, FALSE, FALSE, TRUE)
any(l)
all(l)
l = c(TRUE, FALSE, FALSE, TRUE)
sum(l)

And tables and graphs to continue adding here…

Also useful for taking notes of useful links…

whatever is welcome to be post here!