Getting Started with Erlang Erlang is a great language that lets you build highly concurrent applications. This tutorial will teach you how to quickly
分类:
其他好文 时间:
2016-02-01 18:21:51
阅读次数:
261
变量赋值: (1) export name=value (2) name=value export name (3) declare -x name=value (4) name=value declare -x name 变量引用:${name}, $name 注意:bash内嵌了许多环境变量(通
分类:
其他好文 时间:
2016-02-01 18:23:11
阅读次数:
168
转自http://www.cnblogs.com/longyg/archive/2012/06/25/2556576.html JSch是Java Secure Channel的缩写。JSch是一个SSH2的纯Java实现。它允许你连接到一个SSH服务器,并且可以使用端口转发,X11转发,文件传输等
分类:
Web程序 时间:
2016-02-01 18:22:31
阅读次数:
283
一、安装(编译)工具: CMake工具 —— 下载地址:https://cmake.org/download/ 例如:cmake-3.4.3-win32-x86.zip 二、OSG编译的相关程序: (1)OSG源代码 —— 下载地址:http://www.openscenegraph.org/ind
分类:
其他好文 时间:
2016-02-01 18:21:16
阅读次数:
200
在某个列表页面跳转到增加新项目页面后需要返回到前一个页面 并且数据最新数据。刚开始是做法是 history.back();方法 返回后页面无法刷新。在新的页面重新访问之前页面的链接可以访问到新加载了新数据的页面,但这样子也会导致页面加载过多占内存。 这个时候可以用sessionStorage来存储临
分类:
Web程序 时间:
2016-02-01 18:22:46
阅读次数:
135
感谢:http://topic.csdn.net/t/20050429/20/3976956.html 感谢:http://yzyanchao.blogbus.com/logs/47796444.html 不过那边是转载自《effective stl》。 std::vector很方便,但有时调用的函
分类:
编程语言 时间:
2016-02-01 18:23:00
阅读次数:
192
在Asp.net Mvc 2中由于对数据的保护,默认情况下request为post,所以在前端请求的时候则需要以post方式request action方法: public JsonResult GetPersonInfo() { var person = new { Name = "张三", Ag
分类:
Web程序 时间:
2016-02-01 18:22:55
阅读次数:
154
原文: Single Div Drawings with CSS 译文: 基于单个 div 的 CSS 画图 译者: 前端外刊评论 译注:通读本文,强烈地感受到了技术与艺术的结合。赞作者的这句话:Restricting your available options forces you to re-
分类:
Web程序 时间:
2016-02-01 18:21:43
阅读次数:
188
STPopup 为 iPhone 和 iPad提供了 STPopupController UINavigationController 弹出的风格。 特性: Extend your view controller from UIViewController, build it in your fam
分类:
移动开发 时间:
2016-02-01 18:20:00
阅读次数:
238
1.DispatcherServlet:前端控制器,用于接收请求。(即spring mvc是基于servlet实现的所以要注意多线程问题) 2.HandlerMapping接口:DefaultAnnotationHandlerMapping :HandlerMapping接口的实现, 用于处理请求的
分类:
编程语言 时间:
2016-02-01 18:19:58
阅读次数:
259
在设置ssh秘钥时,为安全起见我们可以设置一个秘钥的密码,同时又带了麻烦 例如: [qxy@rh1 .ssh]$ ssh-keygen -t rsa Generating public/private rsa key pair. Enter file in which to save the key
分类:
其他好文 时间:
2016-02-01 18:20:37
阅读次数:
139
iconv_shell.sh #!/bin/bash if ["$#" != "2"];then echo "Usage: `basename $0` dir filter" exit fi dir=$1 filter=$2 echo $1 for file in `find $dir -name
分类:
其他好文 时间:
2016-02-01 18:20:44
阅读次数:
174
http://www.cnblogs.com/bruce_zhao/p/3809886.html Oracle Ebs R12 SLA与GL关系变化 SLA概念:SLA(Subledger Accounting) 子帐是子分类帐会计的简称,字面上的含义就是子分类帐会计分录 SLA&GL关系: R12
分类:
数据库 时间:
2016-02-01 18:20:12
阅读次数:
303
一个很好的关于java对象和json对象互转的例子: 1 package com.kenneth.test; 2 3 import java.util.ArrayList; 4 import java.util.Collection; 5 import java.util.Iterator; 6 i
分类:
编程语言 时间:
2016-02-01 18:19:05
阅读次数:
251
77. Combinations 题目 分析:求给定数字n,k的组合数,方法是采用深度搜索算法,代码如下(copy网上代码) 1 class Solution { 2 public: 3 void dfs77(vector<vector<int > > &ans, vector<int> suban
分类:
其他好文 时间:
2016-02-01 18:20:06
阅读次数:
146
excel是我们工作及生活当中不可或缺的东西,好吧,我是一个游戏程序员,数值哥哥肯定会给我些表格的。回归正题,为什么需要做这个封装? 为什么需要这个项目,因为我们需要使用程序进行自动化操作 VBA我们不熟悉,而且我必须使用我最熟悉的lua或者是python,由于lua的运行环境更简单,直接文件拷贝一
分类:
其他好文 时间:
2016-02-01 18:17:36
阅读次数:
205