码迷,mamicode.com
首页 > 2016年01月28日 > 全部分享
Nancyfx跨平台开发总结(一)简介
Nancyfx是一个开源的轻量级Web框架,同时兼容.Net Framework和Mono,用Nancyfx可以很容易的开发出跨平台的Web应用程序. 以下是在开发中所用到的工具和框架 Nancyfx: http://nancyfx.org/ Autofac:开源的IOC容器 Jexus:中国人写的
分类:其他好文   时间:2016-01-28 13:46:56    阅读次数:112
(转)一共81个,开源大数据处理工具汇总
[思路网注] 本文一共分为上下两部分。我们将针对大数据开源工具不同的用处来进行分类,并且附上了官网和部分下载链接,希望能给做大数据的朋友做个参考。 本文一共分为上下两部分。我们将针对大数据开源工具不同的用处来进行分类,并且附上了官网和部分下载链接,希望能给做大数据的朋友做个参考。下面是第一部分。 查
分类:其他好文   时间:2016-01-28 13:43:56    阅读次数:960
find 命令
查找目录:find /(查找范围) -name '查找关键字' -type d查找文件:find /(查找范围) -name 查找关键字 -print 如果需要更进一步的了解,可以参看Linux的命令详解。 这里摘抄如下: ·find path -option [ -print ] [ -exec
分类:其他好文   时间:2016-01-28 13:46:06    阅读次数:180
树状数组模板
struct Binary_Index_tree { long long a[N]; void init() { memset(a,0,sizeof(a)); } //位运算 int lowbit(int x) { return x & (-x); } //修改x这个点,并把所有包含x点的所有点都进
分类:编程语言   时间:2016-01-28 13:45:57    阅读次数:133
prototype
在prototype上有一个叫做constructor的属性,Person.prototype.constructor指向Person,当new Person的时候,每个实例会有一个[[prototype]]指向该对象构造函数的prototype,在chrome里面就是__proto__属性可以查看
分类:其他好文   时间:2016-01-28 13:44:48    阅读次数:124
网上图书商城项目学习笔记-013 添加购物车及我的购物车
一、流程分析 1.购物车模块 2.我的购物车分析 3.添加条目到购物车 二、代码 1.view层 (1)top.jsp 1 <a href="<c:url value='/CartItemServlet?method=myCart'/>" target="body">我的购物车</a> (2)des
分类:其他好文   时间:2016-01-28 13:44:32    阅读次数:439
[LeetCode] Patching Array 补丁数组
Given a sorted positive integer array nums and an integer n, add/patch elements to the array such that any number in range [1, n] inclusive can be for
分类:编程语言   时间:2016-01-28 13:45:05    阅读次数:213
14:Flip Game
#include<iostream> #include<string> using namespace std; int a[5][5];int b[5][5]; #define rep(i,j,k) for(int i=j;i<=k;i++) int n=4; string s[20]; void
分类:其他好文   时间:2016-01-28 13:44:45    阅读次数:116
辗转相除法
求最大公约数,我们想想有什么方法可以求呢? 首先我先来说一下最弱智的算法: 就是从1开始试,试来试去的就搞出来了…… 代码如下: 1 #include<iostream> 2 using namespace std; 3 int main() 4 { 5 int m,n,j; 6 cin>>m>>n
分类:其他好文   时间:2016-01-28 13:41:46    阅读次数:146
对于stackoverflow的中文翻译的相关问题
我们非常多朋友都给我留言说。希望我翻译一下stackoverflow的问题以及答案,首先我也非常愿意为大家翻译,在能够帮助大家的同一时候,对我本人的技能的提升有优点;可是工作量实在太大,所以我不可能翻译全部的文章,尽力吧
分类:其他好文   时间:2016-01-28 13:43:05    阅读次数:151
[记录]OSX开启第三方硬盘TRIM
开启: 1 #禁用 rootless: 2 sudo nvram boot-args=rootless=0 3 4 #开启 TRIM 5 sudo trimforce enable 关闭: 1 #重启开启 rootless: 2 sudo nvram -d boot-args
分类:其他好文   时间:2016-01-28 13:41:57    阅读次数:114
Codeforces #340 div2
A: #include<iostream> using namespace std; int main() { int n; cin>>n; cout<<(n-1)/5+1; } B: #include<iostream> using namespace std; int n; int pos[11
分类:其他好文   时间:2016-01-28 13:43:48    阅读次数:166
Excel破解密码代码
Option ExplicitPublic Sub AllInternalPasswords()' Breaks worksheet and workbook structure passwords. Bob McCormick' probably originator of base code a
分类:其他好文   时间:2016-01-28 13:43:28    阅读次数:215
T-SQL not in 遇到 null 暗含的陷阱
下面有两个T-SQL,乍看之下以为是等效的,实际却不是这样 SELECT orderid1 , LocalCost , supplyGoodsName , buy...
分类:数据库   时间:2016-01-28 12:35:27    阅读次数:189
Opencv 图像读取与保存问题
本文仅对 Opencv图像读取与保存进行阐述,重在探讨图像读取与保存过程中应注意的细节问题。...
分类:其他好文   时间:2016-01-28 12:34:31    阅读次数:331
02:Integer Inquiry
#include<iostream> #include<string> using namespace std; int sum[201]; string s; int main() { while(cin>>s&&!(s.length()==1&&s[0]=='0')) { int x=s.len
分类:其他好文   时间:2016-01-28 12:34:45    阅读次数:131
04:判断闰年
#include<iostream> using namespace std; int a; int main() { cin>>a; if((a%100!=0&&a%4==0)||(a%400==0)) cout<<"Y"; else cout<<"N"; }
分类:其他好文   时间:2016-01-28 12:33:09    阅读次数:146
1073条   上一页 1 ... 37 38 39 40 41 42 43 ... 64 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!