上一页 1 2 3 4 5 6 ··· 8 下一页
  2018年4月10日
摘要: //引入jquery 框架<script src="/style/js/jquery-1.10.2.min.js"></script><script type="text/javascript"> //初始化-1 $(document).ready(function() { }) //或者初始化-2 阅读全文
posted @ 2018-04-10 15:41 fonyer 阅读(125) 评论(0) 推荐(0) 编辑
摘要: <meta http-equiv="refresh" content="{$second};URL={$url}" />//页面定时刷新/跳转<link href="http://zuo.ai.xiao.blog.163.com/blog/index.css" rel="stylesheet" ty 阅读全文
posted @ 2018-04-10 15:40 fonyer 阅读(72) 评论(0) 推荐(0) 编辑
摘要: 查看日志: svn log -v --search "XXX" -l3 #查看XXX提交的svn的所有文件,显示3行。 svn回滚: svn up -r 版本号 查看日志: svn log -v --search "XXX" -l3 #查看XXX提交的svn的所有文件,显示3行。 svn回滚: sv 阅读全文
posted @ 2018-04-10 15:33 fonyer 阅读(114) 评论(0) 推荐(0) 编辑
摘要: #远程强制覆盖本地代码 git fetch --all //只是下载代码到本地,不进行合并操作 git reset --hard origin/master //把HEAD指向最新下载的版本 #基本操作1、git add . #添加所有文件2、git commit -a -m "init" #提交所 阅读全文
posted @ 2018-04-10 15:31 fonyer 阅读(98) 评论(0) 推荐(0) 编辑
  2018年3月26日
摘要: 视频:视频解析:http://www.iav18.com/site/tools/video(支持微博、秒拍、Facebook,YouTube视频解析工具 )编码:站长之家:http://tool.chinaz.com/tools/unixtime.as... 阅读全文
posted @ 2018-03-26 11:29 fonyer 阅读(227) 评论(0) 推荐(0) 编辑
  2018年2月25日
摘要: 将视频编码转换成h264ffmpeg.exe -i input.mp4 -c:v libx264 out.mp4 阅读全文
posted @ 2018-02-25 19:12 fonyer 阅读(119) 评论(0) 推荐(0) 编辑
  2018年2月16日
摘要: 项目简介 爬取趣头条新闻(http://home.qutoutiao.net/pages/home.html),具体内容: 1、列表页(json):标题,简介、封面图、来源、发布时间 2、详情页(html):详细内容和图片目录结构 生成的数据文件-单条... 阅读全文
posted @ 2018-02-16 15:21 fonyer 阅读(802) 评论(0) 推荐(0) 编辑
  2018年2月11日
摘要: 环境:centos6 + python3安装:pip3 install scrapy报错:src/twisted/test/raiser.c:4:20: error: Python.h: No such file or directory src... 阅读全文
posted @ 2018-02-11 04:27 fonyer 阅读(214) 评论(0) 推荐(0) 编辑
  2018年2月5日
摘要: #coding=utf-8 #urllib操作类 import timeimport urllib.requestimport urllib.parsefrom urllib.error import HTTPError, URLErrorim... 阅读全文
posted @ 2018-02-05 01:42 fonyer 阅读(191) 评论(0) 推荐(0) 编辑
  2018年2月2日
摘要: #安装PyMySQL:pip3 install PyMySQL #!/usr/bin/python3 #coding=utf-8 #数据库操作类 from datetime import * import pymysql import... 阅读全文
posted @ 2018-02-02 03:55 fonyer 阅读(276) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 8 下一页