------- GIT安装 ------- 1.linux安装git sudo apt-get install git?? 老一点: sudo apt-get install git-core 2.maxOS安装git brew install git 3.windows安装git msysgit是Windows版的Git,从http://msysgi...
分类:
Web开发 时间:
2015-09-07 18:09:17
收藏:
0 评论:
0 赞:
0 阅读:
345
在form标签内加入:? ? @Html.AntiForgeryToken() 在form action 的方法加上? ? [ValidateAntiForgeryToken]
分类:
Web开发 时间:
2015-09-07 18:09:07
收藏:
0 评论:
0 赞:
0 阅读:
279
class?class_weixin_adv
{
????var?$appid?=?"";
????var?$appsecret?=?"";
????//构造函数,获取Access?Token
????public?function?__construct($appid?=?NULL,?$appsecret?=?N...
分类:
微信 时间:
2015-09-07 18:08:57
收藏:
0 评论:
0 赞:
0 阅读:
500
冒泡排序 比较相邻元素,如果第一个比第二个大,那么交换他们的位置;每对相邻元素进行依次比较,最后的元素应该是最大的。 int[]?array?=?{10,13,12,8,11,6};
//数组从小到大排序
for?(int?i?=?0;?i?<...
分类:
编程语言 时间:
2015-09-07 18:08:47
收藏:
0 评论:
0 赞:
0 阅读:
241
1 ??网络编程书籍 Books by Richard Stevens (reverse chronological) UNIX Network Programming, Volume 2, Second Edition: Interprocess Communications, Prentice Hall, 1999. ? UNIX Network Programming...
分类:
其他 时间:
2015-09-07 18:08:37
收藏:
0 评论:
0 赞:
0 阅读:
197
最近做一个项目需要适配到不同的平板和手持设备上,在屏幕适配上遇到了一些问题,查了Android官方文档了解了一些技巧的,现在总结如下: 先解释几个概念: 1、dpi(dot per inch),即每英寸像素,所有的android设...
分类:
移动平台 时间:
2015-09-07 18:08:27
收藏:
0 评论:
0 赞:
0 阅读:
255
在使用Twitter几年的时间里面,经常思考微博如何更好的实现,恰好最近几个月也参与了相关工作,大部分都是工程实践,总结实践会促生更具实际价值的理论。因此在QCon Beijing 2010这次演讲参考了不少网友的意见后选...
分类:
其他 时间:
2015-09-07 18:08:07
收藏:
0 评论:
0 赞:
0 阅读:
253
Error[Pe020]: identifier "namespace" is undefined F:\github\NUCLEOF411RE\Source\api\DigitalIn.h 23? ? ? ?? 提示没定义"namespace" ? ? ? IAR工程默认配置编译语言为Auto 如图: ? ? ?? ? ? ...
分类:
其他 时间:
2015-09-07 18:07:37
收藏:
0 评论:
0 赞:
0 阅读:
400
有两种方式: ? ?1. command & : 后台运行,你关掉终端会停止运行 ? ?2. nohup command & : 后台运行,你关掉终端也会继续运行
分类:
系统服务 时间:
2015-09-07 18:07:27
收藏:
0 评论:
0 赞:
0 阅读:
253
1、每个函数都包含两个非继承而来的方法:apply()和call()。 applyhe call起源于Function.property.所以每个对象都有apply和call。 2、他们的用途相同,都是在特定的作用域中调用函数。? 3、接收参数方面不同,a...
分类:
移动平台 时间:
2015-09-07 18:07:07
收藏:
0 评论:
0 赞:
0 阅读:
250
// //? TimeTransform.m //? TimeFormatDemo // //? Created by 码修者 on 15/8/16. //? Copyright (c) 2015年 码修者. All rights reserved. // #import "TimeTransform.h" #define SET_TIME_NORMAL_FORMATT...
分类:
移动平台 时间:
2015-09-07 18:06:57
收藏:
0 评论:
0 赞:
0 阅读:
337
history.get方法中的 history 参数默认值为 3(int类型): 参数history的数值需要根据 zabbix 设定的去设置,否则返回的数据会是空列表: value?=?zapi.history.get({"output":"extend","history":3,"itemids"...
分类:
Windows开发 时间:
2015-09-07 18:06:47
收藏:
0 评论:
0 赞:
0 阅读:
1263
<!DOCTYPE?html>
<html>
<head>
<meta?charset="utf-8">
<meta?name="author"?content="http://www.webkfa.com/"?/>
<title>web开发-webkfa.com</title>
<style?type="text/css">
*{
margin:0;padding:0;
-...
分类:
其他 时间:
2015-09-07 18:06:37
收藏:
0 评论:
0 赞:
0 阅读:
245
Git 常用命令整理 取得Git仓库 初始化一个版本仓库 git init Clone远程版本库 git clone git@xbc.me:wordpress.git 添加远程版本库origin,语法为 git remote add [shortname] [url] git remote add origin git@x...
分类:
其他 时间:
2015-09-07 18:06:27
收藏:
0 评论:
0 赞:
0 阅读:
236
参照:http://www.tairan.com/archives/2245 命令行build pods项目的命令如下: xcrun xcodebuild -workspace itemplate.xcworkspace -scheme itemplate build 命令行运行test用例的命令如下(使用光xcodebuild ...
分类:
移动平台 时间:
2015-09-07 18:06:17
收藏:
0 评论:
0 赞:
0 阅读:
282
选择器权重值的计算 A:如果规则是写在标签的style属性中(内联样式),则A=1,否则,A=0.?对于内联样式,由于没有选择器,所以 B、C、D 的值都为 0,即 A=1, B=0, C=0, D=0(简写为 1,0,0,0,下同)。 B:计算该...
分类:
Web开发 时间:
2015-09-07 18:06:07
收藏:
0 评论:
0 赞:
0 阅读:
359
activiz本身自带的user guide 比较简单,所以我按着vtk的user guide来慢慢学。从简单例子入手去学习VTK。当然我之前已经看过很多VTK相关的东西了,但是没有自己去写去总结,导致我一段时间不用就忘记了。所以这次...
分类:
其他 时间:
2015-09-07 18:05:57
收藏:
0 评论:
0 赞:
0 阅读:
299
spark 恢复机制使用的监控 https://mmonit.com/monit/ Up and running in 15 minutes! With all features needed for system monitoring and error recovery. It‘s like having a watchdog with a toolbox on you...
分类:
其他 时间:
2015-09-07 18:05:47
收藏:
0 评论:
0 赞:
0 阅读:
285
原文作者:zhangzhaoaaa http://zhangzhaoaaa.iteye.com/blog/2185376? AngularJS中的数据绑定 ? ?? AngularJS创建实时模板来代替视图,而不是将数据合并进模板之后更新DOM。任何一个独立视图组件中的值都是动...
分类:
Web开发 时间:
2015-09-07 18:05:37
收藏:
0 评论:
0 赞:
0 阅读:
533
# 前端工程——基础篇 > 喂喂喂,那个切图的,把页面写好就发给研发工程师套模板吧。 你好,切图仔。 不知道你的团队如何定义前端开发,据我所知,时至今日仍然有很多团队会把前端开发归类为产品或者设计岗位,虽...
分类:
其他 时间:
2015-09-07 18:05:27
收藏:
0 评论:
0 赞:
0 阅读:
238