摘要: 问题描述:使用android studio2.0,每次开机都进行提示可以更新到android studio 2.1,点击update&restart,进行更新后,重启并没有发现有安装新的更新。 机器背景:Ubuntu 16.04 应用条件:android studio 2.0 是lock from 阅读全文
posted @ 2016-04-29 11:26 youyouhuo 阅读(462) 评论(0) 推荐(0) 编辑
摘要: wrong: pkg: please install the Debian package "liboctave-dev" to get the mkoctfile commanderror: called from '__gripe_missing_component__' in file /us 阅读全文
posted @ 2016-04-15 10:52 youyouhuo 阅读(2195) 评论(0) 推荐(0) 编辑
摘要: Java线程池之ScheduledExecutorService 主要方法: public ScheduledFuture<?> schedule(Runnable command,long delay, TimeUnit unit) public <V> ScheduledFuture<V> sc 阅读全文
posted @ 2016-04-05 10:41 youyouhuo 阅读(315) 评论(0) 推荐(0) 编辑
摘要: 主要有四种方式: newFixedThreadPool: 创建拥有固定数量的线程池,用于线程的重用。在任何时候都最多有指定个数的线程在运行。当提交的任务多于指定的数量时,新提交的任务需要进行等待,直到原有任务运行完成。 但是请注意,如果单个线程关闭前的执行过程中出现故障,由于终止,如果需要执行后续任 阅读全文
posted @ 2016-04-04 11:32 youyouhuo 阅读(285) 评论(0) 推荐(0) 编辑
摘要: 首先尝试的是从官网中下载.tar.gz的安装包,然后解压,根据里面的readme,拷贝文件到响应的目录下。发现并不能成功安装。 于是乎,找到了这篇文章: How to Install Pepper Flash in Ubuntu 14.04 http://www.omgubuntu.co.uk/20 阅读全文
posted @ 2016-02-21 16:35 youyouhuo 阅读(271) 评论(0) 推荐(0) 编辑
摘要: 最近在看吴恩达的机器学习课程,当中讲到Logistic regression classifiers 之 One-vs-all Classification,下面是一些个人的总结:1.对于多分类问题,其实就是划出多条的decision boundary,在训练的时候,其实每一次只是选择一个类进行训练... 阅读全文
posted @ 2016-01-26 19:34 youyouhuo 阅读(492) 评论(0) 推荐(0) 编辑
摘要: 我使用的是office2010,win7。原因:C:\Program Files\Common Files\Microsoft Shared\VBA\VBA7 中缺少vbe6ext.olb解决方案:C:\Program Files(x86)\Common Files\Microsoft Sh... 阅读全文
posted @ 2015-12-28 18:29 youyouhuo 阅读(1362) 评论(0) 推荐(0) 编辑
摘要: 题目:Divide Two IntegersDivide two integers without using multiplication, division and mod operator.If it is overflow, return MAX_INT. // 思路:使用位运算,和手动计算... 阅读全文
posted @ 2015-10-02 23:41 youyouhuo 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 最近还一直在刷leetcode,当然,更多时候只是将题解写在自己的电脑上,没有分享出来。偶尔想起来的时候,就写出来。public class Solution { public void nextPermutation(int[] nums) { if(nums==null||nu... 阅读全文
posted @ 2015-09-29 23:09 youyouhuo 阅读(256) 评论(0) 推荐(0) 编辑
摘要: 由于使用的是eclipse中的插件进行maven的使用,所以在.m2/文件目录下是找不到settings.xml的因此,需要手动加入:在maven官网上下一个版本,然后添加localRespository子项,加入你将要放置仓库的位置:在将settings.xml文件拷贝到相应的目录下,然后打开你的... 阅读全文
posted @ 2015-07-23 22:40 youyouhuo 阅读(1239) 评论(0) 推荐(0) 编辑