-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharchives.html
More file actions
130 lines (126 loc) · 4.08 KB
/
archives.html
File metadata and controls
130 lines (126 loc) · 4.08 KB
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
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Archive — Code Tip</title>
<meta name="description" content="The archives page, find old stuff organized by date.">
<meta name="author" content="Marsyas">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
<!--[if lt IE 9]>
<script src="/theme/html5.js"></script>
<![endif]-->
<link href="/theme/css/ipython.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/bootswatch/3.2.0/simplex/bootstrap.min.css" rel="stylesheet">
<link href="/theme/css/local.css" rel="stylesheet">
<link href="/theme/css/pygments.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="page-header">
<h1><a href="/">Code Tip</a>
<br> </div>
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h1>Archives</h1>
<table class="table">
<tbody>
<tr>
<td>19 Jul 2025</td>
<td><a href='/mpvzhong-wen-zi-mu-xian-shi-cheng-fang-ge-de-jie-jue-fang-an.html'>mpv中文字幕显示成方格□的解决方案</a></td>
</tr>
<tr>
<td>06 Jul 2025</td>
<td><a href='/bian-yi-llama-cpp-cuda.html'>编译llama-cpp-cuda</a></td>
</tr>
<tr>
<td>02 Nov 2024</td>
<td><a href='/ji-ge-chang-yong-de-isobiao-zhun.html'>几个常用的ISO标准</a></td>
</tr>
<tr>
<td>15 Nov 2023</td>
<td><a href='/directus-da-yin-bu-chu-typescript-dui-zhan.html'>Directus 打印不出 typescript 堆栈</a></td>
</tr>
<tr>
<td>24 Jun 2013</td>
<td><a href='/wei-xian-de-gc.html'>危险的GC</a></td>
</tr>
<tr>
<td>19 Jun 2013</td>
<td><a href='/cocosbuilderzhong-de-javascriptji-cheng-wen-ti.html'>CocosBuilder中的javascript继承问题</a></td>
</tr>
<tr>
<td>11 Jun 2013</td>
<td><a href='/hao-wan-de-cocosbuilder.html'>好玩的CocosBuilder</a></td>
</tr>
<tr>
<td>05 May 2013</td>
<td><a href='/yong-cocos2d-xkai-fa-windowsyou-xi.html'>用Cocos2d-x开发Windows游戏</a></td>
</tr>
</tbody>
</table>
</div>
</div> <!-- <hr> -->
</div> <!-- /container -->
<footer class="aw-footer bg-danger">
<div class="container"> <!-- footer -->
<div class="row">
<div class="col-md-10 col-md-offset-1">
<div class="row">
<div class="col-md-3">
<h4>Navigation</h4>
<ul class="list-unstyled my-list-style">
<li><a href="">Code Tip</a></li>
</ul>
</div>
<div class="col-md-3">
<h4>Author</h4>
<ul class="list-unstyled my-list-style">
<li><a href="mailto:llxxyy217@gmail.com">Email</a></li>
</ul>
</div>
<div class="col-md-3">
<h4>Categories</h4>
<ul class="list-unstyled my-list-style">
<li><a href="/category/技术.html">技术 (8)</a></li>
</ul>
</div>
<div class="col-md-3">
<h4>Links</h4>
<ul class="list-unstyled my-list-style">
<li><a href="https://github.com/fispurring/">Github</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</footer>
<div class="container">
<div class="row">
<div class="col-md-12 text-center center-block aw-bottom">
<p>© Marsyas 2016</p>
<p>Powered by Pelican</p>
</div>
</div>
</div>
<!-- JavaScript -->
<script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script type="text/javascript">
jQuery(document).ready(function($) {
$("div.collapseheader").click(function () {
$header = $(this).children("span").first();
$codearea = $(this).children(".input_area");
$codearea.slideToggle(500, function () {
$header.text(function () {
return $codearea.is(":visible") ? "Collapse Code" : "Expand Code";
});
});
});
});
</script>
</body>
</html>