-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchives.html
120 lines (98 loc) · 3.84 KB
/
archives.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<head>
<meta charset="utf-8" />
<!-- Set the viewport width to device width for mobile -->
<meta name="viewport" content="width=device-width" />
<title>Programming Journey</title>
<link rel="stylesheet" href="http://hsiangholin.github.io/blog/theme/css/normalize.css" />
<link rel="stylesheet" href="http://hsiangholin.github.io/blog/theme/css/foundation.min.css" />
<link rel="stylesheet" href="http://hsiangholin.github.io/blog/theme/css/style.css" />
<link rel="stylesheet" href="http://hsiangholin.github.io/blog/theme/css/pygments.css" />
<script src="http://hsiangholin.github.io/blog/theme/js/custom.modernizr.js"></script>
</head>
<body>
<!-- Nav Bar -->
<nav>
<div class="top-bar">
<div class="row">
<div class="large-9 large-centered columns">
<h1><a href="http://hsiangholin.github.io/blog">Programming Journey</a></h1>
</div>
</div>
</div>
<!-- Show menu items and pages -->
<div class="row">
<div class="large-9 columns">
<ul class="button-group navigation">
</ul>
</div>
</div>
</nav>
<!-- End Nav -->
<!-- Main Page Content and Sidebar -->
<div class="row">
<!-- Main Blog Content -->
<div class="large-9 columns">
<h3>Archives</h3>
<table class="table-archive">
<tbody>
<tr>
<td>Sat 15 February 2014</td>
<td><a href='posts/2014/02/how-many-characters-are-read.html'>fgets: How Many Characters/Bytes Are Read?</a></td>
</tr>
<tr>
<td>Sat 18 January 2014</td>
<td><a href='posts/2014/01/levenshtein-distance-spelling-correction.html'>Levenshtein Distance Spelling Correction</a></td>
</tr>
<tr>
<td>Sat 11 January 2014</td>
<td><a href='posts/2014/01/crzinput.html'>CrzInput: Spelling Correction with Gesture</a></td>
</tr>
<tr>
<td>Sat 30 November 2013</td>
<td><a href='posts/2013/11/usaco-broken-necklace.html'>USACO Section 1.1 Broken Necklace</a></td>
</tr>
<tr>
<td>Thu 12 September 2013</td>
<td><a href='posts/2013/09/my-first-pelican.html'>My First Pelican Post</a></td>
</tr>
<tr>
<td>Wed 11 September 2013</td>
<td><a href='posts/2013/09/about.html'>About</a></td>
</tr>
</tbody>
</table>
</div>
<!-- End Main Content -->
<!-- Sidebar -->
<aside class="large-3 columns">
<h5 class="sidebar-title">Site</h5>
<ul class="side-nav">
<li><a href="http://hsiangholin.github.io/blog/archives.html">Archives</a>
<li><a href="http://hsiangholin.github.io/blog/tags.html">Tags</a>
</ul>
<h5 class="sidebar-title">Categories</h5>
<ul class="side-nav">
<li><a href="http://hsiangholin.github.io/blog/category/misc.html">MISC</a></li>
<li><a href="http://hsiangholin.github.io/blog/category/c-language.html">C Language</a></li>
<li><a href="http://hsiangholin.github.io/blog/category/algorithm.html">Algorithm</a></li>
<li><a href="http://hsiangholin.github.io/blog/category/about.html">About</a></li>
</ul>
<h5 class="sidebar-title">Links</h5>
<ul class="side-nav">
<li><a href="http://github.com">Github</a></li>
<li><a href="http://www.ntu.edu.tw">National Taiwan University</a></li>
</ul>
</aside> <!-- End Sidebar -->
</div> <!-- End Main Content and Sidebar -->
<!-- Footer -->
<footer class="row">
<div class="large-12 columns">
<hr />
<div class="row">
<div class="large-6 columns">
<p>Programming Journey by Hsiang-Ho Lin</p>
</div>
</div>
</div>
</footer>