码迷,mamicode.com
首页 >  
搜索关键字:basic    ( 4666个结果
git remote branch操作
将本地branch basic提交到remote的basic上:git push origin basic:basic将remote的 basic branch更新到本地的 basic branch上:git fetchgit merge basic(尽量不要用 git pull,会隐藏很多细节)
分类:其他好文   时间:2015-07-27 12:25:03    阅读次数:99
32位plsql连接64位oracle解决办法
1.下载instantclient-basic-win32;2.解压,放到本机数据库oracle安装目录的product文件夹下,比如本人的目录:3.配置环境变量:在系统变量中增加这几个系统变量:ORACLE_HOME=E:\app\loach\product\instantclient_11_2T...
分类:数据库   时间:2015-07-26 13:54:57    阅读次数:163
C语言教程:第二讲-C语言的发展历史
上一讲:计算机语言概述 1967年,英国剑桥大学的Martin Richards对CPL(Combined Programming Language)语言进行了简化,于是产生了BCPL(Basic Combined Programming Language)语言。 1970年,美国贝尔实验室的Ken...
分类:编程语言   时间:2015-07-25 21:16:44    阅读次数:209
1057. Stack (30) - 树状数组
题目如下: Stack is one of the most fundamental data structures, which is based on the principle of Last In First Out (LIFO). The basic operations include Push (inserting an element onto the top pos...
分类:编程语言   时间:2015-07-25 12:20:26    阅读次数:115
ISLR chapter 2, R 基础
2.3.1 Basic Commandscreate an arrayx = c(1,6,2)create a matrix>x=matrix (data=c(1,2,3,4) , nrow=2, ncol =2)> x=matrix (c(1,2,3,4) ,2,2)> x[1,2][1] 3> ...
分类:其他好文   时间:2015-07-25 07:08:35    阅读次数:226
Project Euler:Problem 89 Roman numerals
For a number written in Roman numerals to be considered valid there are basic rules which must be followed. Even though the rules allow some numbers to be expressed in more than one way there is alw...
分类:其他好文   时间:2015-07-24 22:42:34    阅读次数:290
Project Euler:Problem 89 Roman numerals
For a number written in Roman numerals to be considered valid there are basic rules which must be followed. Even though the rules allow some numbers to be expressed in more than one way there is alw...
分类:其他好文   时间:2015-07-24 18:29:36    阅读次数:128
surpersocket客户端
大家在学习surpersocket时候,都是拿telnet测试的吧,是不是没有 客户端 而感到 烦恼。我么,就抽了一点时间 写了个简单的客户端代码。针对QuickStart的 1-Basic 第一部分那 几个 服务器demo客户端也是c#写的,然后没啥大功能,就是 配合 服务器 粘包的方式,粘包拆包...
分类:其他好文   时间:2015-07-23 21:29:17    阅读次数:101
十五天精通WCF——第十三天 用WCF来玩Rest
原文:十五天精通WCF——第十三天 用WCF来玩Rest 在我们玩wcf的时候,都会潜意识的觉得wcf就是通过soap协议交换消息的,并且可以在basic,tcp,msmq等等绑定中任意切换, 牛逼的一塌糊涂,但是呢,如果说哪一天wcf不再使用soap协议,而是采用json格式的字符串,是不是有一点...
分类:其他好文   时间:2015-07-23 15:22:30    阅读次数:101
Basic Calculator II
Implement a basic calculator to evaluate a simple expression string.The expression string contains onlynon-negativeintegers,+,-,*,/operators and empty...
分类:其他好文   时间:2015-07-23 13:43:59    阅读次数:86
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!