1.后台phppublicfunctionaddtable(){ $data=$_POST; if(M('yanfa_project')->add($data)){ $this->ajaxReturn("success"); }}
分类:
Web程序 时间:
2014-08-12 18:23:54
阅读次数:
217
注:下面有project网站的大部分都有paper和相应的code。Code一般是C/C++或者Matlab代码。最近一次更新:2013-3-17一、特征提取Feature Extraction:·SIFT [1] [Demo program][SIFT Library] [VLFeat]·PCA-...
分类:
其他好文 时间:
2014-08-12 18:23:14
阅读次数:
439
Eclipse:IBM花了4千万美金来开发这个IDE(Integrated Development Environment)。第一版1.0在2001年11月释出,随后逐渐受到欢迎。Eclipse已经成为开放原始码计划(Open Source Project)大部分的开发扔然掌握在IBM手中,但是有一...
分类:
系统相关 时间:
2014-08-12 18:04:44
阅读次数:
318
#include
#include
#include
using namespace std;
void ComStr(char *str, string &s,int m)
{
if (m == 0)
{
cout<<s<<endl;
return ;
}
if (*str != '\0')
{
s.push_back(*str);
ComStr(str+1,s ...
分类:
其他好文 时间:
2014-08-12 17:14:34
阅读次数:
223
1 /* 2 * Copyright (C) 2008 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you ...
分类:
其他好文 时间:
2014-08-12 16:43:54
阅读次数:
319
阅读一个简单地工程代码,其中一个工程BaseCode是 static lib,另一个工程RunBaseCode使用该lib,但在工程设置的“Linker\Input\AdditionalDependencies” 中并没有添加对该lib的引用,而在“Linker\Command Line”中却发现B...
分类:
其他好文 时间:
2014-08-12 13:22:54
阅读次数:
273
boost 循环缓冲区[cpp]view plaincopy#includeint_tmain(intargc,_TCHAR*argv[]){boost::circular_buffercb(3);//Insertsomeelementsintothebuffer.cb.push_back(1);c...
分类:
其他好文 时间:
2014-08-12 00:35:23
阅读次数:
243
一、引言 (本文转载自:http://blog.csdn.net/longeremmy/article/details/9670619) 使用maven有一些时间了,一直没有好好将pom配置文件每个节点的意义好好了解一番。今天突然想来了解下:pom- project object model 项.....
分类:
编程语言 时间:
2014-08-12 00:33:43
阅读次数:
354
有次在使用eclipse写好Android的代码,代码没有报错。然后想在AVD中运行测试时,总是会弹出错误框,提示信息为:“Your project contains error(s),please fix them before running your application.”不管是重启AVD...
分类:
移动开发 时间:
2014-08-12 00:29:13
阅读次数:
213
To quickly select the currently edited element (class, file, method or field) in any view (Project view, Structure view or other), press Alt+F1 (View ...
分类:
其他好文 时间:
2014-08-11 17:27:22
阅读次数:
297