删除 Storyboard首先删除项目下的Main.storyboard 文件,然后打开Info.plist, 删除SceneDelegate的StoryboardNameiOS 13之前,修改文件为AppDelegate.m: - (BOOL)application:(UIApplication *)application……继续阅读 » Alan 4年前 (2020-07-06) 3993浏览 0评论0个赞
maxConnections最大连接数1、ulimit -a/etc/security/limits.conf 修改最大连接数 * soft nofiles 65535* hard nofiles 65535……继续阅读 » Alan 6年前 (2018-11-07) 3828浏览 0评论0个赞
1. AttributeError: ‘DataFrame’ object has no attribute ‘sort’以上报错是由于Pandas升级放弃使用sort而改用sort_values和sort_index所致,可进行相应的更改,如 print(df.sort(col……继续阅读 » Alan 7年前 (2017-07-12) 7108浏览 0评论1个赞
安装应用项目:https://github.com/top-think/think 核心框架:https://github.com/top-think/framework 文档:https://www.kancloud.cn/manual/thinkphp5 以上可选择指定版本下载,然后将应用项目解压到网站根目录,进行重命名,如alan,将核心框架拷贝al……继续阅读 » Alan 8年前 (2017-06-03) 8357浏览 0评论0个赞
Yii的MVC基础知识basic版非常清晰,分别位于controllers, models, views文件夹下controllers下的文件通常心Controller结尾,如IndexController.php, 需访问通常在类中添加actionXxx方法,如需通过?r=index/index方法,在IndexController类中添加action……继续阅读 » Alan 8年前 (2017-05-04) 6068浏览 0评论0个赞
本文将通过CentOS 7来学习Linux的以下常用知识:Linux网络设置SSH常用配置和使用方法Linux常用服务Crontab定时任务NTP时间同步Logrotate日志切割Supervisor进程管理Linux常用命令Linux中的防火墙配置方法使用Apache配置Web服务器使用Nginx配置Web服务器MySQL的……继续阅读 » Alan 8年前 (2017-01-09) 15681浏览 0评论0个赞
安装 PHP # Apache#apt -y install software-properties-common apt-transport-https lsb-release ca-certificates#add-apt-repository ppa:ondrej/php #apt updatesudo……继续阅读 » Alan 8年前 (2016-12-24) 6328浏览 0评论0个赞
网线顺序1-白橙、2-橙、3-白绿、4-蓝、5-白蓝、6-绿、7-白棕、8-棕……继续阅读 » Alan 8年前 (2016-10-25) 5799浏览 0评论0个赞
Use only numbers(not variables) fro size() command这一报错出现在Proccessing 3中,原因是在size()中使用了变量来指定宽度和高度。解决方法是使用另外一个命令surface.setSize()来代替size(),再次执行(Ctrl+R或Cmd+R)报错就会消失待解决问题使用Minim库在……继续阅读 » Alan 8年前 (2016-08-20) 7479浏览 0评论3个赞
Python 创建虚拟环境方法一venv: python3 -m venv myenv 1 python3 -m venv myenv 方法二 pipenv: p……继续阅读 » Alan 9年前 (2016-05-17) 6500浏览 0评论0个赞