2021-01-16 记录一个maven镜像配置 maven匹配镜像的原理这篇讲的很好,贴了源码。https://www.cnblogs.com/ctxsdhy/p/8482725.html以后我就按下面这么配了,先去阿里云找,找不到的去官方找。 1234567891011121314<mirrors><mirror> <id>aliyunmaven</id> <mirro... 阅读全文…
2021-01-14 hexo+github博客引入indigo主题的几个坑+评论 众所周知,indigo是最好的主题。而且我就知道这一个,所以就用这个了。但是这个好久不更新了,新版本hexo用有坑。报错如下 1Unhandled rejection ReferenceError: F:\blog\themes\indigo\layout\layout.ejs:6 其实报错特别长,但我现在找不到了。。https://github.com/yscoder/hexo-theme... 阅读全文…
2021-01-13 IDEA中Mave Module的Language Level问题 idea maven工程的module的Language Level总是自动变到5, 每次reload项目都要手动改。 可能是某个module的包默认用5编译(参考里这么说的)。上网一搜发现很多人遇到过这个问题。在pom.xml中加入下面这个,好了。 1234<properties> <maven.compiler.source>1.8</mav... 阅读全文…
2021-01-10 二分查找总结 看到一个总结网址,还没来得及看完。https://leetcode-cn.com/problems/search-insert-position/solution/te-bie-hao-yong-de-er-fen-cha-fa-fa-mo-ban-python-/ 牛客剑指offer中一道题,二维数组中的查找leetcode第35题Search Insert Position 文章的... 阅读全文…
2021-01-08 学习规划 现在有的材料剑指offer题库计网操作系统面向对象网课github一个大厂面试常问问题。https://github.com/resumejob/interview-questions 还有一个java大全,这个好像有点太多了。https://github.com/xingshaocheng/architect-awesome 不知道怎么分配时间啊。 阅读全文…
2021-01-06 记录一下2021年1月5号飞机上看的APAS前十道题-有图了 这MD我也不会用啊 先凑合写写吧我发现APAS就是leetcode的顺序啊 这也太神奇了 哈哈 1.two sum在一个数组里找俩数,和是target要我自己做的话肯定是固定左标,然后右标跳,右标跳完左标跳。就是i (0,n),然后j(i,n)。这个复杂度是n方,我还想了一下为啥是n方,想完发现还真是,也不知道算的对不对。然后他给的答案是用map,复杂度是n。为啥一个for里面加一个ma... 阅读全文…
2021-01-06 第一篇文章 2021/01/06 开始写博客 [toc] Heading some boldHeading 1.1 _some italicHeading 1.2 _some italicHeading 1.3 _some italicHeading 1.4 _some italicHeading 1.5 _some italic 阅读全文…