-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
188 lines (125 loc) · 5.17 KB
/
index.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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>孙同学的个人小站</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=3, minimum-scale=1">
<meta name="author" content="yuxiangstar">
<link rel="icon" href="/img/favicon.ico">
<link rel="apple-touch-icon" href="/img/pacman.jpg">
<link rel="apple-touch-icon-precomposed" href="/img/pacman.jpg">
<link rel="stylesheet" href="/css/style.css">
<meta name="generator" content="Hexo 4.1.1"></head>
<body>
<header>
<div>
<div id="imglogo">
<a href="/"><img src="/img/logo.svg" alt="孙同学的个人小站" title="孙同学的个人小站"/></a>
</div>
<div id="textlogo">
<h1 class="site-name"><a href="/" title="孙同学的个人小站">孙同学的个人小站</a></h1>
<h2 class="blog-motto"></h2>
</div>
<div class="navbar"><a class="navbutton navmobile" href="#" title="Menu">
</a></div>
<nav class="animated">
<ul>
<li><a href="/">Home</a></li>
<li><a href="/archives">Archives</a></li>
<li>
<form class="search" action="//google.com/search" method="get" accept-charset="utf-8">
<label>Search</label>
<input type="text" id="search" name="q" autocomplete="off" maxlength="20" placeholder="Search" />
<input type="hidden" name="q" value="site:yuxiangstar.github.io">
</form>
</li>
</ul>
</nav>
</div>
</header>
<div id="container">
<div id="main">
<section class="post" itemscope itemprop="blogPost">
<a href="/2020/01/10/LearningPath/" title="LearningPath" itemprop="url">
<h1 itemprop="name">LearningPath</h1>
<p itemprop="description" >学习路线Python语法简单,看书《Python编程:从入门到实践》,看到类这一块就差不多了,时间3-5天,书在网盘里。
机器学习学习环境搭建按网盘里提供了软件和一个记录环境搭建的指导的word文档。有两个小问题:1.某些库安装时很慢,你可以换源。2.有一两步会出错,但我忘记了是</p>
<time datetime="2020-01-10T03:10:55.000Z" itemprop="datePublished">2020-01-10</time>
</a>
</section>
<section class="post" itemscope itemprop="blogPost">
<a href="/2020/01/09/autobiography/" title="autobiography" itemprop="url">
<h1 itemprop="name">autobiography</h1>
<p itemprop="description" >为所有爱执着的痛——实验室老学长的经验分享创新项目篇大概每年的上半年开学,老师会对你赶鸭子上架做的文档。创新项目的申报材料类似于一篇小论文,篇幅一般特别短小,但有论文的结构。需要你分析为什么你的技术被需要?你的技术的应用价值在哪里?以及你打算如何去实现它。名称一般是基于XX技术的</p>
<time datetime="2020-01-09T14:25:20.000Z" itemprop="datePublished">2020-01-09</time>
</a>
</section>
</div>
<div class="openaside"><a class="navbutton" href="#" title="Show Sidebar"></a></div>
<div id="asidepart">
<div class="closeaside"><a class="closebutton" href="#" title="Hide Sidebar"></a></div>
<aside class="clearfix">
<div class="rsspart">
<a href="" target="_blank" title="rss">RSS</a>
</div>
</aside>
</div>
</div>
<footer><div id="footer" >
<div class="line">
<span></span>
<div class="author"></div>
</div>
<div class="social-font clearfix">
</div>
<p class="copyright">Powered by <a href="http://hexo.io" target="_blank" title="hexo">hexo</a> and Theme by <a href="https://github.com/A-limon/pacman" target="_blank" title="Pacman">Pacman</a> © 2020
<a href="https://yuxiangstar.github.io" target="_blank" title="yuxiangstar">yuxiangstar</a>
</p>
</div>
</footer>
<script src="/js/jquery-2.1.0.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('.navbar').click(function(){
$('header nav').toggleClass('shownav');
});
var myWidth = 0;
function getSize(){
if( typeof( window.innerWidth ) == 'number' ) {
myWidth = window.innerWidth;
} else if( document.documentElement && document.documentElement.clientWidth) {
myWidth = document.documentElement.clientWidth;
};
};
var m = $('#main'),
a = $('#asidepart'),
c = $('.closeaside'),
o = $('.openaside');
$(window).resize(function(){
getSize();
if (myWidth >= 1024) {
$('header nav').removeClass('shownav');
}else
{
m.removeClass('moveMain');
a.css('display', 'block').removeClass('fadeOut');
o.css('display', 'none');
}
});
c.click(function(){
a.addClass('fadeOut').css('display', 'none');
o.css('display', 'block').addClass('fadeIn');
m.addClass('moveMain');
});
o.click(function(){
o.css('display', 'none').removeClass('beforeFadeIn');
a.css('display', 'block').removeClass('fadeOut').addClass('fadeIn');
m.removeClass('moveMain');
});
$(window).scroll(function(){
o.css("top",Math.max(80,260-$(this).scrollTop()));
});
});
</script>
</body>
</html>