拽熊 - 拽熊博客 - 第53页
拽熊的头像 - 拽熊博客
徽章-资深玩家 - 拽熊博客徽章-22年人气明星 - 拽熊博客徽章-签到达人 - 拽熊博客9枚徽章超级管理员管理员
日拱一卒,功不唐捐
60个必备!用Python的一些日常高频写法,建议收藏备用! - 拽熊博客

60个必备!用Python的一些日常高频写法,建议收藏备用!

一、 数字 1 求绝对值 绝对值或复数的模 In [1]: abs(-6) Out[1]: 6 2 进制转化 十进制转换为二进制: In [2]: bin(10) Out[2]: '0b1010' 十进制转换为八进制: In [3]: oct(9) Out[3]: '0o11' ...
搭建网站时报错:Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP - 拽熊博客

搭建网站时报错:Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP

问题背景 今天在安装ecshop程序时,报错Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP 问题分析 翻译这个报错的意思如下:弃用...
php 出现Strict Standards: Only variables should be passed by reference in的解决方法 - 拽熊博客

php 出现Strict Standards: Only variables should be passed by reference in的解决方法

问题背景 今天安装ecshop的时候最上面出现了一个错误提示:Strict Standards: Only variables should be passed by reference in F:\www.xxxx.com\cls_template.php on line 418 原因分析 这个...
WampServer修改端口及菜单Localhost - 拽熊博客

WampServer修改端口及菜单Localhost

一、修改Apache端口 1、在界面中选Apache,弹出隐藏菜单选项,打开配置文件httpd.conf; 或者直接在安装目录下:E:\wamp\bin\apache\Apache2.2.21\conf,找到httpd.conf 2、找到 Listen 80...
Jmeter异常:请求参数为中文时要勾选编码! - 拽熊博客

Jmeter异常:请求参数为中文时要勾选编码!

问题背景 今天在用jmeter写接口时,写了一个接口,我配置信息都是正确的,可以请求还是失败了。 原因分析 1.查看结果树,查看我们发送的请求是否正常 2.查看响应信息,这里发现请求的地址有些异...
什么是he和be? - 拽熊博客

什么是he和be?

今天看B站视频评论,居然发现网友们又一个新的词汇: 真是把人骗进去杀的,原本以为这么甜会是he,没想到居然是be​ 这都啥啊,这是~~~ 搜索了一下,才知道: HE:Happy Ending,大团圆结局。比...
git报错 error: failed to push some refs to如何解决 - 拽熊博客

git报错 error: failed to push some refs to如何解决

问题背景 我在gitee新创建了一个代码仓库,然后想把我在本地的项目关联到远程仓库并推送上去。 根本原因 我们在创建仓库的时候,勾选了“使用Reamdme文件初始化这个仓库”这个操作初识了一个REA...
git常用命令 - 拽熊博客

git常用命令

配置信息 为所有本地存储库配置用户信息(主要用来展示是谁提交的) $ git config --global user.name '[name]' # 设置要附加到提交事务的名称 $ git config --global user.email '[email addre...