17,11,2018
|
dengwen168 |
今天一大早起来,打开自己的博客,却发现竟然无法打开。
因为以前也发生过几次这样的情况,不过多刷几次就好了,可是今天我刷了很多次还是不行。
域名到期了?没有啊,前一阵刚检查过。
空间问题?登陆主机服务商后台,没发现什么异常。
我试着在CMD窗口用"ping www.snailtoday.com"命令,却返回这样的信息:Ping request could not find host www.snailtoday.com. Please check the name and try again.
...
16,11,2018
|
dengwen168 |
一、将来完成时
From now on we will be calling these "features" that we import mudules.
This second file isn't a script but a plain text file we'll be reading in our script.
当你在说到将来的意图,并作一个强调的时候
当你强调将来的一个意图(特殊是消极的)的时候,通常使用进行时态。比如:
I ordered a vindaloo. I won’t be doing that again in a hurry!
Their customer service was ab ...
15,11,2018
|
dengwen168 |
11月14日公布的数据让人大跌眼镜,
转一篇文章吧:
2017年以来各月可比口径的社会融资规模增量如下:
月份
2017年1月
2017年2月
2017年3月
2017年4月
2017年5月
2017年6月
当月增量(亿元)
37095
11046
24001
15604
13136
21131
其中:地方政府专项债券
0
0
1806
2019
1934
1991
存款类金融机构资产支持证券
-129
-10
164
-505
294
113
贷款核销
253
149
846
210
277
...
15,11,2018
|
dengwen168 |
一、根据关键词搜索城市内的POI
其中POI类型和关键字参数选填其一即可,city字段为可选项,若无,则全国范围内搜索。
https://restapi.amap.com/v3/place/text?keywords=北京大学&city=beijing&output=json&offset=20&page=1&key=&extensions=all
如果要搜索国外的城市:
https://restapi.amap.com/v3/place/text?keywords=college&city=new york&output=json&offset=20&page=1&key=&extensions=all
二 ...
11,11,2018
|
dengwen168 |
开发环境
win7 英文版
用Anaconda创建python2.7环境
一、创建虚拟环境
在要储存项目的位置,先建立一个文件夹,然后执行以下命令:
cd college
conda create -n college python=2.7
activate college
二、下载源码,并解压到college文件夹下面。
三、安装相应的包
pip install -r requirements.txt
四、执行
cd webapp
python webapp.py
然后打开浏览器,访问localhost:5000
五、预览效果
...
11,11,2018
|
dengwen168 |
一、运行网站
(一)安装Flask
经查看flask_app/emails.py,发现源站用的是python2.x,所以按刚学的Flask开发方法,无非是在要储存项目的位置,先建立一个文件夹,然后执行以下命令:
cd card
conda create --prefix=H:\web\card\cardvenv python=2.7
activate H:\web\card\cardvenv
pip install Flask==1.0.2
(二)下载源码,并解压到card文件夹下面。
(三)测试
执行“flask run”,报错“ImportE ...
11,11,2018
|
dengwen168 |
今天在给自己的网站改版后,再访问的时候竟然无法访问,出现如下的错误提示:
www.xxx.com is protected by Imunify360
We have noticed an unusual activity from your IP 54.165.90.203 and blocked access to this website.
Please confirm that you are not a robot
换了一个IP地址登陆也不行。
点击下面的“I am not a robot”,还是提示“Cannot contact reCAPTCHA. Check your connection and try ...
10,11,2018
|
dengwen168 |
1.建立模板文件夹
在app文件夹下面,建立一个templates的文件夹,
2.index.html:
<html>
<head>
<title>{{ title }} - Microblog</title>
</head>
<body>
<h1>Hello, {{ user.username }}!</h1>
</body>
</html>
3.修改outes.py
from flask import render_template
from app import app
@ ...
10,11,2018
|
dengwen168 |
开发环境
win7 英文版
Anaconda(python3.6)
一、安装Flask
在你需要保存项目的地方,创建一个microblog文件夹,然后执行以下命令
cd microblog
conda create --prefix=C:\Users\Kevin\microblog\venv python=3.6.5
activate venv
pip install flask
这里要注意,当你关掉cmd窗口,第二次要激活venv虚拟环境的时候,要使用“avtivate C:\Users\Kevin\microblog\venv”命令。
二、第一个Flask App
appl ...
10,11,2018
|
dengwen168 |
从国庆节开始决定开始做英文站开始,域名买了、VPS买了,可是网站一直没有做起来。主要原因有二:
一是这段时间太忙了,从10月份到明年2月份,是我一年中最忙的一段时间,国庆节到现在都有好向个周末在加班。
二是相关经验太少,以前自己虽然做过英文站,不过基本上是做adsense网站的类型的,这一次打算做affiliate的类型,从选择nich、文章来源、PBN的配置,对我来说都是全新的,中间有无数的坑等着我去 ...