码迷,mamicode.com
首页 > 2016年03月03日 > 全部分享
开源的部分人脸检测库
(1)openface ---- 深度学习方面(DNN) Free and open source face recognition with deep neural networks. This is a Python and Torch implementation of the CVPR 20
分类:其他好文   时间:2016-03-03 07:59:11    阅读次数:209
lintcode-easy-O(1) Check Power of 2
Using O(1) time to check whether an integer n is a power of 2. For n=4, return true; For n=5, return false; 这道题就是看一下这个int二进制各位上总共是否只有一个1,如果只有一个1则是2的n次
分类:其他好文   时间:2016-03-03 07:57:14    阅读次数:148
lintcode-easy-Number of Islands
Given a boolean 2D matrix, find the number of islands. Given graph: [ [1, 1, 0, 0, 0], [0, 1, 0, 0, 1], [0, 0, 0, 1, 1], [0, 0, 0, 0, 0], [0, 0, 0, 0,
分类:其他好文   时间:2016-03-03 07:57:21    阅读次数:130
Chrome 控制台console的用法
Chrome 控制台console的用法 下面我们来看看console里面具体提供了哪些方法可以供我们平时调试时使用。 目前控制台方法和属性有: ["$$", "$x", "dir", "dirxml", "keys", "values", "profile", "profileEnd", "mon
分类:其他好文   时间:2016-03-03 07:58:34    阅读次数:154
lintcode-easy-Minimum Path Sum
Given a m x n grid filled with non-negative numbers, find a path from top left to bottom right which minimizes the sum of all numbers along its path.
分类:其他好文   时间:2016-03-03 07:56:52    阅读次数:139
js面向对象组件
1.包装对象 <!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>无标题文档</title> <script> /*function Aaa(
分类:Web程序   时间:2016-03-03 07:58:22    阅读次数:204
[LeetCode] Closest Binary Search Tree Value 最近的二分搜索树的值
Given a non-empty binary search tree and a target value, find the value in the BST that is closest to the target. Note: Given target value is a floati
分类:其他好文   时间:2016-03-03 07:56:44    阅读次数:129
iOSbug日志 - tableviewcell复用
试了三种方法 列在下面 新建cell 文件 包括.h .m .xib 然后在xib文件加上一个标签,目的是复用这个cell 一,在要调用的listcell中初始化一个类方法 //+(ListCell *)cellwithTableView:(UITableView *)tablaeView; //+
分类:移动开发   时间:2016-03-03 07:56:47    阅读次数:168
usermod修改用户属性
usermod是更改已经存在的用户的相关属性。-u:自定义UID-g:使其属于已经存在的某个组,-g后可以跟组id,也可以跟组名。-d:自定义用户的家目录-M:不建立家目录-s:自定义shell
分类:其他好文   时间:2016-03-03 06:54:26    阅读次数:138
C++类的构造函数不能为虚函数的原因
C++类的对象构造的时候,首先申请一片内存,然后调用构造函数进行初始化;我们知道,存在虚函数的话,也会存在一个虚函数表vtable,而虚函数表示在什么时候产生的呢,当然是在调用构造函数之后产生的;那么问题来了,如果构造函数为虚函数,此时的内存是一片空白,不存在该虚函..
分类:编程语言   时间:2016-03-03 06:54:26    阅读次数:151
OpenLDAP主配置文件slapd.conf介绍
include/etc/openldap/openldap/schema/core.schema此句是用来将目录所用到的schema文件包含进来;openldap一般默认带有几个schema,在我们的配置文件安装目录下的schema目录中存放。本句中的core.schema是LDAPV3中必须的,它给出了LDAPV3中最基本的attribute和objects的定义。..
分类:其他好文   时间:2016-03-03 06:54:27    阅读次数:284
passwd修改用户密码
语法:passwd[username]创建账户之后,肃然没有面密码,但是该账户依然登陆不了,只有设置完密码才能登录。passwd后面不加username是修改当前用账户的密码。root用户可以修改本身的密码,也可以修改普通帐号的密码。只有root才可以修改其他账户的密码,普通账户只能修改自己的..
分类:其他好文   时间:2016-03-03 06:55:29    阅读次数:144
MySQL主从同步实验
MySQL的主从复制方案,是数据的传输。只不过MySQL无需借助第三方工具,而是其自身同步复制的功能,另外一点,MySQL的主从复制并不是磁盘上直接同步,而是逻辑binlog日志同步到本地再应用执行的过程。一、MySQL主从同步的简要操作过程:1)从库开启两个线程,分别是IO线程和SQL线..
分类:数据库   时间:2016-03-03 06:53:20    阅读次数:307
Myeclipse的环境配置--待修改
环境配置安装一、jar的安装配置二、myeclipse的安装配置激活1.myeclipse的下载,激活文件的下载2.代码字体大小,背景色,窗口配置,菜单配置3.tomcat配置4.在myeclipse中配置maven5.配置M2_HOME三、maven等其他安装1.环境变量2.cmd测试已经安装命令配置jdk默认的设置配置tomcat..
分类:系统相关   时间:2016-03-03 06:54:11    阅读次数:173
Robocopy常用
ROBOCOPYC:\FTPC:\temp\cdw*.txt/R:1/xf*.tmp*.bak/log:C:\temp\updatecase.log/NPdel/Q/Fc:\ftp\*.logrobocopyC:\temp\cdw\LogC:\FTP/s*.log/maxage:1/xf*.tmp*.bak/log:C:\temp\updatedailylog.log/NP
分类:其他好文   时间:2016-03-03 06:53:21    阅读次数:143
快捷键
vi快捷键: zz,zt,zb : 窗口移动到中间,顶部,底部nzz,nzt,nzb:同上; 终端快捷键: Linux下光标移动快捷键Ctrl + f 光标向前(Forward)移动一个字符位置Ctrl + b 光标往回(Backward)移动一个字符位置Alt + f 光标向前(Forward)移
分类:其他好文   时间:2016-03-03 06:52:02    阅读次数:124
浏览器历史,判断是点击了后退按钮还是前进按钮
var history = this.state.history, pages = this.state.pages, l = history.length, hash = window.location.hash, position = "center"; if (l === 0) { histo
分类:其他好文   时间:2016-03-03 06:52:21    阅读次数:262
992条   上一页 1 ... 47 48 49 50 51 52 53 ... 59 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!