04 2020 档案

摘要:python 判断是否为空NaN import math math.isnan(val) 或 import pandas as pd pd.isnull(val) math常用于数字,传字符串会报错,pd较为通用 Python获取当前时间及格式化 # 导入time模块 import time # 打 阅读全文
posted @ 2020-04-29 14:09 程序生(Codey) 阅读(134) 评论(0) 推荐(0) 编辑
摘要:1.安装tushare前先安装lxml和pandas(我是win32下python3.4.0) 2.安装lxml,下载地址https://pypi.python.org/pypi/lxml/3.4.2 3.pandas,下载地址https://pypi.python.org/pypi/pandas 阅读全文
posted @ 2020-04-27 14:18 程序生(Codey) 阅读(906) 评论(0) 推荐(0) 编辑
摘要:一、导入jar包 1、点击 File -> Project Structure(快捷键 Ctrl + Alt + Shift + s),点击Project Structure界面左侧的“Modules”如图: 2、在 “Dependencies” 标签界面下,点击右边绿色的 “+”号,选择第一个选项 阅读全文
posted @ 2020-04-22 14:07 程序生(Codey) 阅读(2712) 评论(0) 推荐(1) 编辑
摘要:先安装tomcat:https://www.cnblogs.com/cxscode/p/12750274.html 1.idea添加一个tomcat配置 相关配置 启动可能遇到问题 Error running 'Tomcat 9.0.24': port out of range:-1 idea 部署 阅读全文
posted @ 2020-04-22 10:34 程序生(Codey) 阅读(1566) 评论(0) 推荐(0) 编辑
摘要:地址:https://tomcat.apache.org/download-90.cgi 有zip和installer两种,这里选择用zip下载解压使用,也可以用安装包安装 安装:https://blog.csdn.net/InkingWT/article/details/83744236?dept 阅读全文
posted @ 2020-04-22 10:22 程序生(Codey) 阅读(353) 评论(0) 推荐(0) 编辑
摘要:解决idea控制台乱码 1.IDEA安装目录,将2个idea64.exe.vmoptions、idea.exe.vmoptions文件,追加:-Dfile.encoding=UTF-8 2.打开tomcat配置页面,Edit Configurations。 选择项目部署的tomcat,在配置项VM 阅读全文
posted @ 2020-04-22 10:14 程序生(Codey) 阅读(858) 评论(0) 推荐(0) 编辑
摘要:1.maven命令 package,clean,install,compile命令 1.compile,编译命令,会在你的项目路径下生成一个target目录,在该目录中包含一个classes文件夹,里面全是生成的class文件及字节码文件。 2.package,这个命令会在你的项目路径下一个targ 阅读全文
posted @ 2020-04-22 10:06 程序生(Codey) 阅读(132) 评论(0) 推荐(0) 编辑
摘要:1.Could not get a resource from the pool spring.redis.maxTotal=8 spring.redis.maxIdle=8 spring.redis.minIdle=1 spring.redis.testOnBorrow=true spring.r 阅读全文
posted @ 2020-04-22 10:04 程序生(Codey) 阅读(150) 评论(0) 推荐(0) 编辑
摘要:1.com.alibaba.druid.pool.DruidDataSource : create connection error, url: jdbc:mysql:// 1)未开启远程操作权限 win+R->cmd进入登录自己的mysql: 输入命令:mysql -u root -p ****( 阅读全文
posted @ 2020-04-22 10:01 程序生(Codey) 阅读(230) 评论(0) 推荐(0) 编辑
摘要:海外版:https://github.com/Torann/laravel-geoip 文档:https://lyften.com/projects/laravel-geoip/doc/ composer:https://packagist.org/packages/torann/geoip#1.1 阅读全文
posted @ 2020-04-16 16:52 程序生(Codey) 阅读(531) 评论(0) 推荐(0) 编辑
摘要:cordova+vue Cordova 的环境搭建:https://blog.csdn.net/lucky541788/article/details/89462223 cordova + Vue 开发 APP 上手指南:https://www.jianshu.com/p/2e9bebb73d37 阅读全文
posted @ 2020-04-15 15:58 程序生(Codey) 阅读(348) 评论(0) 推荐(0) 编辑
摘要:php-lumen-fcm: https://github.com/brozot/Laravel-FCM Class 'FCM' not found https://github.com/brozot/Laravel-FCM/issues/46 https://github.com/brozot/L 阅读全文
posted @ 2020-04-14 10:19 程序生(Codey) 阅读(1241) 评论(0) 推荐(0) 编辑
摘要:第一步:给你的Chrome添加JetBrains IDE Support的插件,需要FQ,就是下图的这个。 第二步:我们把项目跑起来,也就是运行命令,我这边是 yarn run start 第三步:打开Webstorm(Phpstorm)的运行窗口,点击Edite Connfigurations 添 阅读全文
posted @ 2020-04-09 18:01 程序生(Codey) 阅读(1287) 评论(0) 推荐(0) 编辑