-
Notifications
You must be signed in to change notification settings - Fork 0
/
atom.xml
165 lines (114 loc) · 11.6 KB
/
atom.xml
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
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>Kevin's Blog</title>
<subtitle>Kevin's Blog</subtitle>
<link href="/atom.xml" rel="self"/>
<link href="http://kevin-que.github.io/"/>
<updated>2018-02-20T09:57:08.104Z</updated>
<id>http://kevin-que.github.io/</id>
<author>
<name>Kevin</name>
</author>
<generator uri="http://hexo.io/">Hexo</generator>
<entry>
<title>2018年python学习笔记一</title>
<link href="http://kevin-que.github.io/2018/02/20/2018%E5%B9%B4python%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0%E4%B8%80/"/>
<id>http://kevin-que.github.io/2018/02/20/2018年python学习笔记一/</id>
<published>2018-02-20T06:43:03.000Z</published>
<updated>2018-02-20T09:57:08.104Z</updated>
<summary type="html">
<h1 id="目录"><a href="#目录" class="headerlink" title="目录"></a>目录</h1><h2 id="循环语句"><a href="#循环语句" class="headerlink" title="循环语句"></a>循环语句</h2><p>For 语句</p>
<figure class="highlight plain"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br></pre></td><td class="code"><pre><span class="line">for i in range(0,10)</span><br><span class="line"> print(i)</span><br></pre></td></tr></table></figure>
<p>显示:<br><figure class="highlight plain"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br><span class="line">3</span><br><span class="line">4</span><br><span class="line">5</span><br><span class="line">6</span><br><span class="line">7</span><br><span class="line">8</span><br><span class="line">9</span><br><span class="line">10</span><br></pre></td><td class="code"><pre><span class="line">0</span><br><span class="line">1</span><br><span class="line">2</span><br><span class="line">3</span><br><span class="line">4</span><br><span class="line">5</span><br><span class="line">6</span><br><span class="line">7</span><br><span class="line">8</span><br><span class="line">9</span><br></pre></td></tr></table></figure></p>
</summary>
<category term="python" scheme="http://kevin-que.github.io/tags/python/"/>
</entry>
<entry>
<title>Django + mysql + bootstrap 配置</title>
<link href="http://kevin-que.github.io/2017/06/26/Django/"/>
<id>http://kevin-que.github.io/2017/06/26/Django/</id>
<published>2017-06-26T14:23:18.000Z</published>
<updated>2018-02-20T08:21:11.039Z</updated>
<summary type="html">
<h2 id="环境:"><a href="#环境:" class="headerlink" title="环境:"></a>环境:</h2><p>1.windows: win 10 x64<br>2.python: python 3.5<br>3.Django: 1.11.2<br>4.mysql: mysql-5.6.36<br>5.bootstrap: bootstrap 3.3.7</p>
<h2 id="步骤:"><a href="#步骤:" class="headerlink" title="步骤:"></a>步骤:</h2><ol>
<li><p>安装 Django<br>pip 命令安装: (目前最新版为1.11.2)<br> pip install Django==1.11.2</p>
</li>
<li><p>安装 pymysql 支持mysql<br> pip install PyMySQL</p>
</li>
<li><p>新建项目 mysite<br> django-admin.py startproject mysite </p>
</li>
<li><p>测试mysite<br>cd mysite 进入项目目录输入:<br> python manage.py runserver</p>
</li>
<li><p>新建APP blog<br> python manage.py startapp blog</p>
</summary>
<category term="Django" scheme="http://kevin-que.github.io/tags/Django/"/>
</entry>
<entry>
<title>Django+bootstrap</title>
<link href="http://kevin-que.github.io/2017/06/25/Django-bootstrap/"/>
<id>http://kevin-que.github.io/2017/06/25/Django-bootstrap/</id>
<published>2017-06-25T05:06:00.000Z</published>
<updated>2018-02-20T08:21:43.080Z</updated>
<summary type="html">
<h3 id="Bootstrap-简介"><a href="#Bootstrap-简介" class="headerlink" title="Bootstrap 简介"></a>Bootstrap 简介</h3><p>Bootstrap 是一个用于快速开发 Web 应用程序和网站的前端框架。Bootstrap 是基于 HTML、CSS、JAVASCRIPT 的。 是由 Twitter 的 Mark Otto 和 Jacob Thornton 开发的。Bootstrap 是 2011 年八月在 GitHub 上发布的开源产品。</p>
<h3 id="Bootstrap-环境安装"><a href="#Bootstrap-环境安装" class="headerlink" title="Bootstrap 环境安装"></a>Bootstrap 环境安装</h3><ol>
<li>从 <a href="http://getbootstrap.com/" target="_blank" rel="noopener">http://getbootstrap.com/</a> 上下载 Bootstrap 的最新版本 </li>
<li>Download Bootstrap:下载 Bootstrap,点击该按钮。</li>
<li>解压放到Django 框架下
</summary>
<category term="Django" scheme="http://kevin-que.github.io/tags/Django/"/>
</entry>
<entry>
<title>Python 学习笔记一</title>
<link href="http://kevin-que.github.io/2017/06/18/Python/"/>
<id>http://kevin-que.github.io/2017/06/18/Python/</id>
<published>2017-06-18T07:46:21.000Z</published>
<updated>2018-02-20T08:20:25.333Z</updated>
<summary type="html">
<h1 id="目录"><a href="#目录" class="headerlink" title="目录"></a>目录</h1><h2 id="基础语法"><a href="#基础语法" class="headerlink" title="基础语法"></a>基础语法</h2><p>1.python 简介<br>2.python 安装<br>3.hello world<br>4.声明变量与变量规则<br>5.注释<br>6.行与缩进<br>7.多行语句<br>8.用户输入<br>9.数据类型<br>10.字符串<br>11.空行<br>12.多个语句构成代码组<br>13.print 输出<br>14.import 与 from…import<br>15.命令行参数</p>
<h3 id="1-python-简介"><a href="#1-python-简介" class="headerlink" title="1.python 简介"></a>1.python 简介</h3><p>python的创始人为吉多·范罗苏姆(Guido van Rossum)。1989年的圣诞节期间,吉多·范罗苏姆为了在阿姆斯特丹打发时间,决心开发一个新的脚本解释程序,作为ABC语言的一种继承。Python可以应用于众多领域,如:数据分析、组件集成、网络服务、图像处理、数值计算和科学计算等众多领域。 python 是属于一种解释型语言。</p>
<h3 id="2-python-安装"><a href="#2-python-安装" class="headerlink" title="2.python 安装"></a>2.python 安装</h3><p><a href="https://www.python.org/downloads/" target="_blank" rel="noopener">https://www.python.org/downloads/</a> 下载最新的版本 3.X windows下一路点击next 完成安装, 注意勾选配置环境变量. Linux 下默认就有安装。<br>记得在命令行下查询python 版本<br> &gt; python -V<br>
</summary>
<category term="python" scheme="http://kevin-que.github.io/tags/python/"/>
</entry>
<entry>
<title>Hexo搭建Github-Pages博客填坑教程</title>
<link href="http://kevin-que.github.io/2017/01/03/hexo/"/>
<id>http://kevin-que.github.io/2017/01/03/hexo/</id>
<published>2017-01-03T06:37:00.000Z</published>
<updated>2018-02-20T08:20:52.032Z</updated>
<summary type="html">
<p>目录:</p>
<p>1.安装Hexo<br>2.部署Hexo<br>3.Hexo命令<br>4.一些报错处理<br>5.博客管理<br>6.插件(RSS、Sitemap)<br>7.评论设置<br>8.404页面<br>9.统计<br>10.更新<br>11.总结<br>12.参考引用<br>13.搭建博客相关网站<br>简述<br>本文主要讲解Hexo安装时遇到的坑,Hexo安装之后的使用教程,Hexo安装需要的环境和教程,请自行百度、谷歌。</p>
<p>1.安装Hexo 注意是在git命令行下安装</p>
<pre><code>$ npm install -g hexo
</code></pre><p>坑1<br>这里可能安装失败,可能权限不够,在命令前加sudo</p>
<pre><code>$ sudo npm install -g hexo
</code></pre><p>2.部署Hexo<br> $ hexo init<br>注:这个命令会初始化博客的目录,所以,执行这个命令时,在你想创建的目录下执行,就自动生成到对应目录下。<br>执行命令生,会在当前命令的路径下,生成以下文件:</p>
<pre><code>.
├── .deploy
├── public
├── scaffolds
├── scripts
├── source
| ├── _drafts
| └── _posts
├── themes
├── _config.yml
└── package.json
</code></pre><p>.deploy:执行hexo deploy命令部署到GitHub上的内容目录<br>public:执行hexo generate命令,输出的静态网页内容目录<br>scaffolds:layout模板文件目录,其中的md文件可以添加编辑<br>scripts:扩展脚本目录,这里可以自定义一些javascript脚本<br>source:文章源码目录,该目录下的markdown和html文件均会被hexo处理。该页面对应repo的根目录,404文件、favicon.ico文件,CNAME文件等都应该放这里,该目录下可新建页面目录。<br>_drafts:草稿文章<br>_posts:发布文章<br>themes:主题文件目录<br>_config.yml:全局配置文件,大多数的设置都在这里<br>package.json:应用程序数据,指明hexo的版本等信息,类似于一般软件中的关于按钮<br>
</summary>
</entry>
<entry>
<title>Hello 2017!</title>
<link href="http://kevin-que.github.io/2017/01/03/my-first-blog/"/>
<id>http://kevin-que.github.io/2017/01/03/my-first-blog/</id>
<published>2017-01-03T02:43:35.000Z</published>
<updated>2018-02-20T05:48:29.295Z</updated>
<summary type="html">
<p>Happy new year ! hello 2017! 2017-01-01<br>你好!2017! 一起同行,加油,学习python!</p>
</summary>
<category term="随笔" scheme="http://kevin-que.github.io/tags/%E9%9A%8F%E7%AC%94/"/>
</entry>
</feed>