内容模块 内容模块PC标签调用说明 模块名:content 模块提供的可用操作 position操作说明如下: 内容推荐位列表(position): 可用参数: 代码例子: {pc:content action="position" posid="2" order="listorder DESC" ...
分类:
Web开发 时间:
2017-04-12 16:16:32
收藏:
0 评论:
0 赞:
0 阅读:
290
Python两个内置函数——locals 和globals 这两个函数主要提供,基于字典的访问局部和全局变量的方式。在理解这两个函数时,首先来理解一下python中的名字空间概念。Python使用叫做名字空间的东西来记录变量的轨迹。名字空间只是一个字典,它的键字就是变量名,字典的值就是那些变量的值。 ...
分类:
编程语言 时间:
2017-04-12 16:16:17
收藏:
0 评论:
0 赞:
0 阅读:
125
https://technet.microsoft.com/en-us/windows-server-docs/identity/ad-fs/operations/ad-fs-user-sign-in-customization http://eimagine.com/adfs-3-0-logon- ...
分类:
其他 时间:
2017-04-12 16:16:00
收藏:
0 评论:
0 赞:
0 阅读:
190
1. 安装 sudo apt-get install git 2. 配置 因为Git是分布式版本控制系统,所以,每个机器都必须自报家门:你的名字和Email地址。 $ git config --global user.name Yourname $ git config --global user. ...
分类:
其他 时间:
2017-04-12 16:15:08
收藏:
0 评论:
0 赞:
0 阅读:
693
GBK编码:是指中国的中文字符,其它它包含了简体中文与繁体中文字符,另外还有一种字符“gb2312”,这种字符仅能存储简体中文字符。 UTF-8编码:它是一种全国家通过的一种编码,如果你的网站涉及到多个国家的语言,那么建议你选择UTF-8编码。 GBK和UTF8有什么区别? UTF8编码格式很强大, ...
分类:
其他 时间:
2017-04-12 16:14:52
收藏:
0 评论:
0 赞:
0 阅读:
121
$(function(){ var index = 1; var ul_li = $('.banner_ul li'); var icon_li = $('.icon_ul li'); var img_length = $('.banner_ul li').length;; var _width = ...
分类:
其他 时间:
2017-04-12 16:14:01
收藏:
0 评论:
0 赞:
0 阅读:
160
最近在做swing程序中遇到使用消息提示框的,JOptionPane类其中封装了很多的方法。 很方便的,于是就简单的整理了一下。 1.1 showMessageDialog 显示一个带有OK 按钮的模态对话框。 下面是几个使用showMessageDialog 的例子: Java代码 JOption ...
分类:
其他 时间:
2017-04-12 16:13:26
收藏:
0 评论:
0 赞:
0 阅读:
103
Castle是针对.NET平台的一个非常优秀的开源项目,重点是开源的哦。它在NHibernate的基础上进一步封装,其原理基本与NHibernate相同,但它较好地解决NHibernate的缺陷,从ORM(对象关系映射)到IOC(inversion of control,控制反转)容器,再到web层 ...
分类:
Web开发 时间:
2017-04-12 16:13:13
收藏:
0 评论:
0 赞:
0 阅读:
357
using System; using System.Data; using System.IO; using System.Text; using System.Threading; using System.Xml; using System.Xml.Serialization; using S... ...
分类:
Windows开发 时间:
2017-04-12 16:12:43
收藏:
0 评论:
0 赞:
0 阅读:
182
以前操作xml一般用下面这种方式: 好处是XDocument 能使用linq 这种只方式遇到带名称空间的就坑了,看来参考中的两篇博客,发现以下方法可以操作 上面的方法中也看到了,如果child2是child1的子节点,就必须调用child1的XPathSelectElement方法,这样如果想取一个 ...
分类:
Windows开发 时间:
2017-04-12 16:12:23
收藏:
0 评论:
0 赞:
0 阅读:
264
1.注释 a) --这是一行注释 b) {- 这是一段注释 -} 2.表达式 a) 3 :: Float 标示是一个浮点数3,::起到说明类型的作用 b) sort [3,8,1,4] 是一次函数调用。Haskell中的函数调用不需要加括号,多个参数中间也不用加逗号。 c) Case Foo of ...
分类:
其他 时间:
2017-04-12 16:12:08
收藏:
0 评论:
0 赞:
0 阅读:
571
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.IO.Compression; using System.Linq; using Syste... ...
分类:
Windows开发 时间:
2017-04-12 16:11:44
收藏:
0 评论:
0 赞:
0 阅读:
226
http://www.cnblogs.com/chenweichu/articles/5713994.html 数据结构是什么?它是组织内存中对象或基本类型数值(primtive types)的形式,为了更好地组织和使用这些对象而慢慢发展起来的固有形式,惯用法(idioms),是计算机开发领域用处理 ...
分类:
其他 时间:
2017-04-12 16:11:26
收藏:
0 评论:
0 赞:
0 阅读:
229
转眼又到了架构师考试的日子。11月8号。这次是在东营參加考试。 去年的慘败让我在这次的准备过程中,将复习重点转移到了下午的案例分析和论文上。 整体的感受就是:今年的试题是2009年试题的一次回归。论文的题目更加开放。 详细来说: (1)上午题的分布还是側重系统架构和软件开发技术。当然每次都会出现五六 ...
分类:
其他 时间:
2017-04-12 16:11:08
收藏:
0 评论:
0 赞:
0 阅读:
222
github链接地址:https://github.com/gaopeng527/go_Algorithm/blob/master/sort.go ...
分类:
编程语言 时间:
2017-04-12 16:10:42
收藏:
0 评论:
0 赞:
0 阅读:
212
补充材料: Web相关: https://www.zhihu.com/question/22689579 爬虫: https://www.zhihu.com/question/20899988 http://www-rohan.sdsu.edu/~gawron/python_for_ss/cours ...
分类:
其他 时间:
2017-04-12 16:09:56
收藏:
0 评论:
0 赞:
0 阅读:
340
类似 Rolan 的快速启动小程序。 启动后隐藏,当鼠标移至左上角时,窗口显示,点击项目可运行程序。 GitHub地址: MyRolan 。 1 #if defined(UNICODE) && !defined(_UNICODE) 2 #define _UNICODE 3 #elif defined ...
分类:
其他 时间:
2017-04-12 16:09:33
收藏:
0 评论:
0 赞:
0 阅读:
233
1.配置环境:Centos 7 64位 基础网络版 mysql5.7 2.hosts文件[root@mysql02 log]# cat /etc/hosts127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdom ...
分类:
数据库技术 时间:
2017-04-12 16:09:17
收藏:
0 评论:
0 赞:
0 阅读:
400
hasattr(object, name)判断一个对象里面是否有name属性或者name方法,返回BOOL值,有name特性返回True, 否则返回False。需要注意的是name要用括号括起来 getattr(object, name[,default])获取对象object的属性或者方法,如果存 ...
分类:
编程语言 时间:
2017-04-12 16:08:56
收藏:
0 评论:
0 赞:
0 阅读:
165
github链接地址:https://github.com/gaopeng527/go_Algorithm/blob/master/stack.go ...
分类:
编程语言 时间:
2017-04-12 16:08:39
收藏:
0 评论:
0 赞:
0 阅读:
193