-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcategories.html
92 lines (78 loc) · 3.12 KB
/
categories.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<title>Mathematical Musings</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" type="image/png" href="/favicon.png"/>
<link rel="stylesheet" href="/theme/css/main.css" type="text/css" />
<script src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML" type="text/javascript"></script>
<script type="text/javascript">
init_mathjax = function() {
if (window.MathJax) {
// MathJax loaded
MathJax.Hub.Config({
tex2jax: {
inlineMath: [ ['$','$'], ["\\(","\\)"] ],
displayMath: [ ['$$','$$'], ["\\[","\\]"] ]
},
displayAlign: 'left', // Change this to 'center' to center equations.
"HTML-CSS": {
styles: {'.MathJax_Display': {"margin": 0}}
}
});
MathJax.Hub.Queue(["Typeset",MathJax.Hub]);
}
}
init_mathjax();
</script>
<link href="/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="Mathematical Musings Atom Feed" />
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
<!--[if lte IE 7]>
<link rel="stylesheet" type="text/css" media="all" href="/css/ie.css"/>
<script src="/js/IE8.js" type="text/javascript"></script><![endif]-->
<!--[if lt IE 7]>
<link rel="stylesheet" type="text/css" media="all" href="/css/ie6.css"/><![endif]-->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js" type="text/javascript"></script>
</head>
<body id="index" class="home">
<div id="user_tag">
<p id="user_name">
<a href="/">Jens Thang</a>
</p>
<p id="user_desc">
Data Hacker
<br>
Machine Learning : Bayesian : Python
<br>
<br>
<img src="favicon.png" alt="Data Hacker" width="50" height="50" style="display: block; margin: 0 auto;"/>
<br>
<a href="mailto:jensthang[at]gmail.com">Email</a><br />
</p>
<div id="recent_posts">
<h3>Recent Posts</h3>
<ul id="recent_posts">
<li>
<a href="/blog/2014/11/08/linear-algebra-primer-ii/">Linear Algebra Primer II</a>
</li>
<li>
<a href="/blog/2014/10/15/linear-algebra-primer-i/">Linear Algebra Primer I</a>
</li>
</ul>
</div>
</div>
<ul>
<li><a href="/category/misc.html">misc</a></li>
</ul>
<!-- <footer id="contentinfo" > -->
<!-- <address id="about" class="vcard "> -->
<!-- Proudly powered by <a href="http://getpelican.com/" target="_blank">Pelican</a> -->
<!-- , which takes -->
<!-- great advantage of <a href="http://python.org" target="_blank">Python</a>. -->
<!-- </address> <!-- /#about -->
<!-- </footer>/#contentinfo -->
<!-- -->
</body>
</html>