会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Aaron.shen
博客园
首页
新随笔
联系
订阅
管理
随笔 - 30
文章 - 0
评论 - 1
阅读 -
5800
2018年3月1日
入学篇运维知识(强记)
摘要: 1 如何看当前Linux系统有几颗物理CPU和每颗CPU的核数? 答: [root@centos6 ~ 10:55 #35]# nproc 4 [root@centos6 ~ 10:55 #35]# cat /proc/cpuinfo|grep -c 'physical id' 4 [root@ce
阅读全文
posted @ 2018-03-01 11:02 Aaron.shen
阅读(213)
评论(0)
推荐(0)
2016年10月28日
day23-Tornado
摘要: 一,安装方法: # pip3 install tornado 二,基本使用: 1、路由系统 a、原生支持restful\ b、二级域名 application.add_handlers("cmdb.oldboy.com",[ (r"/main", CmdbHandler), ]) c、动态 # Au
阅读全文
posted @ 2016-10-28 09:50 Aaron.shen
阅读(157)
评论(0)
推荐(0)
2016年10月11日
python之day21(chouti)
摘要: 1、文件上传 a. Html Form表单提交 b. Ajax提交 原生XMLHttpRequest http://www.cnblogs.com/wupeiqi/articles/5703697.html XmlHttpReqeust() 类 xhr = XmlHttpReqeust() xhr.
阅读全文
posted @ 2016-10-11 10:55 Aaron.shen
阅读(228)
评论(0)
推荐(0)
2016年9月23日
day20-Django3
摘要: 恢复内容开始 1、补充 Form - 验证 - 生成HTML标签 - (select标签的数据:来源于数据) Model: 一对多 # 1,CEO 2,CIO 3,COO class UserType(models.Model): name = models.CharField(max_lenght
阅读全文
posted @ 2016-09-23 10:29 Aaron.shen
阅读(141)
评论(0)
推荐(0)
2016年9月18日
day19-Django2
摘要: 1、Form验证 - 用于做用户提交数据的验证 a. 定义规则(类,**字段名=html中name值,必须一致) b. 数据提交 - 规则 匹配 from django.shortcuts import render,HttpResponse # Create your views here. fr
阅读全文
posted @ 2016-09-18 17:40 Aaron.shen
阅读(134)
评论(0)
推荐(0)
2016年9月5日
day18-Django入门
摘要: 1、路由系统(路由匹配,找对应的可以处理的url) project: django-admin startproject mysite cd mysite python manage.py startapp app01 普通关系: 请求先到url,执行for循环,匹配到就到对应函数进行处理,否则就4
阅读全文
posted @ 2016-09-05 13:31 Aaron.shen
阅读(150)
评论(0)
推荐(0)
2016年8月30日
day17前端补充+Django入门
摘要: 恢复内容开始 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style> .item{ width: 250px; height: 60px; position: relati
阅读全文
posted @ 2016-08-30 16:47 Aaron.shen
阅读(156)
评论(0)
推荐(0)
2016年8月23日
day16前端(Dom+Jquery)
摘要: JavaScirpt 正则,字符串三个方法 (留后再讲)DOM 查找: 直接查找 间接查找 --getElementById --getElementsByTagName <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <
阅读全文
posted @ 2016-08-23 10:09 Aaron.shen
阅读(132)
评论(0)
推荐(0)
2016年8月16日
day15前端(回顾+JavaScript)
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title></title> <style> .inp{ border: 0; border-left: 1px solid #dddddd; border-right:
阅读全文
posted @ 2016-08-16 13:46 Aaron.shen
阅读(128)
评论(0)
推荐(0)
2016年8月8日
day14前端(html,css)
摘要: 前端第一课: HTML - 标签 标签一般分为两种:块级标签 和 行内标签(内联标签) h,p,br: id a : id href target div: id input 系列标签: type: text: password: radio: checkbox: file: button: 按钮
阅读全文
posted @ 2016-08-08 09:47 Aaron.shen
阅读(151)
评论(0)
推荐(0)
下一页
公告
昵称:
Aaron.shen
园龄:
9年1个月
粉丝:
1
关注:
8
+加关注
<
2025年7月
>
日
一
二
三
四
五
六
29
30
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
1
2
3
4
5
6
7
8
9
搜索
常用链接
我的随笔
我的评论
我的参与
最新评论
我的标签
随笔档案
2018年3月(1)
2016年10月(2)
2016年9月(3)
2016年8月(5)
2016年7月(7)
2016年6月(5)
2016年5月(7)
阅读排行榜
1. python之day12(线程池,redis,rabbitMQ)(404)
2. python之day3(371)
3. 第一天python作业(325)
4. python之day10(socketserver)(315)
5. redis操作篇(266)
评论排行榜
1. 字符串的试炼(1)
最新评论
1. Re:字符串的试炼
不错
--Tom-Li
点击右上角即可分享