Nginx是一款轻量级的Web server/反向代理server及电子邮件(IMAP/POP3)代理server。并在一个BSD-like 协议下发行。由俄罗斯的程序设计师Igor Sysoev所开发。供俄国大型的入口站点及搜索引擎Rambler(俄文:Рамблер)使用。其特点是占有内存少,....
分类:
Web开发 时间:
2016-01-22 22:09:24
收藏:
0 评论:
0 赞:
0 阅读:
235
1. 安装 git# sudo apt-get update# sudo apt-get install git2. 配置# git config --global user.name "Your Name" # git config --global user.email "youremail@d...
分类:
系统服务 时间:
2016-01-22 22:09:14
收藏:
0 评论:
0 赞:
0 阅读:
131
官方第一条提示:所有的使用技巧都可以通过Help→Tips of the Day查看.下面摘抄一些比较有用的技巧:1.Esc把活动窗口从工具窗口指向编辑窗口.F12把编辑窗口指向上一次活动的工具窗口.如果是用Shift+Esc不仅仅把焦点指向编辑窗口,还会关闭当前活动的工具窗口2.if.else,t...
分类:
其他 时间:
2016-01-22 22:09:01
收藏:
0 评论:
0 赞:
0 阅读:
153
本文是转载develop work上的一篇文章,看着不错,就转了 ——原文地址多线程和并发性并不是什么新内容,但是 Java 语言设计中的创新之一就是,它是第一个直接把跨平台线程模型和正规的内存模型集成到语言中的主流语言。核心类库包含一个Thread类,可以用它来构建、启动和操纵线程,Java 语言...
分类:
编程语言 时间:
2016-01-22 22:08:49
收藏:
0 评论:
0 赞:
0 阅读:
211
进程清理atexit()
分类:
系统服务 时间:
2016-01-22 22:08:38
收藏:
0 评论:
0 赞:
0 阅读:
352
#include #include DeclareSimpleCommand( hello, "Autodesk", "2013");MStatus hello::doIt( const MArgList& args ){ cout #include #include #include #in...
分类:
Windows开发 时间:
2016-01-22 22:08:28
收藏:
0 评论:
0 赞:
0 阅读:
288
Spring容器,最基本的接口就是BeanFactory 负责创建,配置,管理bean 它有一个子接口ApplicationContext并将功能扩展。 理论上bean装配可以从任何资源获得,包括属性文件,关系数据库等,但xml是最常用的XmlBeanFactory,ClassPathXmlApp....
分类:
其他 时间:
2016-01-22 22:08:06
收藏:
0 评论:
0 赞:
0 阅读:
186
计算几何+最短路枚举线段是否相交建图,然后跑最短路#include#include#include#include#include#includeusing namespace std;const int maxn=1000+10;const double eps=1e-8;int n;int to...
分类:
其他 时间:
2016-01-22 22:07:54
收藏:
0 评论:
0 赞:
0 阅读:
147
1:移位运算符#includeint main(){ printf("%d ",18>>1); // 移位运算符 也就是 乘以2^? 后面的 是 进位 的 位数. printf("%d ",18<<1); // 除以2...
分类:
其他 时间:
2016-01-22 22:07:43
收藏:
0 评论:
0 赞:
0 阅读:
169
题目:Given a linked list, swap every two adjacent nodes and return its head.For example,Given1->2->3->4, you should return the list as2->1->4->3.Your al...
分类:
其他 时间:
2016-01-22 22:07:32
收藏:
0 评论:
0 赞:
0 阅读:
109
1. 把 excel 另存为 .csv 格式2. 用 Notepad 打开 .csv 文件, 第一行就是全部的字段3. 创建表结构create table yu_rt_01 asselect Transaction_Id,Last_Update_Date,Last_Updated_By,Creati...
分类:
数据库技术 时间:
2016-01-22 22:07:21
收藏:
0 评论:
0 赞:
0 阅读:
200
Given two integers representing the numerator and denominator of a fraction, return the fraction in string format.If the fractional part is repeating,...
分类:
其他 时间:
2016-01-22 22:07:11
收藏:
0 评论:
0 赞:
0 阅读:
178
插件介绍首先我们来看插件的功能演示(效果):插件准备好后。前台只需编写html:然后在javascript中渲染插件(代码使用jQuery写法):$(".deptName").ztreeDeptSelect();插件即渲染完成。此插件已发布至github,源码地址:https://github.co...
分类:
Web开发 时间:
2016-01-22 22:06:59
收藏:
0 评论:
0 赞:
0 阅读:
537
todo案例可以到这个地址下载https://github.com/jashkenas/backbone添加数据后todo案例不涉及Router,仅有Model、Collection、View的应用,但这个案例对于这三个对象的使用真是已经到了炉火纯青的地步,我看了两天(囧),也只是看懂了表面一层,至...
分类:
其他 时间:
2016-01-22 22:06:37
收藏:
0 评论:
0 赞:
0 阅读:
242
1、怎么实现android虚拟按键(回退和回到主界面)android 中如何模拟back键
分类:
移动平台 时间:
2016-01-22 22:06:05
收藏:
0 评论:
0 赞:
0 阅读:
179
本例用Python操纵MySQL,从指定文件读取数据,并对数据进行处理,处理之后批量插入MySQL。贴上代码:# -*- coding: gbk -*-import reimport MySQLdbimport timedef select(sqlselect): try: co...
分类:
数据库技术 时间:
2016-01-22 22:05:59
收藏:
0 评论:
0 赞:
0 阅读:
198
原作者博客:蒋国宝的IT技术博客今天完成一道题目需要自己用指针创建一个二维的数组,不得不承认指针的确是恶心。 int **result; int row = 4; int col = 5; result = new int*[row]; for (int...
分类:
编程语言 时间:
2016-01-22 22:05:44
收藏:
0 评论:
0 赞:
0 阅读:
188
前提qtchart 里的README文件(注意红色标记处)(本人翻译不行。多多见谅,也可以在评论里纠正( ⊙ o ⊙ ))---------------Qt Charts 5.7.0---------------Qt Charts module provides a set of easy to u...
分类:
其他 时间:
2016-01-22 22:05:32
收藏:
0 评论:
0 赞:
0 阅读:
344
问题描述求1+2+3+...+n的值。输入格式输入包括一个整数n。输出格式输出一行,包括一个整数,表示1+2+3+...+n的值。样例输入4样例输出10解决方法这个题单纯看是一个循环,其实它有一个限制就是nint main(){ int i,n; //长整形定义 long long...
分类:
其他 时间:
2016-01-22 22:05:20
收藏:
0 评论:
0 赞:
0 阅读:
154
//关闭显示器VGA1xrandr --output VGA1 --off//开启显示器VGA1xrandr --output VGA1 --auto//关闭显示器LVDS1xrandr --output LVDS1 --off//开启显示器LVDS1xrandr --output LVDS1 --...
分类:
系统服务 时间:
2016-01-22 22:05:09
收藏:
0 评论:
0 赞:
0 阅读:
778