上一页 1 ··· 285 286 287 288 289 290 291 292 293 ··· 295 下一页
摘要: 先贴原文所在个人博客: http://uikoo9.com/ 今天看了一些这个人的文章,还是有一定见解的,比如下面这篇 《如何快速开发出一个高质量的APP——创业谈》 http://uikoo9.com/blog/detail/wonder-app 贴出文章以做记录 另外,其中提到的几个第三方服务资 阅读全文
posted @ 2016-09-25 16:38 blcblc 阅读(323) 评论(0) 推荐(0)
摘要: 今天看到一篇不错的文章: 从Java的角度理解前端框架,nodejs,reactjs,angularjs,requirejs,seajs http://blog.csdn.net/uikoo9/article/details/45999745 (PS:还有另一篇文章也可以看看:http://uiko 阅读全文
posted @ 2016-09-25 16:26 blcblc 阅读(10892) 评论(0) 推荐(0)
摘要: 在按照前面文章中方法搭建Mysql数据库之后,发现其他机器还是不能访问, 参考以下文章对权限进行修改之后,发现本地机器中root不能访问了。 http://www.cnblogs.com/ycsfwhh/archive/2012/08/07/2626597.html 后来使用 select host 阅读全文
posted @ 2016-09-24 23:47 blcblc 阅读(30291) 评论(0) 推荐(0)
摘要: 按照上篇装过Tomcat之后。 本机本来装了IDEA和Maven。 参考以下这篇 https://my.oschina.net/gaussik/blog/385697 《使用IntelliJ IDEA开发SpringMVC网站(一)开发环境》 其中初始化项目的时候非常慢,需要参考以下这篇来进行: h 阅读全文
posted @ 2016-09-24 22:51 blcblc 阅读(708) 评论(0) 推荐(0)
摘要: 1. 官网 http://tomcat.apache.org/ 下载apache包,我下的8.5 注意要下core包的tgz版本,我开始下了full doc. 2. 拷贝解压到 /Library, 然后 sudo chmod 755 /Library/apache-tomcat-8.5.5/bin/ 阅读全文
posted @ 2016-09-24 18:42 blcblc 阅读(310) 评论(0) 推荐(0)
摘要: 1、如果jumbo不存在,先安装jumbo 1、如果jumbo不存在,先安装jumbo 1、如果jumbo不存在,先安装jumbo 参考 http://hetu.baidu.com/api/tool/show?toolId=174: bash -c "$( curl http://jumbo.bai 阅读全文
posted @ 2016-09-24 17:29 blcblc 阅读(1103) 评论(0) 推荐(0)
摘要: https://leetcode.com/problems/remove-k-digits/ // 参考了这里的 // https://discuss.leetcode.com/topic/59327/o-n-solution/3 public class Solution { public String removeKdigits(String num, int k) { ... 阅读全文
posted @ 2016-09-21 04:05 blcblc 阅读(261) 评论(0) 推荐(0)
摘要: https://leetcode.com/problems/frog-jump/ // 受以下网页启发,用递归可行 // https://discuss.leetcode.com/topic/59337/easy-version-java public class Solution { Map mp; private int[] stones; public bool... 阅读全文
posted @ 2016-09-21 03:28 blcblc 阅读(450) 评论(0) 推荐(0)
摘要: https://leetcode.com/problems/nth-digit/ public class Solution { public int findNthDigit(int n) { int k = 9; int b = 1; // 需要加上对b的限制 while (b k*b) { ... 阅读全文
posted @ 2016-09-21 02:11 blcblc 阅读(153) 评论(0) 推荐(0)
摘要: https://leetcode.com/problems/binary-watch/ // 参考 https://discuss.leetcode.com/topic/59374/simple-python-java // 非常棒的方法 public class Solution { public List readBinaryWatch(int num) { Li... 阅读全文
posted @ 2016-09-21 01:49 blcblc 阅读(200) 评论(0) 推荐(0)
上一页 1 ··· 285 286 287 288 289 290 291 292 293 ··· 295 下一页