Oscar Javier Hernandez

This demo page has been used from http://jasonm23.github.io/markdown-css-themes/.

Example content for posts

June 04, 2016

Better equations:

\(\Gamma(z) = \int_0^\infty t^{z-1}e^{-t}dt\,.\)

equation

Code snippet

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import numpy as np
import matplotlib.pyplot as plt

if __name__ =='__main__':
    img_thread = threading.Thread(target=downloadWallpaper)
    img_thread.start()
    st = '\rDownloading Image'
    current = 1
    while img_thread.is_alive():
        sys.stdout.write(st+'.'*((current)%5))
        current=current+1
        time.sleep(0.3)
    img_thread.join()
    print('\nImage of the day downloaded.')
    
    def fun(x):
		return x
    
1
2
3
require 'redcarpet'
markdown = Redcarpet.new("Hello World!")
puts markdown.to_html