- 博客(146)
- 资源 (2)
- 收藏
- 关注
转载 sigaction() 使用
sigaction() 使用 2012-05-22 15:32:02| 分类: linux信号 | 标签:信号 |字号 订阅/** * @file demo7.c * @Synopsis * * int sigaction(int signum,const struct sigaction *act,struct sigaction *oldact)
2013-02-17 13:18:39 1317
转载 VMWare workstation 和 player区别
很多人想尝试一下多种不同的操作系统,例如学习Linux;又或者希望搞一个专门的系统用来测试各种各样东西而不会搞乱搞坏现有的系统。这时,使用虚拟机便是最佳的选择了。提到虚拟机,大家肯定会想到大名鼎鼎的 VMWare Workstation 了吧,它无论在性能还是兼容性上都是目前最好的,可惜它是一款收费软件。而今天介绍的是它的兄弟——VMWare Player!它性能上和VMWare是完全一样
2012-11-20 21:06:16 101237
转载 SVM运用
总体思路:1、提取正负样本hog特征2、投入svm分类器训练,得到model3、由model生成检测子4、利用检测子检测负样本,得到hardexample5、提取hardexample的hog特征并结合第一步中的特征一起投入训练,得到最终检测子。深入研究hog算法原理:一、hog概述Histograms of Oriented Gradients His
2012-11-09 18:53:26 1624
转载 关于进程
./client 22.23.245.157 &这个进程在背景中然后我们要kill掉它我们pgrep ./client 查出pid然后kill -9 `pgrep ./client`
2012-11-02 23:52:32 629
转载 一些Linux小知识
如果我们将0x1234abcd 写入到以 0x0000 开始的内存中,则Little endian 和 Big endian 模式的存放结果如下: 地址 0x0000 0x0001 0x0002 0x0003 big-endian 0x12 0x34 0xab
2012-10-28 10:19:15 714
转载 git一些用法
https://github.com/alada007/alada/commits/mastergit initgit add*git commit -m 'initial import'修改之后git status -s 会得到修改记录git add stats.rbgit commit -m 'add word size
2012-10-27 22:36:52 660
转载 linux 下动态链接库的制作与使用
linux 下动态链接库的制作与使用动态链接库*.so的编译与使用- -动态库*.so在linux下用c和c++编程时经常会碰到,最近在网站找了几篇文章介绍动态库的编译和链接,总算搞懂了这个之前一直不太了解得东东,这里做个笔记,也为其它正为动态库链接库而苦恼的兄弟们提供一点帮助。1、动态库的编译下面通过一个例子来介绍如何生成一个动态库。这里有一个头文件:so_test.h,三个.c
2012-10-24 10:07:26 7291
转载 行人检测(Pedestrian Detection)资源
行人检测(Pedestrian Detection)资源一、论文综述类的文章[1]P.Dollar, C. Wojek,B. Schiele, et al. Pedestrian detection: an evaluation of the state of the art [J].IEEE Transactions on PatternAnalysis andM
2012-10-19 10:57:19 47211
转载 网络基础
那 TCP/IP 是如何运作的呢? 我们就拿妳常常连上的 Yahoo 入口网站来做个说明好了,整个联机的状态可以这样看:应用程序阶段:妳打开浏览器,在浏览器上面输入网址列,按下 [Enter]。此时网址列与相关数据会被浏览器包成一个数据,并向下传给 TCP/IP 的应用层;应用层:由应用层提供的 HTTP 通讯协议,将来自浏览器的数据报起来,并给予一个应用层表头,再向传送
2012-10-18 00:32:07 762
转载 OpenCV实用工具
OpenCV源码:http://www.cnblogs.com/tornadomeet/archive/2012/08/15/2640754.html牛人的博客:http://www.cnblogs.com/tornadomeet/archive/2012/06/24/2560261.html http://blog.csdn.net/yang_xia
2012-10-16 22:02:45 905
转载 OpenCV(1)
http://blog.csdn.net/pp5576155/article/details/7029699#define CV_WRAPHOGDescriptor一共有4个构造函数,前三个有CV_WRAP前缀,表示它们是从DLL里导出的函数,即我们在程序当中可以调用的函数;最后一个没有上述的前缀,所以我们暂时用不到,它其实就是一个拷贝构造函数。CV_WRAP HOGDescrip
2012-10-16 21:52:25 2713
转载 OpenCV running
实验说明: 1.hog描述子在opencv中为HOGDescriptor。 2.可以调用该描述子setSVMDetector方法给用于对hog特征进行分类的svm模型的系数赋值,这里的参数为HOGDescriptor::getDefaultPeopleDetector()时表示采用系统默认的参数,因为这些参数是用很多图片训练而来的。 3.对输入图片进行
2012-10-16 21:00:21 2328
转载 C++中的vector
http://blog.csdn.net/yang_xian521/article/details/7108387在c++中,vector是一个十分有用的容器,下面对这个容器做一下总结。1 基本操作(1)头文件#include.(2)创建vector对象,vector vec;(3)尾部插入数字:vec.push_back(a);(4)使用下标访问元素,cout(5
2012-10-16 20:02:37 723
翻译 ruby on rails sleep
ruby on rails分页的方法There are several pagination methods in Rails; we’ll use one of the simplest and most robust, called will_paginate. To use it, we need to include both the will_paginate gem and boo
2012-10-14 13:35:27 1573
翻译 ruby on rails and so on
当我们只建立了一个rails generate controller session,而没有建立一个model,那么在views部分The main difference between this and the signin form is that we have no Session model, and hence no analogue for the @user variable.
2012-10-12 19:45:26 762
转载 socket
Linux Socket编程(不限Linux)http://www.cnblogs.com/skynet/archive/2010/12/12/1903949.html
2012-10-11 23:53:29 429
翻译 ruby on rails fly
Rails comes equipped with three environments: test, development, and production. The default environment for the Rails console is development:.这就是为什么我会在Mysql 的db中看到如上三个命名的数据库了。>> Rails.env => "d
2012-10-11 00:37:06 646
翻译 ruby on rails go on
The default library for interacting with the database is called Active Record. Active Record comes with a host of methods for creating, saving, and finding data objects, all without having to use the
2012-10-09 01:11:00 968
翻译 ruby on rails 再探
(1)标记一下:这个貌似蛮好的东西,先收着http://twitter.github.com/bootstrap/(2)条件注释判断浏览器 除IE外都可识别 所有的IE可识别 仅IE6可识别 IE6以下版本可识别 IE6以及IE6以上版本可识别 仅IE7可识别 IE7以下版本可识别 IE7以及IE7以上版本可识别 仅IE8可识别 仅IE
2012-10-07 23:43:53 741
翻译 ruby on rails 继续ing
ruby API http://ruby-doc.org/core-1.9.3/rails API http://api.rubyonrails.org/v3.2.0/classes/ActionView/Helpers/AssetTagHelper/StylesheetTagHelpers.html#method-i-stylesheet_link_tag 0 (and everythi
2012-10-06 20:21:52 616
翻译 ruby on rails继续
$ rails generate controller FooBars baz quux $ rails destroy controller FooBars baz quux如果你已经建立了复杂的controller的框架,router中已经设好了怎么办,没关系,上面两个语句完全是相反的,用吧,完全取消哦,亲! rails generate model Foo bar:stri
2012-10-05 20:30:24 1010
翻译 ruby on rails demo建立
流程很普通照着参考资料来 (1)但是rvm new demo,之后新建一个.rvmrv文件,里面默认rvm use ruby-1.9.3-p194@railsyard --create这样的话,就不会出现什么1.8.7的搞来搞去了, (2)最后还ubuntu中Rails Server遇到Could not find a JavaScript runtime问
2012-10-04 22:57:31 2593
翻译 ruby on rails精读(3)
(1)will_paginate 3.0.3will_paginate provides a simple API for performing paginated queries with Active Record, DataMapper and Sequel, and includes helpers for rendering pagination links in Rails, Si
2012-10-03 10:36:21 625
转载 Rendering in Rails
Ruby rails页面跳转代码如下:1.render(:text => string) 2.render(:inline => string, [:type => "rhtml"|"rxml"]) 3.render(:action => action_name) 4.render(:file => path, [:use_full_path => true|fa
2012-10-03 09:28:05 3871
转载 Rails实用工具
HTML在线http://w3schools.com/html/tryit.asp?filename=tryhtml_intro http://www.w3school.com.cn/tags/tag_a.aspEC2 https://console.aws.amazon.com/ec2/home?region=us-east-1#s=
2012-10-03 00:33:26 512
转载 Ruby和YAML div和class Link to
ruby中link to,mail to 之类的:http://api.rubyonrails.org/classes/ActionView/Helpers/UrlHelper.html#method-i-link_to.yml文件类型:YAML Document扩展名为.yml的文件是一个文本文件。Ruby和YAML的联系,甚至比Java与XML的联系还要紧密。Rub
2012-10-02 22:14:10 1007
转载 railsyardcms精读(2)
(1)html 关键字, 属性值描述DTD 标签的 alt 属性" style="color:rgb(144,11,9); background-color:transparent">alttext规定图像的替代文本。STF 标签的 src 属性" style="colo
2012-10-02 15:19:22 655
转载 精读railsyardcms(1)
(1)除了HTML内容之外,经常也有人在代码中加入注释:其中This is a comment会被隐藏,注解中的就是隐藏的意思,仅仅起到说明代码含义或者隐藏部分代码的作用。(2)HTML CLASS 引用库里面声明的样式class="intro">Header 1(3)html rel 属性规定当前文档与被链接文档之间的关系。 实例
2012-10-02 10:14:33 484
转载 ruby基本语法补缺
a = %w( ant bee cat dog elk ) # create an arraya.each { |animal| puts animal } # iterate over the contents5.times { print "*" }3.upto(6) {|i| print i }('a'..'e').each {|char| print
2012-10-01 22:42:46 619
转载 MVC关系流程
http://ruby.railstutorial.org/chapters/a-demo-app.html?version=3.2#sec-planning_the_application1.The browser issues a request for the /users URI.2.Rails routes /users to the index action in the
2012-10-01 20:30:37 525
转载 ruby o rails 实例
Active Record objects don‘t specify their attributes directly, but rather infer them from the table definition with which they‘re linked. Adding, removing, and changing attributes and their type is do
2012-10-01 19:57:20 1370
转载 ruby on rails简介
知名的 Web design 在线杂志 A List apart No.257期少见地刊出 Rails 入门介绍,心血来潮来做翻译,断断续续翻润了好几次,觉得文章看起来没什么,翻起来好长啊。终于再度体会 text.plain 果然是最难写的格式。写投影片,做翻译比写程序还辛苦…orz以下翻译自 Creating More Using Less Effort with Ruby on
2012-10-01 19:28:47 1399
转载 ruby和java
相似点 Ruby与Java一样的地方,... 内存透过垃圾回收(Garbage Collection)机制管理。物件为强型别(Strongly typed)。有 public, private, 与 protected 方法。也有将原始码转成文件的工具(Ruby的叫做RDoc),文件以 rdoc 产生的样子与 javadoc 类似。相异点Ruby与Java不同的地方,...
2012-10-01 19:03:38 642
转载 ruby基本语法(2)
用了半天的命令行,我快受不了了,赶快祭出我的Eclipse。创建一个ruby工程。然后创建一个ruby class。我参考的例子中把类名字叫ri20min.rb,可能是20分钟体验的意思吧。名字无所谓,打开新创建的文件,我们会发现下面这些内容:if __FILE__ == $0end__FILE__是一个“具有魔力”的变量,它代表了当前文件名。$0是用于启动程序的文件名。那么代
2012-10-01 18:59:10 608
转载 学习一下Ruby的基本语法(1)
http://my.oschina.net/jing31/blog/6521感觉挺容易上手的。自己学着敲一便,有一个感性认识。语言是需要实践的学习过程的。我们用irb这种交互式的工具来学习Ruby语言。使用方法很简单,打开command窗口,输入irb,看到下面的提示符就表示成功打开了irb环境。irb(main):001:0>1)来一个世界上最简单的输
2012-10-01 16:44:44 792
转载 Gemfile 依赖包
Bundle介绍:Rails 3中引入Bundle来管理项目中所有gem依赖,该命令只能在一个含有Gemfile的目录下执行,如rails 3项目的根目录。关于Gemfile和Gemfile.lock所有Ruby项目的信赖包都在Gemfile中进行配置,不再像以往那样,通过require来查找。Rails 3中如果需要require某个gem包,必须通过修改Gemfile文件来
2012-10-01 15:43:33 7233
转载 rails中的网页模板
rails中的网页模板 rails 中的模板都放在app/views/layouts/下。模板后缀是rhtml和erb都可以,但以erb为先,如果已有一个erb后缀的模板,则不再找rhtml。 模板留给子页显示的地方用yield来标识,如,这样子也内容都会在这个位置显示。 rails自动是按名称来套的。比如如果模板名字叫application.erb,那r
2012-10-01 15:38:38 1200
转载 ruby基本语法
在ruby中,不管是数字,字符串,还是对象,都看做是对象。并且每一个对象都内置了一系列方法。java的基本类型有它的包装类对象。在ruby中就不会有包装类的概念因为一切都是对象。ruby应该说比java更面向对象使用对象“.”然后跟方法名可以调用这个对象的方法以及ruby的核心方法内置在ruby的核心模块中,可以被任何对象调用(如:puts,gets)puts 相当于java里面的Sy
2012-10-01 13:50:01 610
转载 ruby on rails 一瞥
gem 其实是rubygem 用来管理复杂包文件rake 和make差不多,还有着自己的RakefileRake是怎么来的?很多年以前,当Jim Weirich还在为一个Java项目工作时,他最初的选择也是Makefile,但是很快他意识到:要是能够在Makefile中嵌入Ruby代码,那会是多么的方便呀,于是,Rake就这么产生了。Rake支持任务创建,任务依赖关系追踪,以及文件
2012-10-01 10:05:58 1506
转载 HTML 基础语法
HTML Basic DocumentTitle of document goes hereVisible text goes here...Heading ElementsLargest Heading . . . . . . . . . . . . Smallest HeadingText ElementsThis
2012-10-01 01:08:26 682
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人