摘要:
VIPKID 目前是K12教育领域最大的一家公司,目前已发展到6w名北美外教,服务于中国50w的小朋友,每天数十万节视频课程在线上进行。 有兴趣加入VIPKID的程序员小伙伴,请发简历到 gloryzheng@126.com 阅读全文
摘要:
公司项目使用了SpringBoot。开发的应用需要自动上传到服务器。虽然目前对热部署还没完全掌握。先使用shell简化一下部署吧。 阅读全文
摘要:
1.单向链表的原地反转 2.消除字符串中成对的括号,必须成对匹配,否则打印error 3.将长度为a的单向链表链接到长度为b的单向链表,算法复杂度是 A. O(blogb) B. O(b) C.O(a*b) D. O(logb) 阅读全文
摘要:
方法1: 新增布尔类型数组,标识存在的整数 方法2:while连续比较 阅读全文
摘要:
为了能在查询时忽略字段大小写,又不想修改数据表的属性配置,就在SQL语句中做了修改。结果在alibaba druid 执行时报错 com.alibaba.druid.sql.parser.ParserException: syntax error, error in :'ame collate 'u 阅读全文
摘要:
https://www.jb51.net/article/61943.htm 阅读全文
摘要:
package com.overlook.weagree.util; import android.app.Activity; import android.content.Context; import android.content.SharedPreferences; import android.support.v7.app.AppCompatActivity; import andr... 阅读全文
摘要:
1.写入字符编码设置 2.调整mintty 字体、主题 阅读全文
摘要:
$ cat .ssh/config #aliyeye Host aliyeye.com.cn HostName aliyeye.com.cn PreferredAuthentications publickey IdentityFile ~/.ssh/aliyeye_com_rsa # gitee Host gitee.com HostName gitee.c... 阅读全文
摘要:
SpringBoot Actuator 提供了检查项目内部信息的一整套API,通常在项目启动时可以看到。 1.引入依赖包 2.配置application.yml 阅读全文